From 4ce7df295e34d5c3129bb4962d44bf626d8d40db Mon Sep 17 00:00:00 2001 From: geeksville Date: Sat, 18 Apr 2020 08:39:05 -0700 Subject: [PATCH] don't poll for completion so quickly - the log messages scare people --- src/sleep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sleep.cpp b/src/sleep.cpp index ad8aa7359..69b80e91b 100644 --- a/src/sleep.cpp +++ b/src/sleep.cpp @@ -135,7 +135,7 @@ static void waitEnterSleep() uint32_t now = millis(); while (!doPreflightSleep()) { - delay(10); // Kinda yucky - wait until radio says say we can shutdown (finished in process sends/receives) + delay(100); // Kinda yucky - wait until radio says say we can shutdown (finished in process sends/receives) if (millis() - now > 30 * 1000) { // If we wait too long just report an error and go to sleep recordCriticalError(ErrSleepEnterWait);