Add analog comparator driver for ITE it51xxx chip. Signed-off-by: Yunshao Chiang <Yunshao.Chiang@ite.com.tw>
31 lines
703 B
Plaintext
31 lines
703 B
Plaintext
# Copyright (c) 2024 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig COMPARATOR
|
|
bool "Comparator drivers"
|
|
help
|
|
Enable comparator driver configuration.
|
|
|
|
if COMPARATOR
|
|
|
|
module = COMPARATOR
|
|
module-str = comparator
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config COMPARATOR_INIT_PRIORITY
|
|
int "COMPARATOR init priority"
|
|
default KERNEL_INIT_PRIORITY_DEVICE
|
|
help
|
|
Comparator device driver initialization priority.
|
|
|
|
rsource "Kconfig.fake_comp"
|
|
rsource "Kconfig.silabs_acmp"
|
|
rsource "Kconfig.it51xxx_vcmp"
|
|
rsource "Kconfig.mcux_acmp"
|
|
rsource "Kconfig.nrf_comp"
|
|
rsource "Kconfig.nrf_lpcomp"
|
|
rsource "Kconfig.shell"
|
|
rsource "Kconfig.renesas_ra"
|
|
|
|
endif # COMPARATOR
|