nuttx-apps/examples/leds/Kconfig
Xiang Xiao 8e9e49a2f8 examples/leds: Switch dependence from ARCH_HAVE_LEDS && !ARCH_LEDS to USERLED
application just use USERLED ioctl and shouldn't take care the implementation detail

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
Change-Id: I5b707d86db1bd96d85b6fed1d5a403584739f0d7
2020-06-06 01:03:20 +01:00

39 lines
785 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config EXAMPLES_LEDS
tristate "LED driver example"
default n
depends on USERLED
---help---
Enable the LED driversexample
if EXAMPLES_LEDS
config EXAMPLES_LEDS_PROGNAME
string "Program name"
default "leds"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config EXAMPLES_LEDS_PRIORITY
int "LED task priority"
default 100
config EXAMPLES_LEDS_STACKSIZE
int "LED stack size"
default DEFAULT_TASK_STACKSIZE
config EXAMPLES_LEDS_DEVPATH
string "LED device path"
default "/dev/userleds"
config EXAMPLES_LEDS_LEDSET
hex "Subset of LEDs to use"
default 0x0f
endif # EXAMPLES_LEDS