Lines Matching refs:timer
49 void my_timer(lv_timer_t * timer)
52 uint32_t * user_data = lv_timer_get_user_data(timer);
65 lv_timer_t * timer = lv_timer_create(my_timer, 500, &user_data);
72 :cpp:expr:`lv_timer_ready(timer)` makes a Timer run on the next call of
75 :cpp:expr:`lv_timer_reset(timer)` resets the period of a Timer. It will be
85 - :cpp:expr:`lv_timer_set_cb(timer, new_cb)`
86 - :cpp:expr:`lv_timer_set_period(timer, new_period_ms)`
87 - :cpp:expr:`lv_timer_set_user_data(timer, user_data)`
96 :cpp:expr:`lv_timer_set_repeat_count(timer, count)`. By default, once the Timer has
99 You can use :cpp:expr:`lv_timer_set_auto_delete(timer, false)` if you want the timer
101 reuse that timer repeatedly and want to avoid the CPU and :cpp:func:`lv_malloc`
102 overhead of repeatedly creating and deleting a timer. If you use this option, you
114 :cpp:expr:`lv_timer_pause(timer)` pauses the specified Timer.
116 :cpp:expr:`lv_timer_resume(timer)` resumes the specified Timer.