Home
last modified time | relevance | path

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

/lvgl-3.7.0/src/misc/
Dlv_timer.c35 static uint8_t idle_last = 0; variable
136 idle_last = (busy_time * 100) / idle_period_time; /*Calculate the busy percentage*/ in lv_timer_handler()
137 idle_last = idle_last > 100 ? 0 : 100 - idle_last; /*But we need idle time*/ in lv_timer_handler()
277 return idle_last; in lv_timer_get_idle()