Home
last modified time | relevance | path

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

/lvgl-latest/src/misc/
Dlv_timer_private.h30 struct _lv_timer_t { struct
31 uint32_t period; /**< How often the timer should run */
32 uint32_t last_run; /**< Last time the timer ran */
33 lv_timer_cb_t timer_cb; /**< Timer function */
34 void * user_data; /**< Custom user data */
35 int32_t repeat_count; /**< 1: One time; -1 : infinity; n>0: residual times */
36 uint32_t paused : 1;
37 uint32_t auto_delete : 1;