2022-12-21 17:10:57 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_LP503X
|
|
|
|
tristate "LP503X PWM LED example"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable the LP503X example
|
|
|
|
|
|
|
|
if EXAMPLES_LP503X
|
|
|
|
|
|
|
|
config EXAMPLES_LP503X_PROGNAME
|
|
|
|
string "Program name"
|
|
|
|
default "lp503x"
|
|
|
|
---help---
|
|
|
|
This is the name of the program that will be used when the NSH ELF
|
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config EXAMPLES_LP503X_DEVPATH
|
|
|
|
string "LP503X device path"
|
|
|
|
default "/dev/leddrv0"
|
2023-02-25 19:12:10 +01:00
|
|
|
|
2022-12-21 17:10:57 +01:00
|
|
|
config EXAMPLES_LP503X_PRIORITY
|
|
|
|
int "lp503x task priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config EXAMPLES_LP503X_STACKSIZE
|
|
|
|
int "lp503x stack size"
|
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2023-02-25 19:12:10 +01:00
|
|
|
|
2022-12-21 17:10:57 +01:00
|
|
|
endif
|