1
0
forked from me/IronOS

Create GUIDelay.cpp

This commit is contained in:
Ben V. Brown
2022-11-22 18:25:40 +11:00
parent 3836915b19
commit 7bb41ff7c9

View File

@@ -0,0 +1,10 @@
#include "OperatingModeUtilities.h"
void GUIDelay() {
// Called in all UI looping tasks,
// This limits the re-draw rate to the LCD and also lets the DMA run
// As the gui task can very easily fill this bus with transactions, which will
// prevent the movement detection from running
vTaskDelay(5 * TICKS_10MS);
}