We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a258a1e commit 12d7cdeCopy full SHA for 12d7cde
cores/esp32/main.cpp
@@ -53,7 +53,9 @@ void loopTask(void *pvParameters) {
53
#if !defined(NO_GLOBAL_INSTANCES) && !defined(NO_GLOBAL_SERIAL)
54
// sets UART0 (default console) RX/TX pins as already configured in boot or as defined in variants/pins_arduino.h
55
Serial0.setPins(gpioNumberToDigitalPin(SOC_RX0), gpioNumberToDigitalPin(SOC_TX0));
56
- vTaskDelay(getArduinoSetupWaitTick());
+ // time in ms that the sketch may wait before starting its execution - default is zero
57
+ // usually done for opening the Serial Monitor and seeing all debug messages
58
+ delay(getArduinoSetupWaitTime_ms());
59
#endif
60
#if ARDUHAL_LOG_LEVEL >= ARDUHAL_LOG_LEVEL_DEBUG
61
printBeforeSetupInfo();
0 commit comments