Home
last modified time | relevance | path

Searched refs:RMT_RX_CHANNEL_ENCODING_START (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-3.4.0/components/driver/test/
Dtest_rmt.c21 #define RMT_RX_CHANNEL_ENCODING_START (SOC_RMT_CHANNELS_PER_GROUP-SOC_RMT_TX_CANDIDATES_PER_GROUP) macro
170 channel = RMT_RX_CHANNEL_ENCODING_START;
199 rmt_config_t rx_cfg = RMT_DEFAULT_CONFIG_RX(RMT_DATA_IO, RMT_RX_CHANNEL_ENCODING_START);
200 for (int i = RMT_RX_CHANNEL_ENCODING_START; i < SOC_RMT_CHANNELS_PER_GROUP; i++) {
206 for (int i = RMT_RX_CHANNEL_ENCODING_START; i < SOC_RMT_CHANNELS_PER_GROUP; i++) {
219 rmt_config_t rx_cfg = RMT_DEFAULT_CONFIG_RX(RMT_DATA_IO, RMT_RX_CHANNEL_ENCODING_START);
282 int rx_channel = RMT_RX_CHANNEL_ENCODING_START + 1; in do_nec_tx_rx()
379 int rx_channel = RMT_RX_CHANNEL_ENCODING_START + 1;
438 int rx_channel = RMT_RX_CHANNEL_ENCODING_START + 1;
555 int rx_channel = RMT_RX_CHANNEL_ENCODING_START + 1;
/hal_espressif-3.4.0/components/driver/
Drmt.c52 #define RMT_RX_CHANNEL_ENCODING_START (SOC_RMT_CHANNELS_PER_GROUP-SOC_RMT_TX_CANDIDATES_PER_GROUP) macro
55 #define RMT_IS_RX_CHANNEL(channel) ((channel) >= RMT_RX_CHANNEL_ENCODING_START)
57 #define RMT_DECODE_RX_CHANNEL(encode_chan) ((encode_chan - RMT_RX_CHANNEL_ENCODING_START))
58 #define RMT_ENCODE_RX_CHANNEL(decode_chan) ((decode_chan + RMT_RX_CHANNEL_ENCODING_START))