Searched refs:lv_tick_inc (Results 1 – 13 of 13) sorted by relevance
5 …eed to call the `lv_tick_inc(tick_period)` function periodically and provide the call period in mi…7 `lv_tick_inc` should be called in a higher priority routine than `lv_task_handler()` (e.g. in an in…9 With FreeRTOS `lv_tick_inc` can be called in `vApplicationTickHook`.11 On Linux based operating systems (e.g. on Raspberry Pi) `lv_tick_inc` can be called in a thread lik…17 lv_tick_inc(5); /*Tell LVGL that 5 milliseconds were elapsed*/
13 timer_stop(); /*Stop the timer where lv_tick_inc() is called*/22 lv_tick_inc(LV_DISP_DEF_REFR_PERIOD); /*Force task execution on wake-up*/23 timer_start(); /*Restart the timer where lv_tick_inc() is called*/
5 - timer interrupt periodically (lower priority than `lv_tick_inc()`)
48 Try to avoid calling LVGL functions from interrupt handlers (except `lv_tick_inc()` and `lv_disp_fl…
65 4. Call `lv_tick_inc(x)` every `x` milliseconds in an interrupt to report the elapsed time to LVGL.…
43 void /* LV_ATTRIBUTE_TICK_INC */ lv_tick_inc(uint32_t tick_period);
49 void LV_ATTRIBUTE_TICK_INC lv_tick_inc(uint32_t tick_period) in lv_tick_inc() function
135 lv_tick_inc(1); in lv_test_indev_wait()
38 lv_tick_inc(100); in test_gradient_vertical_misalignment()
108 *It removes the need to manually update the tick with `lv_tick_inc()`)*/
22 - Call `lv_tick_inc(x)` every `x` milliseconds in a Timer or Task (`x` should be between 1 and 10).…
155 Be sure you are calling `lv_tick_inc(x)` in an interrupt and `lv_timer_handler()` in your main `whi…
963 - feat(timer) check if lv_tick_inc is called [`aa6641a`](https://github.com/lvgl/lvgl/commit/aa6641…1043 - fix(hal tick): add precompile !LV_TICK_CUSTOM for global variables and lv_tick_inc() [`2675`](htt…1225 - fix(tick) minor optimization on lv_tick_inc call test [`b4305df`](https://github.com/lvgl/lvgl/co…1575 - fix(tick) minor optimization on lv_tick_inc call test <a href="https://github.com/lvgl/lvgl/commi…1583 - feat(timer) check if lv_tick_inc is called <a href="https://github.com/lvgl/lvgl/commit/aa6641a6"…