boot delay log fix

This commit is contained in:
Patrick Haßel 2024-04-12 10:13:09 +02:00
parent d23c992595
commit fa4cc287a3

View File

@ -137,7 +137,7 @@ void bootDelay() {
bootDelayLoop(); bootDelayLoop();
} }
info("BOOT DELAY: WiFi connected!"); info("BOOT DELAY: WiFi connected!");
info("BOOT DELAY: Waiting 10 seconds..."); info("BOOT DELAY: Waiting %d milliseconds...", BOOT_DELAY_MS);
unsigned long bootDelayBegin = millis(); unsigned long bootDelayBegin = millis();
while (millis() - bootDelayBegin < BOOT_DELAY_MS) { while (millis() - bootDelayBegin < BOOT_DELAY_MS) {
bootDelayLoop(); bootDelayLoop();