mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
Default to /dev/input0, now it's configurable. Signed-off-by: Neo Xu <neo.xu1990@gmail.com>
30 lines
709 B
Text
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
|