Add 5ms yield in loop() to allow beepTask and rfDecodeTask to run

This commit is contained in:
2026-05-07 09:02:11 +02:00
parent 0c3209d022
commit 27b95956f0
+3
View File
@@ -272,6 +272,9 @@ void loop()
} }
loopCountSincePause++; loopCountSincePause++;
/* yield to beepTask and rfDecodeTask between loop iterations */
vTaskDelay(pdMS_TO_TICKS(5));
} }
/* don't call from interrupt, set gbRestartRequest to true instead */ /* don't call from interrupt, set gbRestartRequest to true instead */