#
# 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
