Files
nuttx-apps/examples/amg88xx/Kconfig
Luchian Mihai 5d7ff307c2 examples/amg88xx: fix kconfig
fix amg88xx kconfig EXAMPLES_AMG88XX_STACKSIZE option name

add depends on SENSORS_AMG88XX to hide the example is the driver is not enabled
2025-02-05 10:51:56 +08:00

26 lines
524 B
Plaintext

config EXAMPLES_AMG88XX
tristate "AMG88xx sensor example"
default n
depends on SENSORS_AMG88XX
---help---
Enable the AMG88xx sensor example
if EXAMPLES_AMG88XX
config EXAMPLES_AMG88XX_PROGNAME
string "Program name"
default "amg88xx"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config EXAMPLES_AMG88XX_PRIORITY
int "AMG88xx task priority"
default 100
config EXAMPLES_AMG88XX_STACKSIZE
int "AMG88xx stack size"
default DEFAULT_TASK_STACKSIZE
endif