:orphan: .. title:: CONFIG_DMA_STM32_SHARED_IRQS .. kconfig:: CONFIG_DMA_STM32_SHARED_IRQS CONFIG_DMA_STM32_SHARED_IRQS ############################ *(No prompt -- not directly user assignable.)* Type: ``bool`` Help ==== .. code-block:: none Enable shared IRQ support on devices where channels share 1 IRQ. Direct dependencies =================== (\ :kconfig:`SOC_SERIES_STM32F0X ` || \ :kconfig:`SOC_SERIES_STM32G0X ` || \ :kconfig:`SOC_SERIES_STM32L0X `) && \ :kconfig:`DMA_STM32 ` && \ :kconfig:`DMA ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/dma/Kconfig.stm32:43`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:68`` → ``/dma/Kconfig:23`` Menu path: (Top) → Device Drivers → DMA driver Configuration → Enable STM32 DMA driver .. code-block:: kconfig config DMA_STM32_SHARED_IRQS bool default y depends on (SOC_SERIES_STM32F0X || SOC_SERIES_STM32G0X || SOC_SERIES_STM32L0X) && DMA_STM32 && DMA help Enable shared IRQ support on devices where channels share 1 IRQ. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*