Home
last modified time | relevance | path

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

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