Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 399 Bytes

File metadata and controls

15 lines (12 loc) · 399 Bytes

Problems with ESP32 C3

When you are not connect with ESP32 C3 with Serial Port but you have any Serial.print statement then it slows down. Here is issue

To solve this:

void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  Serial.setTxTimeoutMs(0);   // <<<====== solves this issue of delay
}