STM32F10x Standard Peripherals Library  3.5.0
DMA_memory_data_size

Defines

#define DMA_MemoryDataSize_Byte   ((uint32_t)0x00000000)
#define DMA_MemoryDataSize_HalfWord   ((uint32_t)0x00000400)
#define DMA_MemoryDataSize_Word   ((uint32_t)0x00000800)
#define IS_DMA_MEMORY_DATA_SIZE(SIZE)

Define Documentation

#define DMA_MemoryDataSize_Byte   ((uint32_t)0x00000000)

Definition at line 162 of file stm32f10x_dma.h.

#define DMA_MemoryDataSize_HalfWord   ((uint32_t)0x00000400)

Definition at line 163 of file stm32f10x_dma.h.

#define DMA_MemoryDataSize_Word   ((uint32_t)0x00000800)

Definition at line 164 of file stm32f10x_dma.h.

#define IS_DMA_MEMORY_DATA_SIZE (   SIZE)
Value:
(((SIZE) == DMA_MemoryDataSize_Byte) || \
                                       ((SIZE) == DMA_MemoryDataSize_HalfWord) || \
                                       ((SIZE) == DMA_MemoryDataSize_Word))

Definition at line 165 of file stm32f10x_dma.h.