minor debug output

This commit is contained in:
Kevin Hester
2021-08-15 10:34:57 -07:00
parent 700e799125
commit b04e313665
2 changed files with 4 additions and 1 deletions

View File

@@ -646,7 +646,9 @@ void loop()
mainController.nextThread->tillRun(millis())); */
// We want to sleep as long as possible here - because it saves power
if (!runASAP && loopCanSleep())
if (!runASAP && loopCanSleep()) {
// if(delayMsec > 100) DEBUG_MSG("sleeping %ld\n", delayMsec);
mainDelay.delay(delayMsec);
}
// if (didWake) DEBUG_MSG("wake!\n");
}