File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
libraries/ESP32/examples/ArduinoWaitTimeBeforeStartingSketch Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -231,9 +231,9 @@ bool shouldPrintChipDebugReport(void);
231231// macro SET_TIME_BEFORE_STARTING_SKETCH_MS(time_ms) can set a time in milliseconds
232232// before the sketch would start its execution. It gives the user time to open the Serial Monitor
233233uint64_t getArduinoSetupWaitTime_ms (void );
234- #define SET_TIME_BEFORE_STARTING_SKETCH_MS (time_ms ) \
235- uint64_t getArduinoSetupWaitTime_ms () { \
236- return (time_ms); \
234+ #define SET_TIME_BEFORE_STARTING_SKETCH_MS (time_ms ) \
235+ uint64_t getArduinoSetupWaitTime_ms () { \
236+ return (time_ms); \
237237 }
238238
239239// allows user to bypass esp_spiram_test()
Original file line number Diff line number Diff line change 55// setup() will be executed only after this time
66SET_TIME_BEFORE_STARTING_SKETCH_MS (5000 );
77
8-
98void setup () {
109 Serial.begin (115200 );
1110 Serial.println (" After 5 seconds... this message will be seen in the Serial Monitor." );
1211}
1312
14- void loop () {
15- }
13+ void loop () {}
You can’t perform that action at this time.
0 commit comments