nuttx-apps/examples/lvgldemo/Kconfig
Neo Xu c4b6fd77be lvgldemo: allow to customize input dev path
Default to /dev/input0, now it's configurable.

Signed-off-by: Neo Xu <neo.xu1990@gmail.com>
2024-10-27 14:05:37 +08:00

30 lines
709 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
config EXAMPLES_LVGLDEMO_INPUT_DEVPATH
string "Touchscreen device path"
default "/dev/input0"
depends on INPUT_TOUCHSCREEN
---help---
The path to the touchscreen device. Default: "/dev/input0"
endif # EXAMPLES_LVGLDEMO