You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Greetings all, this is my first GitHub post so if I'm doing something wrong please advise.
I have used this project as a learning for GitHub repositories, Arduino IDE, ESP32 flashing, have it all working and can't believe the incredible work and dedication that people put into these repositories.
I can't figure out from the code which TXD/RXD (0,1,2,etc.) the program will try to communicate with the Mitsubishi, I find in the code:
#if SOC_UART_NUM > 2 // SPC_UART_NUM evaluates to 3 for my build
#ifndef RX2
#if CONFIG_IDF_TARGET_ESP32
#define RX2 (gpio_num_t)16
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Greetings all, this is my first GitHub post so if I'm doing something wrong please advise.
I have used this project as a learning for GitHub repositories, Arduino IDE, ESP32 flashing, have it all working and can't believe the incredible work and dedication that people put into these repositories.
I can't figure out from the code which TXD/RXD (0,1,2,etc.) the program will try to communicate with the Mitsubishi, I find in the code:
#if SOC_UART_NUM > 2 // SPC_UART_NUM evaluates to 3 for my build
#ifndef RX2
#if CONFIG_IDF_TARGET_ESP32
#define RX2 (gpio_num_t)16
#ifndef TX2
#if CONFIG_IDF_TARGET_ESP32
#define TX2 (gpio_num_t)17
...but GPIO17 is NC on the ESP32-POE board.
I assume it can't be TX0/RX0 because on this board the USB-UART chip uses these.
Does anybody know how to find what the code expects to use?
Beta Was this translation helpful? Give feedback.
All reactions