2019-11-01 20:45:29 +08:00
|
|
|
# Keyboard scan configuration options
|
2019-10-01 02:45:24 +08:00
|
|
|
|
|
|
|
# Copyright (c) 2019 Intel Corporation
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig KSCAN
|
2023-03-27 20:55:23 +08:00
|
|
|
bool "Keyboard scan drivers"
|
2019-10-01 02:45:24 +08:00
|
|
|
help
|
|
|
|
Include Keyboard scan drivers in system config.
|
|
|
|
|
|
|
|
if KSCAN
|
|
|
|
|
2020-11-10 14:49:52 +08:00
|
|
|
source "drivers/kscan/Kconfig.it8xxx2"
|
2019-10-01 02:45:24 +08:00
|
|
|
source "drivers/kscan/Kconfig.xec"
|
2021-06-15 04:58:56 +08:00
|
|
|
source "drivers/kscan/Kconfig.ht16k33"
|
2022-05-09 17:45:40 +08:00
|
|
|
source "drivers/kscan/Kconfig.cap1203"
|
2023-02-01 03:01:27 +08:00
|
|
|
source "drivers/kscan/Kconfig.input"
|
2019-10-01 02:45:24 +08:00
|
|
|
|
|
|
|
module = KSCAN
|
|
|
|
module-str = kscan
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
|
|
|
config KSCAN_INIT_PRIORITY
|
|
|
|
int "Keyboard scan driver init priority"
|
2021-06-17 01:20:26 +08:00
|
|
|
default 90
|
2019-10-01 02:45:24 +08:00
|
|
|
help
|
|
|
|
Keyboard scan device driver initialization priority.
|
|
|
|
|
2019-11-01 17:24:07 +08:00
|
|
|
endif # KSCAN
|