This is an automated email from the ASF dual-hosted git repository.

jerzy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
     new 0f17dae4d lvgl/demo: Run all tests in benchmark
0f17dae4d is described below

commit 0f17dae4dc67ad2ca684ff61c4b3d9b682147d6b
Author: Jerzy Kasenberg <[email protected]>
AuthorDate: Wed Sep 20 12:56:43 2023 +0200

    lvgl/demo: Run all tests in benchmark
    
    Benchmark was running only onc scene in a loop.
    Now whole benchmark is executed.
    
    Signed-off-by: Jerzy Kasenberg <[email protected]>
---
 apps/lvgl/demo/src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/lvgl/demo/src/main.c b/apps/lvgl/demo/src/main.c
index f087e9e0f..2551e7483 100644
--- a/apps/lvgl/demo/src/main.c
+++ b/apps/lvgl/demo/src/main.c
@@ -35,7 +35,7 @@ main(int argc, char **argv)
     sysinit();
 
     if (MYNEWT_VAL_CHOICE(LVGL_DEMO, benchmark)) {
-        lv_demo_benchmark_run_scene(31);
+        lv_demo_benchmark();
     } else if (MYNEWT_VAL_CHOICE(LVGL_DEMO, keypad_encoder)) {
         lv_demo_keypad_encoder();
     } else if (MYNEWT_VAL_CHOICE(LVGL_DEMO, music)) {

Reply via email to