Author: mark9064 <30447455+mark9064@users.noreply.github.com>
aod: run LVGL task handler until all work finished
src/displayapp/DisplayApp.cpp | 4 +++-
diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index 88ce085fd79b751d946130af71f996e75cc6c169..bc9a57bc7741b5a2ab77072b83cfa85e0297174f 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -242,7 +242,9 @@ // Might not be true if the loop received an event // If not true, then wait that amount of time queueTimeout = CalculateSleepTime(); if (queueTimeout == 0) { - lv_task_handler(); + // Keep running the task handler if it still has things to draw + while (!lv_task_handler()) { + }; // Drop frames that we've missed if the loop took way longer than expected to execute while (queueTimeout == 0) { alwaysOnTickCount += 1;