From d1127bbb949d9d9c309268ad4865a2c3e2f6de44 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Wed, 11 Nov 2020 10:38:58 +0100 Subject: [PATCH] drivers/apa102: add module to Kconfig --- drivers/Kconfig | 1 + drivers/apa102/Kconfig | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 drivers/apa102/Kconfig diff --git a/drivers/Kconfig b/drivers/Kconfig index f315d37111..bd05769dcd 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -8,6 +8,7 @@ menu "Drivers" menu "Actuator Device Drivers" rsource "aip31068/Kconfig" +rsource "apa102/Kconfig" rsource "motor_driver/Kconfig" endmenu # Actuator Device Drivers diff --git a/drivers/apa102/Kconfig b/drivers/apa102/Kconfig new file mode 100644 index 0000000000..83271f64b1 --- /dev/null +++ b/drivers/apa102/Kconfig @@ -0,0 +1,12 @@ +# 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_APA102 + bool "APA102 RGB LED" + depends on HAS_PERIPH_GPIO + depends on TEST_KCONFIG + select MODULE_PERIPH_GPIO