If I switch to the older style rmtInit() interface, it works...
...the code...
#include "Arduino.h"
#define RMT_RX_PIN GPIO_NUM_10
#define RMT_MEM_RX RMT_MEM_NUM_BLOCKS_2
rmt_data_t my_data[256];
rmt_data_t data[256];
#define RMT_FREQ 10000000 // tick time is 100ns
#define RMT_NUM_EXCHANGED ...
Search found 2 matches
- Sat Jun 14, 2025 5:59 pm
- Forum: ESP32 Arduino
- Topic: ESP32C6 RMT RX help needed
- Replies: 1
- Views: 429
- Wed Jun 11, 2025 2:43 pm
- Forum: ESP32 Arduino
- Topic: ESP32C6 RMT RX help needed
- Replies: 1
- Views: 429
ESP32C6 RMT RX help needed
Hi all - I have an ESP32C6-Devkit-C board and am attempting to get RMT to work within the Arduino IDE. My code compiles clean, and I get no errors during setup() when allocating the RMT RX channel but after setup I don't see the rmt listener allocated in the GPIO matrix. I DO get errors on loop ...