Since a commit from a few days (sorry, can't pinpoint it down) it stopped logging anything after the bootloader. It seams, the output gets somehow disabled. I fixed it (using arduino as idf component) this way, after the first lines of code I do:
Code: Select all
HardwareSerial loggerRS485_2(1);
loggerRS485_2.begin(115200, SERIAL_8N1, 16, 17);
loggerRS485_2.println("Hello on UART1");
loggerRS485_2.flush();