mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-20 22:45:21 +00:00
The DMA API provides dma_slot field as a method to configure at runtime which peripheral DMA_request the DMA controller should select. This method allows to specify different selections for different stm32 DMA streams. So, all the Kconfig definitions, which by the way where fixing the same selection for all DMA streams, have been deleted. Signed-off-by: Armando Visconti <armando.visconti@st.com>
14 lines
261 B
Plaintext
14 lines
261 B
Plaintext
# Kconfig - DMA configuration options
|
|
#
|
|
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig DMA_STM32F4X
|
|
bool "Enable STM32F4x DMA driver"
|
|
depends on SOC_SERIES_STM32F4X
|
|
help
|
|
DMA driver for STM32F4x series SoCs.
|