Home
last modified time | relevance | path

Searched defs:_lv_timer_t (Results 1 – 1 of 1) sorted by relevance

/lvgl-3.7.0/src/misc/
Dlv_timer.h44 typedef struct _lv_timer_t { struct
45 uint32_t period; /**< How often the timer should run*/
46 uint32_t last_run; /**< Last time the timer ran*/
47 lv_timer_cb_t timer_cb; /**< Timer function*/
48 void * user_data; /**< Custom user data*/
49 int32_t repeat_count; /**< 1: One time; -1 : infinity; n>0: residual times*/
50 uint32_t paused : 1;