1# Copyright (c) 2024 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig COMPARATOR
5	bool "Comparator drivers"
6	help
7	  Enable comparator driver configuration.
8
9if COMPARATOR
10
11module = COMPARATOR
12module-str = comparator
13source "subsys/logging/Kconfig.template.log_config"
14
15config COMPARATOR_INIT_PRIORITY
16	int "COMPARATOR init priority"
17	default KERNEL_INIT_PRIORITY_DEVICE
18	help
19	  Comparator device driver initialization priority.
20
21rsource "Kconfig.fake_comp"
22rsource "Kconfig.mcux_acmp"
23rsource "Kconfig.nrf_comp"
24rsource "Kconfig.nrf_lpcomp"
25rsource "Kconfig.shell"
26
27endif # COMPARATOR
28