Skip to content

Commit 54f7593

Browse files
committed
haltError delay fix for esp8266 (microseconds)
1 parent 10afca0 commit 54f7593

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Wippersnapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2479,7 +2479,7 @@ void Wippersnapper::haltError(String error, ws_led_status_t ledStatusColor) {
24792479
#else
24802480
// Calls to delay() and yield() feed the ESP8266's
24812481
// hardware and software watchdog timers, delayMicroseconds does not.
2482-
delayMicroseconds(1000);
2482+
delayMicroseconds(1000000);
24832483
#endif
24842484
}
24852485
}

0 commit comments

Comments
 (0)