Home
last modified time | relevance | path

Searched refs:period (Results 1 – 13 of 13) sorted by relevance

/lvgl-3.7.0/src/misc/
Dlv_timer.c167 lv_timer_t * lv_timer_create(lv_timer_cb_t timer_xcb, uint32_t period, void * user_data) in lv_timer_create() argument
175 new_timer->period = period; in lv_timer_create()
228 void lv_timer_set_period(lv_timer_t * timer, uint32_t period) in lv_timer_set_period() argument
230 timer->period = period; in lv_timer_set_period()
239 timer->last_run = lv_tick_get() - timer->period - 1; in lv_timer_ready()
338 if(elp >= timer->period) in lv_timer_time_remaining()
340 return timer->period - elp; in lv_timer_time_remaining()
Dlv_timer.h45 uint32_t period; /**< How often the timer should run*/ member
106 lv_timer_t * lv_timer_create(lv_timer_cb_t timer_xcb, uint32_t period, void * user_data);
134 void lv_timer_set_period(lv_timer_t * timer, uint32_t period);
/lvgl-3.7.0/src/extra/libs/ffmpeg/
Dlv_ffmpeg.c194 int period = ffmpeg_get_frame_refr_period(player->ffmpeg_ctx); in lv_ffmpeg_player_set_src() local
196 if(period > 0) { in lv_ffmpeg_player_set_src()
198 period, 1000 / period); in lv_ffmpeg_player_set_src()
199 lv_timer_set_period(player->timer, period); in lv_ffmpeg_player_set_src()
623 int period = 1000 * (int64_t)ffmpeg_ctx->video_stream->avg_frame_rate.den in ffmpeg_get_frame_refr_period() local
625 return period; in ffmpeg_get_frame_refr_period()
/lvgl-3.7.0/docs/porting/
Dtick.md5 You need to call the `lv_tick_inc(tick_period)` function periodically and provide the call period i…
Dindev.md117 If you hold the keys it will simulate an encoder advance with period specified in `indev_drv.long_p…
176 …`lv_timer_...()` functions. `LV_INDEV_DEF_READ_PERIOD` in `lv_conf.h` sets the default read period.
Ddisplay.md108 … used to wait for VSYNC to start rendering. It's useful if rendering is faster than a VSYNC period.
232 …_DISP_DEF_REFR_PERIOD` needs to be set to be consistent with the refresh period of the display to …
/lvgl-3.7.0/docs/overview/
Dtimer.md41 `lv_timer_reset(timer)` resets the period of a timer. It will be called again after the defined per…
Devent.md72 - `LV_EVENT_SHORT_CLICKED` An object was pressed for a short period of time, then released. Not …
/lvgl-3.7.0/demos/benchmark/
Dlv_demo_benchmark.c667 disp_ori_timer_period = disp->refr_timer->period; in benchmark_init()
672 anim_ori_timer_period = anim_timer->period; in benchmark_init()
/lvgl-3.7.0/
DKconfig104 int "Default display refresh period (ms)."
110 int "Input device read period [ms]."
/lvgl-3.7.0/src/core/
Dlv_refr.c391 fps_limit = 1000 / disp_refr->refr_timer->period; in _lv_disp_refr_timer()
/lvgl-3.7.0/docs/
DCONTRIBUTING.md274 1. Have > 50 replies in the Forum. You can look at your stats [here](https://forum.lvgl.io/u?period
DCHANGELOG.md377 - feat(rt-thread): allow users to control refresh period in the lvgl thread [`3375`](https://github…