From ddbf155cdb3e5060e33781b19eae4f3d222d0a66 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Thu, 7 Jan 2021 14:30:16 +0100 Subject: [PATCH] drivers/touch_dev: add module to Kconfig --- drivers/Kconfig | 1 + drivers/touch_dev/Kconfig | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 drivers/touch_dev/Kconfig diff --git a/drivers/Kconfig b/drivers/Kconfig index 8a5e802827..6803e2a067 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -25,6 +25,7 @@ rsource "disp_dev/Kconfig" rsource "dsp0401/Kconfig" rsource "hd44780/Kconfig" rsource "ili9341/Kconfig" +rsource "touch_dev/Kconfig" endmenu # Display Device Drivers menu "Miscellaneous Device Drivers" diff --git a/drivers/touch_dev/Kconfig b/drivers/touch_dev/Kconfig new file mode 100644 index 0000000000..b82955c3d3 --- /dev/null +++ b/drivers/touch_dev/Kconfig @@ -0,0 +1,12 @@ +# 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. +# + +config MODULE_TOUCH_DEV + bool "Touch device generic API" + depends on TEST_KCONFIG + help + This API is experimental and in an early state - expect changes!