@@ -289,9 +289,9 @@ void runTest7() {
289
289
// WiFi.shutdown(nv->wss); // Forced Modem Sleep for a more Instant Deep Sleep,
290
290
// and no extended RFCAL as it goes into Deep Sleep
291
291
Serial.println (F (" going into Deep Sleep now..." ));
292
- printMillis (); // show time difference across sleep
293
- testPoint_HIGH; // testPoint set HIGH to track Deep Sleep period, cleared at startup()
294
- ESP.deepSleep (10E6 ); // good night! D0 fires a reset in 10 seconds...
292
+ printMillis (); // show time difference across sleep
293
+ testPoint_HIGH; // testPoint set HIGH to track Deep Sleep period, cleared at startup()
294
+ ESP.deepSleep (10E6 ); // good night! D0 fires a reset in 10 seconds...
295
295
// if you do ESP.deepSleep(0); it needs a RESET to come out of sleep (RTC is disconnected)
296
296
// maximum timed Deep Sleep interval ~ 3 to 4 hours depending on the RTC timer, see the README
297
297
// the 2 uA GPIO amperage during Deep Sleep can't drive the LED so it's not lit now, although
@@ -309,7 +309,7 @@ void runTest8() {
309
309
Serial.println (F (" going into Deep Sleep now..." ));
310
310
Serial.flush (); // needs a delay(10) or Serial.flush() else it doesn't print the whole message
311
311
testPoint_HIGH; // testPoint set HIGH to track Deep Sleep period, cleared at startup()
312
- ESP.deepSleep (10E6 ); // good night! D0 fires a reset in 10 seconds...
312
+ ESP.deepSleep (10E6 ); // good night! D0 fires a reset in 10 seconds...
313
313
Serial.println (F (" What... I'm not asleep?!?" )); // it will never get here
314
314
}
315
315
@@ -322,7 +322,7 @@ void runTest9() {
322
322
Serial.println (F (" going into Deep Sleep now..." ));
323
323
Serial.flush (); // needs a delay(10) or Serial.flush() else it doesn't print the whole message
324
324
testPoint_HIGH; // testPoint set HIGH to track Deep Sleep period, cleared at startup()
325
- ESP.deepSleepInstant (10E6 ); // good night! D0 fires a reset in 10 seconds...
325
+ ESP.deepSleepInstant (10E6 ); // good night! D0 fires a reset in 10 seconds...
326
326
Serial.println (F (" What... I'm not asleep?!?" )); // it will never get here
327
327
}
328
328
@@ -335,7 +335,7 @@ void runTest10() {
335
335
Serial.println (F (" going into Deep Sleep now..." ));
336
336
Serial.flush (); // needs a delay(10) or Serial.flush() else it doesn't print the whole message
337
337
testPoint_HIGH; // testPoint set HIGH to track Deep Sleep period, cleared at startup()
338
- ESP.deepSleepInstant (10E6 ); // good night! D0 fires a reset in 10 seconds...
338
+ ESP.deepSleepInstant (10E6 ); // good night! D0 fires a reset in 10 seconds...
339
339
Serial.println (F (" What... I'm not asleep?!?" )); // it will never get here
340
340
}
341
341
0 commit comments