File tree Expand file tree Collapse file tree 4 files changed +707
-0
lines changed Expand file tree Collapse file tree 4 files changed +707
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ zephyr_library_sources_ifdef(CONFIG_ADC_GECKO_ADC adc_gecko.c)
4848zephyr_library_sources_ifdef(CONFIG_ADC_SILABS_IADC adc_silabs_iadc.c)
4949zephyr_library_sources_ifdef(CONFIG_ADC_SILABS_SIWX91X adc_silabs_siwx91x.c)
5050zephyr_library_sources_ifdef(CONFIG_ADC_INFINEON_CAT1 adc_ifx_cat1.c)
51+ zephyr_library_sources_ifdef(CONFIG_ADC_INFINEON_AUTANALOG_SAR adc_ifx_autanalog_sar.c)
5152zephyr_library_sources_ifdef(CONFIG_ADC_SMARTBOND_GPADC adc_smartbond_gpadc.c)
5253zephyr_library_sources_ifdef(CONFIG_ADC_SMARTBOND_SDADC adc_smartbond_sdadc.c)
5354zephyr_library_sources_ifdef(CONFIG_ADC_TLA202X adc_tla202x.c)
Original file line number Diff line number Diff line change @@ -136,6 +136,8 @@ source "drivers/adc/Kconfig.silabs"
136136
137137source "drivers/adc/Kconfig.ifx_cat1"
138138
139+ source "drivers/adc/Kconfig.ifx_autanalog_sar"
140+
139141source "drivers/adc/Kconfig.smartbond"
140142
141143source "drivers/adc/Kconfig.tla202x"
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2025 Infineon Technologies AG,
2+ # or an affiliate of Infineon Technologies AG.
3+ #
4+ # SPDX-License-Identifier: Apache-2.0
5+
6+ # Infineon AutAnalog SAR ADC configuration options
7+
8+ config ADC_INFINEON_AUTANALOG_SAR
9+ bool "Infineon AutAnalog SAR ADC driver"
10+ default y
11+ depends on DT_HAS_INFINEON_AUTANALOG_SAR_ADC_ENABLED
12+ select USE_INFINEON_AUTANALOG_SAR_ADC
13+ select ADC_CONFIGURABLE_INPUTS
14+ help
15+ This option enables the ADC driver for Infineon MCUs using AutAnalog SAR ADC.
You can’t perform that action at this time.
0 commit comments