ESP32 delay required after Serial.begin

ESP32 WROO32 doesn't have native USB, its Serial is a regular UART. So the while() loop terminates immediately and you still need to wait for the OS, etc to finish doing its thing.

1 Like