File tree Expand file tree Collapse file tree 4 files changed +591
-0
lines changed Expand file tree Collapse file tree 4 files changed +591
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ zephyr_library_sources_ifdef(CONFIG_USERSPACE comparator_handlers.c)
99zephyr_library_sources_ifdef(CONFIG_COMPARATOR_SILABS_ACMP comparator_silabs_acmp.c)
1010zephyr_library_sources_ifdef(CONFIG_COMPARATOR_FAKE_COMP comparator_fake_comp.c)
1111zephyr_library_sources_ifdef(CONFIG_COMPARATOR_IT51XXX_VCMP comparator_it51xxx_vcmp.c)
12+ zephyr_library_sources_ifdef(CONFIG_COMPARATOR_MCHP_AC_G1 comparator_mchp_ac_g1.c)
1213zephyr_library_sources_ifdef(CONFIG_COMPARATOR_MCUX_ACMP comparator_mcux_acmp.c)
1314zephyr_library_sources_ifdef(CONFIG_COMPARATOR_NXP_CMP comparator_nxp_cmp.c)
1415zephyr_library_sources_ifdef(CONFIG_COMPARATOR_NRF_COMP comparator_nrf_comp.c)
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ config COMPARATOR_INIT_PRIORITY
2121rsource "Kconfig.fake_comp"
2222rsource "Kconfig.silabs_acmp"
2323rsource "Kconfig.it51xxx_vcmp"
24+ rsource "Kconfig.mchp"
2425rsource "Kconfig.mcux_acmp"
2526rsource "Kconfig.nxp_cmp"
2627rsource "Kconfig.nrf_comp"
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2025 Microchip Technology Inc.
2+ # SPDX-License-Identifier: Apache-2.0
3+
4+ config COMPARATOR_MCHP_AC_G1
5+ bool "Microchip Comparator Driver for AC G1 Peripherals"
6+ default y
7+ depends on DT_HAS_MICROCHIP_AC_G1_COMPARATOR_ENABLED
8+ select PINCTRL
9+ help
10+ Enable support for the Microchip Comparator driver
11+ on G1 AC peripherals.
You can’t perform that action at this time.
0 commit comments