examples/lvgldemo: Add config to enable Slideshow mode for Widgets demo

This commit is contained in:
Gustavo Henrique Nihei 2021-04-07 12:08:01 -03:00 committed by Alan Carvalho de Assis
parent ad5fff4b0b
commit e6df9f55f1
2 changed files with 17 additions and 2 deletions

View File

@ -61,6 +61,17 @@ config EXAMPLES_LVGLDEMO_WIDGETS
endchoice
if EXAMPLES_LVGLDEMO_WIDGETS
config EXAMPLES_LVGLDEMO_WIDGETS_SLIDESHOW
bool "Enable Slideshow mode for Widgets example"
default n
---help---
Slideshow mode consists of a non-interactive demonstration of the
Widgets example.
endif # EXAMPLES_LVGLDEMO_WIDGETS
config EXAMPLES_LVGLDEMO_PRIORITY
int "lvgl task priority"
default 100

View File

@ -1,5 +1,5 @@
/****************************************************************************
* examples/lvgldemo/lv_ex_conf.h
* apps/examples/lvgldemo/lv_ex_conf.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -45,7 +45,11 @@
#define LV_USE_DEMO_WIDGETS 1
#if LV_USE_DEMO_WIDGETS
#define LV_DEMO_WIDGETS_SLIDESHOW 0
#ifdef CONFIG_EXAMPLES_LVGLDEMO_WIDGETS_SLIDESHOW
#define LV_DEMO_WIDGETS_SLIDESHOW CONFIG_EXAMPLES_LVGLDEMO_WIDGETS_SLIDESHOW
#else
#define LV_DEMO_WIDGETS_SLIDESHOW 0
#endif
#endif
/* Printer demo, optimized for 800x480 */