STM32F10x Standard Peripherals Library  3.5.0
DMA_data_transfer_direction

Defines

#define DMA_DIR_PeripheralDST   ((uint32_t)0x00000010)
#define DMA_DIR_PeripheralSRC   ((uint32_t)0x00000000)
#define IS_DMA_DIR(DIR)

Define Documentation

#define DMA_DIR_PeripheralDST   ((uint32_t)0x00000010)

Definition at line 112 of file stm32f10x_dma.h.

#define DMA_DIR_PeripheralSRC   ((uint32_t)0x00000000)

Definition at line 113 of file stm32f10x_dma.h.

#define IS_DMA_DIR (   DIR)
Value:
(((DIR) == DMA_DIR_PeripheralDST) || \
                         ((DIR) == DMA_DIR_PeripheralSRC))

Definition at line 114 of file stm32f10x_dma.h.