place some lv_log_add calls
This commit is contained in:
@@ -253,6 +253,11 @@ static void indev_proc_task(void * param)
|
||||
{
|
||||
(void)param;
|
||||
|
||||
|
||||
#if USE_LV_LOG
|
||||
lv_log_add(LV_LOG_LEVEL_DEBUG, __FILE__, __LINE__, "indev_proc task started");
|
||||
#endif
|
||||
|
||||
lv_indev_data_t data;
|
||||
lv_indev_t * i;
|
||||
i = lv_indev_next(NULL);
|
||||
@@ -291,6 +296,10 @@ static void indev_proc_task(void * param)
|
||||
}
|
||||
|
||||
indev_act = NULL; /*End of indev processing, so no act indev*/
|
||||
|
||||
#if USE_LV_LOG
|
||||
lv_log_add(LV_LOG_LEVEL_DEBUG, __FILE__, __LINE__, "indev_proc task finished");
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -167,6 +167,9 @@ void lv_refr_pop_from_buf(uint16_t num)
|
||||
static void lv_refr_task(void * param)
|
||||
{
|
||||
(void)param;
|
||||
#if USE_LV_LOG
|
||||
lv_log_add(LV_LOG_LEVEL_DEBUG, __FILE__, __LINE__, "display refresh task started");
|
||||
#endif
|
||||
|
||||
uint32_t start = lv_tick_get();
|
||||
|
||||
@@ -186,6 +189,9 @@ static void lv_refr_task(void * param)
|
||||
monitor_cb(lv_tick_elaps(start), px_num);
|
||||
}
|
||||
}
|
||||
#if USE_LV_LOG
|
||||
lv_log_add(LV_LOG_LEVEL_DEBUG, __FILE__, __LINE__, "display refresh task finished");
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user