Home
last modified time | relevance | path

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

/lvgl-3.7.0/src/misc/
Dlv_timer.c169 lv_timer_t * new_timer = NULL; in lv_timer_create() local
171 new_timer = _lv_ll_ins_head(&LV_GC_ROOT(_lv_timer_ll)); in lv_timer_create()
172 LV_ASSERT_MALLOC(new_timer); in lv_timer_create()
173 if(new_timer == NULL) return NULL; in lv_timer_create()
175 new_timer->period = period; in lv_timer_create()
176 new_timer->timer_cb = timer_xcb; in lv_timer_create()
177 new_timer->repeat_count = -1; in lv_timer_create()
178 new_timer->paused = 0; in lv_timer_create()
179 new_timer->last_run = lv_tick_get(); in lv_timer_create()
180 new_timer->user_data = user_data; in lv_timer_create()
[all …]