From ef6d377197867cf19fd7a4063402c55f75e8e358 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Thu, 20 May 2021 13:06:49 +0200 Subject: [PATCH] tests/pkg_lvgl*: adapt to new behavior --- tests/pkg_lvgl/main.c | 4 ++-- tests/pkg_lvgl_touch/main.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/pkg_lvgl/main.c b/tests/pkg_lvgl/main.c index 751f60efb8..6190db9e23 100644 --- a/tests/pkg_lvgl/main.c +++ b/tests/pkg_lvgl/main.c @@ -121,10 +121,10 @@ int main(void) /* Enable backlight */ disp_dev_backlight_on(); - lvgl_start(); - /* Create the system monitor widget */ sysmon_create(); + lvgl_run(); + return 0; } diff --git a/tests/pkg_lvgl_touch/main.c b/tests/pkg_lvgl_touch/main.c index 0b76ef9edb..acb40e3b58 100644 --- a/tests/pkg_lvgl_touch/main.c +++ b/tests/pkg_lvgl_touch/main.c @@ -57,7 +57,7 @@ int main(void) lv_obj_t * label = lv_label_create(btn, NULL); lv_label_set_text(label, "Click me"); - lvgl_start(); + lvgl_run(); return 0; }