mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-18 00:11:20 +08:00

fix amg88xx kconfig EXAMPLES_AMG88XX_STACKSIZE option name add depends on SENSORS_AMG88XX to hide the example is the driver is not enabled
26 lines
524 B
Plaintext
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
|