lv_timer.h
Defines
-
LV_NO_TIMER_READY
Typedefs
-
typedef void (*lv_timer_cb_t)(lv_timer_t*)
Timers execute this type of functions.
-
typedef void (*lv_timer_handler_resume_cb_t)(void *data)
Timer handler resume this type of function.
Functions
-
uint32_t lv_timer_handler_run_in_period(uint32_t period)
Call it in the super-loop of main() or threads. It will run lv_timer_handler() with a given period in ms. You can use it with sleep or delay in OS environment. This function is used to simplify the porting.
- 参数:
period -- the period for running lv_timer_handler()
- 返回:
the time after which it must be called again
-
void lv_timer_periodic_handler(void)
Call it in the super-loop of main() or threads. It will automatically call lv_timer_handler() at the right time. This function is used to simplify the porting.
-
void lv_timer_handler_set_resume_cb(lv_timer_handler_resume_cb_t cb, void *data)
Set the resume callback to the timer handler
- 参数:
cb -- the function to call when timer handler is resumed
data -- pointer to a resume data
-
lv_timer_t *lv_timer_create_basic(void)
Create an "empty" timer. It needs to be initialized with at least
lv_timer_set_cb
andlv_timer_set_period
- 返回:
pointer to the created timer
-
lv_timer_t *lv_timer_create(lv_timer_cb_t timer_xcb, uint32_t period, void *user_data)
Create a new lv_timer
- 参数:
timer_xcb -- a callback to call periodically. (the 'x' in the argument name indicates that it's not a fully generic function because it not follows the
func_name(object, callback, ...)
convention)period -- call period in ms unit
user_data -- custom parameter
- 返回:
pointer to the new timer
-
void lv_timer_delete(lv_timer_t *timer)
Delete a lv_timer
- 参数:
timer -- pointer to an lv_timer
-
void lv_timer_pause(lv_timer_t *timer)
Pause a timer.
- 参数:
timer -- pointer to an lv_timer
-
void lv_timer_resume(lv_timer_t *timer)
Resume a timer.
- 参数:
timer -- pointer to an lv_timer
-
void lv_timer_set_cb(lv_timer_t *timer, lv_timer_cb_t timer_cb)
Set the callback to the timer (the function to call periodically)
- 参数:
timer -- pointer to a timer
timer_cb -- the function to call periodically
-
void lv_timer_set_period(lv_timer_t *timer, uint32_t period)
Set new period for a lv_timer
- 参数:
timer -- pointer to a lv_timer
period -- the new period
-
void lv_timer_ready(lv_timer_t *timer)
Make a lv_timer ready. It will not wait its period.
- 参数:
timer -- pointer to a lv_timer.
-
void lv_timer_set_repeat_count(lv_timer_t *timer, int32_t repeat_count)
Set the number of times a timer will repeat.
- 参数:
timer -- pointer to a lv_timer.
repeat_count -- -1 : infinity; 0 : stop ; n>0: residual times
-
void lv_timer_set_auto_delete(lv_timer_t *timer, bool auto_delete)
Set whether a lv_timer will be deleted automatically when it is called
repeat_count
times.- 参数:
timer -- pointer to a lv_timer.
auto_delete -- true: auto delete; false: timer will be paused when it is called
repeat_count
times.
-
void lv_timer_set_user_data(lv_timer_t *timer, void *user_data)
Set custom parameter to the lv_timer.
- 参数:
timer -- pointer to a lv_timer.
user_data -- custom parameter
-
void lv_timer_reset(lv_timer_t *timer)
Reset a lv_timer. It will be called the previously set period milliseconds later.
- 参数:
timer -- pointer to a lv_timer.
-
void lv_timer_enable(bool en)
Enable or disable the whole lv_timer handling
- 参数:
en -- true: lv_timer handling is running, false: lv_timer handling is suspended
-
uint32_t lv_timer_get_idle(void)
Get idle percentage
- 返回:
the lv_timer idle in percentage
-
uint32_t lv_timer_get_time_until_next(void)
Get the time remaining until the next timer will run
- 返回:
the time remaining in ms
-
lv_timer_t *lv_timer_get_next(lv_timer_t *timer)
Iterate through the timers
- 参数:
timer -- NULL to start iteration or the previous return value to get the next timer
- 返回:
the next timer or NULL if there is no more timer
-
void *lv_timer_get_user_data(lv_timer_t *timer)
Get the user_data passed when the timer was created
- 参数:
timer -- pointer to the lv_timer
- 返回:
pointer to the user_data
-
bool lv_timer_get_paused(lv_timer_t *timer)
Get the pause state of a timer
- 参数:
timer -- pointer to a lv_timer
- 返回:
true: timer is paused; false: timer is running