mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-07 05:27:24 +00:00
23 lines
509 B
Text
23 lines
509 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
menuconfig EXAMPLES_LVGLDEMO
|
|
tristate "LVGL Demo"
|
|
default n
|
|
depends on GRAPHICS_LVGL
|
|
---help---
|
|
Enable build the Light and Versatile Graphics Library Demo programs
|
|
|
|
if EXAMPLES_LVGLDEMO
|
|
|
|
config EXAMPLES_LVGLDEMO_PRIORITY
|
|
int "lvgldemo task priority"
|
|
default 100
|
|
|
|
config EXAMPLES_LVGLDEMO_STACKSIZE
|
|
int "lvgldemo stack size"
|
|
default 16384
|
|
|
|
endif # EXAMPLES_LVGLDEMO
|