Switched to booleans for infinite while loops

This commit is contained in:
Avamander
2021-05-14 12:40:46 +03:00
parent c82dee2def
commit 33f965f326
3 changed files with 3 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ void DisplayApp::Process(void* instance) {
// Send a dummy notification to unlock the lvgl display driver for the first iteration
xTaskNotifyGive(xTaskGetCurrentTaskHandle());
while (1) {
while (true) {
app->Refresh();
}
}