mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 06:15:20 +00:00
Introduces a new ft5336 touch panel driver for the keyboard scan (kscan) interface. The driver currently uses a timer to periodically poll touch data in the system work queue, but later it can be enhanced to use a gpio interrupt instead of a timer. Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
9 lines
256 B
CMake
9 lines
256 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_KSCAN_FT5336 kscan_ft5336.c)
|
|
zephyr_library_sources_ifdef(CONFIG_KSCAN_XEC kscan_mchp_xec.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_USERSPACE kscan_handlers.c)
|