mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 06:02:46 +00:00
Convert the CAP1203 driver to the input subsystem, add to build_all tests. Signed-off-by: Fabian Blatz <fabianblatz@gmail.com>
13 lines
467 B
CMake
13 lines
467 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/kscan.h)
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_KSCAN_ITE_IT8XXX2 kscan_ite_it8xxx2.c)
|
|
zephyr_library_sources_ifdef(CONFIG_KSCAN_XEC kscan_mchp_xec.c)
|
|
zephyr_library_sources_ifdef(CONFIG_KSCAN_HT16K33 kscan_ht16k33.c)
|
|
zephyr_library_sources_ifdef(CONFIG_KSCAN_INPUT kscan_input.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_USERSPACE kscan_handlers.c)
|