:orphan: .. title:: CONFIG_ADC_STM32_SHARED_IRQS .. kconfig:: CONFIG_ADC_STM32_SHARED_IRQS CONFIG_ADC_STM32_SHARED_IRQS ############################ *STM32 ADC shared interrupts* Type: ``bool`` Help ==== .. code-block:: none Enable the use of shared interrupts for families that only have a single interrupt for all ADC's Direct dependencies =================== \ :kconfig:`ADC_STM32 ` && (\ :kconfig:`SOC_SERIES_STM32F2X ` || \ :kconfig:`SOC_SERIES_STM32F4X ` || \ :kconfig:`SOC_SERIES_STM32F7X `) && \ :kconfig:`ADC ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/adc/Kconfig.stm32:17`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:50`` → ``/adc/Kconfig:57`` Menu path: (Top) → Device Drivers → ADC drivers .. code-block:: kconfig config ADC_STM32_SHARED_IRQS bool "STM32 ADC shared interrupts" default y depends on ADC_STM32 && (SOC_SERIES_STM32F2X || SOC_SERIES_STM32F4X || SOC_SERIES_STM32F7X) && ADC help Enable the use of shared interrupts for families that only have a single interrupt for all ADC's *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*