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
|
2019-10-01 06:05:42 +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-01-21 04:27:19 +08:00
|
|
|
source "drivers/kscan/Kconfig.ft5336"
|
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"
|
2020-02-03 22:07:06 +08:00
|
|
|
source "drivers/kscan/Kconfig.sdl"
|
2021-06-15 04:58:56 +08:00
|
|
|
source "drivers/kscan/Kconfig.ht16k33"
|
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
|