From db82f7a5e24bc5c06b8bc08d80a28e770ce96091 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Thu, 26 Nov 2020 16:25:34 +0100 Subject: [PATCH] drivers/isl29125: add module to Kconfig --- drivers/Kconfig | 1 + drivers/isl29125/Kconfig | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 drivers/isl29125/Kconfig diff --git a/drivers/Kconfig b/drivers/Kconfig index 8bd162db52..ec324fa75a 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -54,6 +54,7 @@ rsource "hts221/Kconfig" rsource "ina2xx/Kconfig" rsource "ina3221/Kconfig" rsource "isl29020/Kconfig" +rsource "isl29125/Kconfig" rsource "l3g4200d/Kconfig" rsource "lpsxxx/Kconfig" rsource "mag3110/Kconfig" diff --git a/drivers/isl29125/Kconfig b/drivers/isl29125/Kconfig new file mode 100644 index 0000000000..bd9e787b8e --- /dev/null +++ b/drivers/isl29125/Kconfig @@ -0,0 +1,16 @@ +# 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. +# + +config MODULE_ISL29125 + bool "ISL29125 RGB light sensor" + depends on HAS_PERIPH_GPIO + depends on HAS_PERIPH_GPIO_IRQ + depends on HAS_PERIPH_I2C + depends on TEST_KCONFIG + select MODULE_PERIPH_GPIO + select MODULE_PERIPH_GPIO_IRQ + select MODULE_PERIPH_I2C