1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/si70xx/Kconfig
2021-01-21 11:22:31 +01:00

41 lines
769 B
Plaintext

# Copyright (c) 2021 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.
#
if TEST_KCONFIG
choice
bool "Si7006/13/20/21 temperature and humidity sensors"
optional
depends on HAS_PERIPH_I2C
depends on TEST_KCONFIG
config MODULE_SI7006
bool "SI7006"
select MODULE_SI70XX
config MODULE_SI7013
bool "SI7013"
select MODULE_SI70XX
config MODULE_SI7020
bool "SI7020"
select MODULE_SI70XX
config MODULE_SI7021
bool "SI7021"
select MODULE_SI70XX
endchoice
config MODULE_SI70XX
bool
depends on HAS_PERIPH_I2C
select MODULE_PERIPH_I2C
select MODULE_XTIMER
endif # TEST_KCONFIG