30 lines
664 B
Plaintext
30 lines
664 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.it8xxx2"
|
|
source "drivers/kscan/Kconfig.xec"
|
|
source "drivers/kscan/Kconfig.sdl"
|
|
source "drivers/kscan/Kconfig.ht16k33"
|
|
|
|
module = KSCAN
|
|
module-str = kscan
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config KSCAN_INIT_PRIORITY
|
|
int "Keyboard scan driver init priority"
|
|
default 90
|
|
help
|
|
Keyboard scan device driver initialization priority.
|
|
|
|
endif # KSCAN
|