Searched refs:new_timer (Results 1 – 1 of 1) sorted by relevance
167 lv_timer_t * new_timer = NULL; in lv_timer_create() local169 new_timer = lv_ll_ins_head(timer_ll_p); in lv_timer_create()170 LV_ASSERT_MALLOC(new_timer); in lv_timer_create()171 if(new_timer == NULL) return NULL; in lv_timer_create()173 new_timer->period = period; in lv_timer_create()174 new_timer->timer_cb = timer_xcb; in lv_timer_create()175 new_timer->repeat_count = -1; in lv_timer_create()176 new_timer->paused = 0; in lv_timer_create()177 new_timer->last_run = lv_tick_get(); in lv_timer_create()178 new_timer->user_data = user_data; in lv_timer_create()[all …]