Home
last modified time | relevance | path

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

/lvgl-latest/src/misc/
Dlv_timer.c165 lv_timer_t * lv_timer_create(lv_timer_cb_t timer_xcb, uint32_t period, void * user_data) in lv_timer_create() argument
173 new_timer->period = period; in lv_timer_create()
215 void lv_timer_set_period(lv_timer_t * timer, uint32_t period) in lv_timer_set_period() argument
218 timer->period = period; in lv_timer_set_period()
224 timer->last_run = lv_tick_get() - timer->period - 1; in lv_timer_ready()
281 LV_ATTRIBUTE_TIMER_HANDLER uint32_t lv_timer_handler_run_in_period(uint32_t period) in lv_timer_handler_run_in_period() argument
285 if(lv_tick_elaps(last_tick) >= period) { in lv_timer_handler_run_in_period()
367 if(elp >= timer->period) in lv_timer_time_remaining()
369 return timer->period - elp; in lv_timer_time_remaining()
Dlv_timer.h64 LV_ATTRIBUTE_TIMER_HANDLER uint32_t lv_timer_handler_run_in_period(uint32_t period);
95 lv_timer_t * lv_timer_create(lv_timer_cb_t timer_xcb, uint32_t period, void * user_data);
127 void lv_timer_set_period(lv_timer_t * timer, uint32_t period);
Dlv_timer_private.h31 uint32_t period; /**< How often the timer should run */ member
/lvgl-latest/env_support/pikascript/
Dpika_lv_timer_t.c21 void pika_lvgl_lv_timer_t_set_period(PikaObj* self, int period) { in pika_lvgl_lv_timer_t_set_period() argument
23 lv_timer_set_period(lv_timer, period); in pika_lvgl_lv_timer_t_set_period()
Dpika_lvgl.pyi122 def set_period(period: int): ...
/lvgl-latest/src/libs/ffmpeg/
Dlv_ffmpeg.c198 int period = ffmpeg_get_frame_refr_period(player->ffmpeg_ctx); in lv_ffmpeg_player_set_src() local
200 if(period > 0) { in lv_ffmpeg_player_set_src()
202 period, 1000 / period); in lv_ffmpeg_player_set_src()
203 lv_timer_set_period(player->timer, period); in lv_ffmpeg_player_set_src()
635 int period = 1000 * (int64_t)ffmpeg_ctx->video_stream->avg_frame_rate.den in ffmpeg_get_frame_refr_period() local
637 return period; in ffmpeg_get_frame_refr_period()
/lvgl-latest/docs/details/base-widget/
Devent.rst124 - :cpp:enumerator:`LV_EVENT_SHORT_CLICKED`: Widget was pressed for a short period of time, and the…
125period of time, and then released without scrolling, for the first time in a click streak. A click…
126 - :cpp:enumerator:`LV_EVENT_DOUBLE_CLICKED`: Widget was pressed for a short period of time, and th…
127 - :cpp:enumerator:`LV_EVENT_TRIPLE_CLICKED`: Widget was pressed for a short period of time, and th…
Dobj.rst549 - :cpp:enumerator:`LV_EVENT_SHORT_CLICKED` Widget was pressed for a short period of time, t…
/lvgl-latest/docs/details/main-components/
Dtimer.rst75 :cpp:expr:`lv_timer_reset(timer)` resets the period of a Timer. It will be
76 called again after its currently-set period (in milliseconds) has elapsed.
Dindev.rst431 If you hold the keys it will simulate an encoder advance with period
508 in ``lv_conf.h`` sets the default read period.
Danimation.rst17 specified time period. It allows you to specify what object it applies to (the
Ddisplay.rst682 consistent with the refresh period of the display to ensure that the statistical results are correc…
/lvgl-latest/src/others/sysmon/
Dlv_sysmon.c247 uint32_t disp_refr_period = disp_refr_timer ? disp_refr_timer->period : LV_DEF_REFR_PERIOD; in perf_update_timer_cb()
/lvgl-latest/docs/intro/add-lvgl-to-your-project/
Dthreading.rst255 The MCU can go to sleep when no user input has been received for a certain period.
/lvgl-latest/docs/details/integration/driver/display/
Dlcd_stm32_guide.rst293 … /* raise the task priority of LVGL and/or reduce the handler period can improve the performance */
/lvgl-latest/
DKconfig114 int "Default refresh period (ms)"
117 Default display refresh, input device read and animation step period.