static bool check_is_symbol_silence_noise ( fsm_t * p_this ) static Assuming that we are parsing the silence (low level) of a NEC symbol, check if it is noise. ✅ 1. Call function check_is_last_symbol(). If the result is true exit the function immediately returning false. ✅ 2. Call function check_is_symbol_silence() and return the inverse of its result. Parameters p_this Pointer to an fsm_t struct than contains an fsm_rx_nec_t. Returns true false
static bool check_is_symbol_silence_noise ( fsm_t * p_this ) { if(check_is_last_symbol(p_this)) { return false; } else { return !check_is_symbol_silence(p_this); } }