1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/pkg_lvgl: remove manual call to sysmon_task

This commit is contained in:
Alexandre Abadie 2021-05-20 20:56:17 +02:00
parent ef6d377197
commit c09c7d549d
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -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)