Home
last modified time | relevance | path

Searched refs:lv_timer_handler (Results 1 – 15 of 15) sorted by relevance

/lvgl-3.7.0/docs/porting/
Dtimer-handler.md3 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 */
Dos.md11 …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`).
Dproject.md66 5. Call `lv_timer_handler()` every few milliseconds to handle LVGL related tasks. [Learn more](/por…
Ddisplay.md230 Note that `lv_timer_handler()` and `_lv_disp_refr_timer()` can not run at the same time.
/lvgl-3.7.0/docs/overview/
Dtimer.md3 …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`.
Dobject.md118 …e `lv_obj_del_async(obj)` which will perform the deletion on the next call of `lv_timer_handler()`.
/lvgl-3.7.0/src/misc/
Dlv_timer.h68 uint32_t /* LV_ATTRIBUTE_TIMER_HANDLER */ lv_timer_handler(void);
85 return lv_timer_handler(); in lv_timer_handler_run_in_period()
Dlv_timer.c67 uint32_t LV_ATTRIBUTE_TIMER_HANDLER lv_timer_handler(void) in lv_timer_handler() function
/lvgl-3.7.0/src/
Dlv_api_map.h37 return lv_timer_handler(); in lv_task_handler()
/lvgl-3.7.0/tests/src/
Dlv_test_indev.c134 lv_timer_handler(); in lv_test_indev_wait()
/lvgl-3.7.0/tests/src/test_cases/
Dtest_style.c37 lv_timer_handler(); in test_gradient_vertical_misalignment()
/lvgl-3.7.0/examples/arduino/LVGL_Arduino/
DLVGL_Arduino.ino138 lv_timer_handler(); /* let the GUI do its work */
/lvgl-3.7.0/demos/benchmark/
DREADME.md106 lv_timer_handler(); //! run lv task at the max speed
/lvgl-3.7.0/docs/intro/
Dindex.md151 - 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…
/lvgl-3.7.0/docs/get-started/
Dquick-overview.md78 - Call `lv_timer_handler()` periodically every few milliseconds in the main `while(1)` loop or in a…