UART1(RX1, TX1) Port is re-routable to UART1(5, 18); do you recommend it?
Posted: Mon Sep 04, 2023 9:34 am
In the pinout diagram of my 30-pin ESP32 Dev Module, only UART2 Port is free. I need to use UART1 Port. Data sheet shows that the IO lines of this port are associated with physical pin-28/29 (GPIO9/10) of ESP32 MCU). Currently, PPin-28/29 of ESP32 MCU are engaged with flash memory. The following code allows me to connect the IO pins of UART1 Port with GPIO5/18. Does Espressif agree with this relocation and do they support it to use in commercial applications?
- Serial1.begin(115200, SERIAL_8N1, 5, 18);