Searched refs:period (Results 1 – 16 of 16) sorted by relevance
/lvgl-latest/src/misc/ |
D | lv_timer.c | 165 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()
|
D | lv_timer.h | 64 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);
|
D | lv_timer_private.h | 31 uint32_t period; /**< How often the timer should run */ member
|
/lvgl-latest/env_support/pikascript/ |
D | pika_lv_timer_t.c | 21 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()
|
D | pika_lvgl.pyi | 122 def set_period(period: int): ...
|
/lvgl-latest/src/libs/ffmpeg/ |
D | lv_ffmpeg.c | 198 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/ |
D | event.rst | 124 - :cpp:enumerator:`LV_EVENT_SHORT_CLICKED`: Widget was pressed for a short period of time, and the… 125 …period 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…
|
D | obj.rst | 549 - :cpp:enumerator:`LV_EVENT_SHORT_CLICKED` Widget was pressed for a short period of time, t…
|
/lvgl-latest/docs/details/main-components/ |
D | timer.rst | 75 :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.
|
D | indev.rst | 431 If you hold the keys it will simulate an encoder advance with period 508 in ``lv_conf.h`` sets the default read period.
|
D | animation.rst | 17 specified time period. It allows you to specify what object it applies to (the
|
D | display.rst | 682 consistent with the refresh period of the display to ensure that the statistical results are correc…
|
/lvgl-latest/src/others/sysmon/ |
D | lv_sysmon.c | 247 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/ |
D | threading.rst | 255 The MCU can go to sleep when no user input has been received for a certain period.
|
/lvgl-latest/docs/details/integration/driver/display/ |
D | lcd_stm32_guide.rst | 293 … /* raise the task priority of LVGL and/or reduce the handler period can improve the performance */
|
/lvgl-latest/ |
D | Kconfig | 114 int "Default refresh period (ms)" 117 Default display refresh, input device read and animation step period.
|