From c09c7d549da8136101cc549cc691f9f3f2c47c17 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Thu, 20 May 2021 20:56:17 +0200 Subject: [PATCH] tests/pkg_lvgl: remove manual call to sysmon_task --- tests/pkg_lvgl/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/pkg_lvgl/main.c b/tests/pkg_lvgl/main.c index 6190db9e23..44ea287982 100644 --- a/tests/pkg_lvgl/main.c +++ b/tests/pkg_lvgl/main.c @@ -111,9 +111,8 @@ void sysmon_create(void) info_label = lv_label_create(win, NULL); lv_label_set_recolor(info_label, true); - /* Refresh the chart and label manually at first */ + /* Create the task used to refresh the chart and label */ refr_task = lv_task_create(sysmon_task, REFR_TIME, LV_TASK_PRIO_LOW, NULL); - sysmon_task(NULL); } int main(void)