mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
25 lines
778 B
Plaintext
25 lines
778 B
Plaintext
# Copyright (c) 2021 Inria
|
|
#
|
|
# 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_FT5X06
|
|
bool "FT5X06 touch panel driver"
|
|
depends on TEST_KCONFIG
|
|
depends on HAS_PERIPH_GPIO_IRQ
|
|
depends on HAS_PERIPH_I2C
|
|
select MODULE_PERIPH_GPIO_IRQ
|
|
select MODULE_PERIPH_I2C
|
|
select MODULE_ZTIMER
|
|
select MODULE_ZTIMER_MSEC
|
|
help
|
|
This driver is compatible with the following controllers: ft5x06, ft5606, ft5x16, ft6x06,
|
|
ft6x36, ft5x06i, ft5336, ft3316, ft5436i, ft5336i and ft5x46.
|
|
|
|
config HAVE_FT5X06
|
|
bool
|
|
select MODULE_FT5X06 if MODULE_TOUCH_DEV
|
|
help
|
|
Indicates that an FT5X06 touch panel is present.
|