Home
last modified time | relevance | path

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

12

/lvgl-latest/docs/intro/add-lvgl-to-your-project/
Dtimer_handler.rst7 To drive the timers of LVGL you need to call :cpp:func:`lv_timer_handler`
23 uint32_t time_till_next = lv_timer_handler();
27 If you want to use :cpp:func:`lv_timer_handler` in a super-loop, a helper
35 lv_timer_handler_run_in_period(5); /* run lv_timer_handler() every 5ms */
55 uint32_t time_till_next = lv_timer_handler();
Dthreading.rst68 to :cpp:func:`lv_timer_handler`.
77 :cpp:func:`lv_timer_handler`.
150 that thread is also the ONLY caller of :cpp:func:`lv_timer_handler`. (See
202 including calls to :cpp:func:`lv_timer_handler`.
209 When this is the case, :cpp:func:`lv_timer_handler` calls :cpp:func:`lv_lock()`
211 calls to :cpp:func:`lv_timer_handler` with them.
227 time_till_next = lv_timer_handler(); /* lv_lock/lv_unlock is called internally */
263 lv_timer_handler();
280lv_timer_handler(); /* Call `lv_timer_handler()` manually to process the wake-up eve…
Dconnecting_lvgl.rst31 6. Drive LVGL time-related tasks by calling :cpp:func:`lv_timer_handler` every few
113 because the execution time of :c:func:`lv_timer_handler` varies from call to call and
119 lv_timer_handler();
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_lottie.c86 lv_timer_handler(); in test_lottie_missing_settings()
93 lv_timer_handler(); in test_lottie_missing_settings()
144 lv_timer_handler(); in test_lottie_memory_leak()
Dtest_spinner.c27 lv_timer_handler(); in test_spinner_spinning()
/lvgl-latest/tests/src/
Dlv_test_helpers.c8 lv_timer_handler(); in lv_test_wait()
Dlv_test_indev.c130 lv_timer_handler(); in lv_test_indev_wait()
/lvgl-latest/tests/src/test_cases/
Dtest_demo_stress.c15 lv_timer_handler(); in loop_through_stress_test()
Dtest_style.c39 lv_timer_handler(); in test_gradient_vertical_misalignment()
/lvgl-latest/docs/details/main-components/
Dtimer.rst9 :cpp:func:`lv_timer_handler`, which needs to be called every few milliseconds.
73 :cpp:func:`lv_timer_handler`.
123 You can get the idle percentage time of :cpp:func:`lv_timer_handler` with
125 the overall system, only of :cpp:func:`lv_timer_handler`. This can be misleading if
154 When the Timer system has been disabled (causing :cpp:func:`lv_timer_handler` to
176 the next invocation of :cpp:func:`lv_timer_handler`. As a side effect, this also
205 /* Delete screen on next call of `lv_timer_handler`, not right now. */
214 will delete the Widget on the next call to :cpp:func:`lv_timer_handler`.
/lvgl-latest/src/misc/
Dlv_timer.c63 LV_ATTRIBUTE_TIMER_HANDLER uint32_t lv_timer_handler(void) in lv_timer_handler() function
155 lv_timer_handler(); in lv_timer_periodic_handler()
287 return lv_timer_handler(); in lv_timer_handler_run_in_period()
Dlv_timer.h53 LV_ATTRIBUTE_TIMER_HANDLER uint32_t lv_timer_handler(void);
/lvgl-latest/env_support/rt-thread/
Dlv_rt_thread_port.c83 lv_timer_handler(); in lvgl_thread_entry()
/lvgl-latest/docs/details/integration/driver/
DX11.rst81 lv_timer_handler();
125 lv_timer_handler();
Duefi.rst117 lv_timer_handler();
Dwayland.rst112 …ll ``lv_wayland_timer_handler()`` in your timer loop instead of the regular ``lv_timer_handler()``.
114 **Note:** ``lv_wayland_timer_handler()`` internally calls ``lv_timer_handler()``
Dwindows.rst114 uint32_t time_till_next = lv_timer_handler();
/lvgl-latest/docs/details/integration/chip/
Dstm32.rst76 - Add a call to :cpp:func:`lv_timer_handler` inside your ``while(1)`` loop:
83 lv_timer_handler();
194 - Create two threads to call :cpp:func:`lv_timer_handler`, and
224 lv_timer_handler();
/lvgl-latest/.devcontainer/
D__main.c__83 lv_timer_handler();
/lvgl-latest/src/drivers/nuttx/
Dlv_nuttx_entry.c185 idle = lv_timer_handler(); in lv_nuttx_run()
Dlv_nuttx_libuv.c128 sleep_ms = lv_timer_handler(); in lv_nuttx_uv_timer_cb()
/lvgl-latest/src/
Dlv_api_map_v8.h77 return lv_timer_handler(); in lv_task_handler()
/lvgl-latest/docs/details/widgets/
Dmsgbox.rst100 the next call to ``lv_timer_handler`` instead of immediately.
/lvgl-latest/examples/arduino/LVGL_Arduino/
DLVGL_Arduino.ino141 lv_timer_handler(); /* let the GUI do its work */
/lvgl-latest/demos/
DREADME.md101 uint32_t delay = lv_timer_handler();

12