Skip to content

Commit a77a94b

Browse files
ci(pre-commit): Apply automatic fixes
1 parent 0c8076d commit a77a94b

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

cores/esp32/Arduino.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
233233
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); \
237237
}
238238

239239
// allows user to bypass esp_spiram_test()

libraries/ESP32/examples/ArduinoWaitTimeBeforeStartingSketch/ArduinoWaitTimeBeforeStartingSketch.ino

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
// setup() will be executed only after this time
66
SET_TIME_BEFORE_STARTING_SKETCH_MS(5000);
77

8-
98
void 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() {}

0 commit comments

Comments
 (0)