MPLAB® Harmony Graphics Suite > Graphics Library > Aria Graphics Library > Aria User Interface Library Interface > a) Functions > laContext_Update Function
MPLAB® Harmony Graphics Suite
laContext_Update Function

The update loop allows the library to service its event array and allows any intelligent widgets to perform active update tasks. This should be run periodically, but not often enough to starve other processes. Running too little may result in a loss of UI responsiveness.

C
LIB_EXPORT void laContext_Update(
    uint32_t dt
);
Parameters
Parameters 
Description 
uint32_t dt 
a delta time representing how much time has passed since the last time laContext_Update has been called. This is typically in milliseconds. 
Returns

void

MPLAB® Harmony Graphics Suite