4739b18cb1
The program is an example on how to poll the sensor for data when all its sub-sensors are enabled. Signed-off-by: simonatoaca <simona.alexandra2000@gmail.com>
31 lines
640 B
Plaintext
31 lines
640 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_BME680
|
|
tristate "BME680 sensor example"
|
|
default n
|
|
depends on SENSORS_BME680
|
|
---help---
|
|
Enable the BME680 example
|
|
|
|
if EXAMPLES_BME680
|
|
|
|
config EXAMPLES_BME680_PROGNAME
|
|
string "Program name"
|
|
default "bme680"
|
|
---help---
|
|
This is the name of the program that will be used when the NSH ELF
|
|
program is installed.
|
|
|
|
config EXAMPLES_BME680_PRIORITY
|
|
int "BME680 task priority"
|
|
default 100
|
|
|
|
config EXAMPLES_BME680_STACKSIZE
|
|
int "BME680 stack size"
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
endif
|