I need to disable the reception of pulses shorter than 270 µs at the driver level.
This allows to make the following settings:
Code: Select all
rmt_config_t rmt_rx = {
.clk_div = 80,
.rx_config.filter_en = true,
.rx_config.filter_ticks_thresh = 280,
Code: Select all
rmt_receive_config_t receive_config = {
.signal_range_min_ns = 270000,
Is it possible to solve this problem using a new driver?