zephyr/drivers/kscan/Kconfig
Fabio Baltieri 06236ba883 drivers: ht16k33: convert from kscan to input
Convert the ht16k33 to use the input subsystem. This can still be used
with the kscan API with the zephyr,kscan-input driver, or use the
input-keymap one to generate input codes instead.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
2024-05-06 14:53:36 +01:00

26 lines
515 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.input"
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