mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
61 lines
1.5 KiB
Plaintext
61 lines
1.5 KiB
Plaintext
# Copyright (c) 2020 HAW Hamburg
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
|
|
menuconfig MODULE_BME680
|
|
bool
|
|
prompt "BME680 Temperature/Humidity/Pressure/Gas sensor" if !(MODULE_SAUL_DEFAULT && HAVE_BME680)
|
|
default (MODULE_SAUL_DEFAULT && HAVE_BME680)
|
|
depends on TEST_KCONFIG
|
|
select PACKAGE_DRIVER_BME680
|
|
select MODULE_ZTIMER if MODULE_SAUL
|
|
select MODULE_ZTIMER_MSEC if MODULE_SAUL
|
|
|
|
if MODULE_BME680
|
|
|
|
choice BME680_VARIANT
|
|
bool "Device interface"
|
|
default MODULE_BME680_I2C if HAVE_BME680_I2C
|
|
default MODULE_BME680_SPI if HAVE_BME680_SPI
|
|
help
|
|
The device can be connected via different buses, select one.
|
|
|
|
config MODULE_BME680_I2C
|
|
bool "I2C"
|
|
depends on HAS_PERIPH_I2C
|
|
select MODULE_PERIPH_I2C
|
|
|
|
config MODULE_BME680_SPI
|
|
bool "SPI"
|
|
depends on HAS_PERIPH_SPI
|
|
depends on HAS_PERIPH_GPIO
|
|
select MODULE_PERIPH_SPI
|
|
select MODULE_PERIPH_GPIO
|
|
|
|
endchoice
|
|
|
|
config MODULE_BME680_FP
|
|
bool "Enable floating point"
|
|
|
|
endif # MODULE_BME680
|
|
|
|
config HAVE_BME680
|
|
bool
|
|
help
|
|
Indicates that the BME680 Temperature/Humidity/Pressure/Gas sensor is present.
|
|
|
|
config HAVE_BME680_I2C
|
|
bool
|
|
select HAVE_BME680
|
|
help
|
|
Indicates that the BME680 Temperature/Humidity/Pressure/Gas sensor is connected with i2c.
|
|
|
|
config HAVE_BME680_SPI
|
|
bool
|
|
select HAVE_BME680
|
|
help
|
|
Indicates that the BME680 Temperature/Humidity/Pressure/Gas sensor is connected with spi.
|