Searched refs:lv_timer_handler (Results 1 – 15 of 15) sorted by relevance
3 To handle the tasks of LVGL you need to call `lv_timer_handler()` periodically in one of the follow…13 lv_timer_handler();18 If you want to use `lv_timer_handler()` in a super-loop, a helper function`lv_timer_handler_run_in_…23 lv_timer_handler_run_in_period(5); /* run lv_timer_handler() every 5ms */32 lv_timer_handler_run_in_period(5); /* run lv_timer_handler() every 5ms */
11 …reads, you need a mutex which should be invoked before the call of `lv_timer_handler` and released…48 …is you have to disable the interrupt which uses LVGL functions while `lv_timer_handler` is running.50 … in the interrupt, and periodically check it in an LVGL timer (which is run by `lv_timer_handler`).
66 5. Call `lv_timer_handler()` every few milliseconds to handle LVGL related tasks. [Learn more](/por…
230 Note that `lv_timer_handler()` and `_lv_disp_refr_timer()` can not run at the same time.
3 …ve it be called periodically. The timers are handled and called in `lv_timer_handler()`, which nee…39 `lv_timer_ready(timer)` makes a timer run on the next call of `lv_timer_handler()`.56 …time of `lv_timer_handler` with `lv_timer_get_idle()`. Note that, it doesn't measure the idle time…57 It can be misleading if you use an operating system and call `lv_timer_handler` in a timer, as it w…62 …ta_p)` can be used to call `my_function` on the next invocation of `lv_timer_handler`. `data_p` wi…80 /*Delete screen on next call of `lv_timer_handler`, not right now.*/87 …ld just use `lv_obj_del_async` which will delete the object on the next call to `lv_timer_handler`.
118 …e `lv_obj_del_async(obj)` which will perform the deletion on the next call of `lv_timer_handler()`.
68 uint32_t /* LV_ATTRIBUTE_TIMER_HANDLER */ lv_timer_handler(void);85 return lv_timer_handler(); in lv_timer_handler_run_in_period()
67 uint32_t LV_ATTRIBUTE_TIMER_HANDLER lv_timer_handler(void) in lv_timer_handler() function
37 return lv_timer_handler(); in lv_task_handler()
134 lv_timer_handler(); in lv_test_indev_wait()
37 lv_timer_handler(); in test_gradient_vertical_misalignment()
138 lv_timer_handler(); /* let the GUI do its work */
106 lv_timer_handler(); //! run lv task at the max speed
151 - increase the stack size of the task which calls `lv_timer_handler()`155 Be sure you are calling `lv_tick_inc(x)` in an interrupt and `lv_timer_handler()` in your main `whi…
78 - Call `lv_timer_handler()` periodically every few milliseconds in the main `while(1)` loop or in a…