zephyr/drivers/comparator/Kconfig
Christian Galante a1aaa6b8f2 drivers: comparator: implement the silabs_acmp compatible driver
This implements the comparator driver for silabs acmp peripherals
using the silabs,acmp compatible binding.

Signed-off-by: Christian Galante <christian.galante@silabs.com>
2025-02-03 11:16:57 +01:00

29 lines
643 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.mcux_acmp"
rsource "Kconfig.nrf_comp"
rsource "Kconfig.nrf_lpcomp"
rsource "Kconfig.shell"
endif # COMPARATOR