mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-06 10:35:43 +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>
27 lines
551 B
Plaintext
27 lines
551 B
Plaintext
# Keyboard scan configuration options
|
|
|
|
# Copyright (c) 2019 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig KSCAN
|
|
bool "Keyboard Scan Drivers"
|
|
help
|
|
Include Keyboard scan drivers in system config.
|
|
|
|
if KSCAN
|
|
|
|
source "drivers/kscan/Kconfig.ft5336"
|
|
source "drivers/kscan/Kconfig.xec"
|
|
|
|
module = KSCAN
|
|
module-str = kscan
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config KSCAN_INIT_PRIORITY
|
|
int "Keyboard scan driver init priority"
|
|
default 40
|
|
help
|
|
Keyboard scan device driver initialization priority.
|
|
|
|
endif # KSCAN
|