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);
231
231
// macro SET_TIME_BEFORE_STARTING_SKETCH_MS(time_ms) can set a time in milliseconds
232
232
// before the sketch would start its execution. It gives the user time to open the Serial Monitor
233
233
uint64_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); \
237
237
}
238
238
239
239
// allows user to bypass esp_spiram_test()
Original file line number Diff line number Diff line change 5
5
// setup() will be executed only after this time
6
6
SET_TIME_BEFORE_STARTING_SKETCH_MS (5000 );
7
7
8
-
9
8
void setup () {
10
9
Serial.begin (115200 );
11
10
Serial.println (" After 5 seconds... this message will be seen in the Serial Monitor." );
12
11
}
13
12
14
- void loop () {
15
- }
13
+ void loop () {}
You can’t perform that action at this time.
0 commit comments