diff --git a/drivers/Kconfig b/drivers/Kconfig index a168980c85..7e7fbe4026 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -86,6 +86,7 @@ rsource "pcd8544/Kconfig" rsource "ph_oem/Kconfig" rsource "pir/Kconfig" rsource "pulse_counter/Kconfig" +rsource "qmc5883l/Kconfig" rsource "sps30/Kconfig" rsource "tcs37727/Kconfig" rsource "tmp00x/Kconfig" diff --git a/drivers/qmc5883l/Kconfig b/drivers/qmc5883l/Kconfig new file mode 100644 index 0000000000..b37c7a7d17 --- /dev/null +++ b/drivers/qmc5883l/Kconfig @@ -0,0 +1,20 @@ +# 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. +# + +menuconfig MODULE_QMC5883L + bool "QMC5883L 3-Axis Digital Magnetic sensor" + depends on HAS_PERIPH_I2C + depends on TEST_KCONFIG + select MODULE_PERIPH_I2C + +config MODULE_QMC5883L_INT + bool "Interrupt support" + depends on HAS_PERIPH_GPIO + depends on HAS_PERIPH_GPIO_IRQ + depends on MODULE_QMC5883L + select MODULE_PERIPH_GPIO + select MODULE_PERIPH_GPIO_IRQ