emerald_electricity_advisor icon indicating copy to clipboard operation
emerald_electricity_advisor copied to clipboard

Possible solution for unreliable serial RX on XIAO ESP32C3

Open digitaltrousers opened this issue 2 years ago • 0 comments

Hi. Just a quick FYI, serial communication between the PC and my XIAO ESP32C3 "locked up" within a few seconds of power-up, until I added the following at the top of the setup() routine of the Arduino sketch:

delay(1500);
Serial.setRxBufferSize (2048);

I tried this after skimming https://github.com/espressif/arduino-esp32/issues/5727. Hope this help someone else.

digitaltrousers avatar Jan 27 '23 02:01 digitaltrousers