mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
10 lines
325 B
C++
10 lines
325 B
C++
|
|
#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);
|
|
} |