mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-04 16:32:55 +00:00
Fix Kconfig help sections and add spacing to be consistent across all Kconfig file. In a previous run we missed a few. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
69 lines
1.8 KiB
Plaintext
69 lines
1.8 KiB
Plaintext
# Kconfig - DMA configuration options
|
|
#
|
|
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig DMA_STM32F4X
|
|
bool "Enable STM32F4x DMA driver"
|
|
default n
|
|
depends on SOC_SERIES_STM32F4X
|
|
help
|
|
DMA driver for STM32F4x series SoCs.
|
|
|
|
config DMA_0_RX_SUB_CHANNEL_ID
|
|
int "Requested RX sub-channel ID"
|
|
default 0
|
|
depends on DMA_STM32F4X
|
|
help
|
|
This configuration is required to choose a valid sub-channel
|
|
for communication from a peripheral/device. Not required
|
|
for memory to memory comms.
|
|
|
|
config DMA_0_TX_SUB_CHANNEL_ID
|
|
int "Requested TX sub-channel ID"
|
|
default 0
|
|
depends on DMA_STM32F4X
|
|
help
|
|
This configuration is required to choose a valid sub-channel
|
|
for communication to a peripheral/device. Not required
|
|
for memory to memory comms.
|
|
|
|
config DMA_1_RX_SUB_CHANNEL_ID
|
|
int "Requested RX sub-channel ID"
|
|
default 0
|
|
depends on DMA_STM32F4X
|
|
help
|
|
This configuration is required to choose a valid sub-channel
|
|
for communication from a peripheral/device. Not required
|
|
for memory to memory comms.
|
|
|
|
config DMA_1_TX_SUB_CHANNEL_ID
|
|
int "Requested TX sub-channel ID"
|
|
default 0
|
|
depends on DMA_STM32F4X
|
|
help
|
|
This configuration is required to choose a valid sub-channel
|
|
for communication to a peripheral/device. Not required
|
|
for memory to memory comms.
|
|
|
|
config DMA_2_RX_SUB_CHANNEL_ID
|
|
int "Requested RX sub-channel ID"
|
|
default 0
|
|
depends on DMA_STM32F4X
|
|
help
|
|
This configuration is required to choose a valid sub-channel
|
|
for communication from a peripheral/device. Not required
|
|
for memory to memory comms.
|
|
|
|
config DMA_2_TX_SUB_CHANNEL_ID
|
|
int "Requested TX sub-channel ID"
|
|
default 0
|
|
depends on DMA_STM32F4X
|
|
help
|
|
This configuration is required to choose a valid sub-channel
|
|
for communication to a peripheral/device. Not required
|
|
for memory to memory comms.
|