30 #ifndef __STM32F4xx_DMA_H
31 #define __STM32F4xx_DMA_H
38 #include "stm32f4xx.h"
118 #define IS_DMA_ALL_PERIPH(PERIPH) (((PERIPH) == DMA1_Stream0) || \
119 ((PERIPH) == DMA1_Stream1) || \
120 ((PERIPH) == DMA1_Stream2) || \
121 ((PERIPH) == DMA1_Stream3) || \
122 ((PERIPH) == DMA1_Stream4) || \
123 ((PERIPH) == DMA1_Stream5) || \
124 ((PERIPH) == DMA1_Stream6) || \
125 ((PERIPH) == DMA1_Stream7) || \
126 ((PERIPH) == DMA2_Stream0) || \
127 ((PERIPH) == DMA2_Stream1) || \
128 ((PERIPH) == DMA2_Stream2) || \
129 ((PERIPH) == DMA2_Stream3) || \
130 ((PERIPH) == DMA2_Stream4) || \
131 ((PERIPH) == DMA2_Stream5) || \
132 ((PERIPH) == DMA2_Stream6) || \
133 ((PERIPH) == DMA2_Stream7))
135 #define IS_DMA_ALL_CONTROLLER(CONTROLLER) (((CONTROLLER) == DMA1) || \
136 ((CONTROLLER) == DMA2))
141 #define DMA_Channel_0 ((uint32_t)0x00000000)
142 #define DMA_Channel_1 ((uint32_t)0x02000000)
143 #define DMA_Channel_2 ((uint32_t)0x04000000)
144 #define DMA_Channel_3 ((uint32_t)0x06000000)
145 #define DMA_Channel_4 ((uint32_t)0x08000000)
146 #define DMA_Channel_5 ((uint32_t)0x0A000000)
147 #define DMA_Channel_6 ((uint32_t)0x0C000000)
148 #define DMA_Channel_7 ((uint32_t)0x0E000000)
150 #define IS_DMA_CHANNEL(CHANNEL) (((CHANNEL) == DMA_Channel_0) || \
151 ((CHANNEL) == DMA_Channel_1) || \
152 ((CHANNEL) == DMA_Channel_2) || \
153 ((CHANNEL) == DMA_Channel_3) || \
154 ((CHANNEL) == DMA_Channel_4) || \
155 ((CHANNEL) == DMA_Channel_5) || \
156 ((CHANNEL) == DMA_Channel_6) || \
157 ((CHANNEL) == DMA_Channel_7))
166 #define DMA_DIR_PeripheralToMemory ((uint32_t)0x00000000)
167 #define DMA_DIR_MemoryToPeripheral ((uint32_t)0x00000040)
168 #define DMA_DIR_MemoryToMemory ((uint32_t)0x00000080)
170 #define IS_DMA_DIRECTION(DIRECTION) (((DIRECTION) == DMA_DIR_PeripheralToMemory ) || \
171 ((DIRECTION) == DMA_DIR_MemoryToPeripheral) || \
172 ((DIRECTION) == DMA_DIR_MemoryToMemory))
181 #define IS_DMA_BUFFER_SIZE(SIZE) (((SIZE) >= 0x1) && ((SIZE) < 0x10000))
190 #define DMA_PeripheralInc_Enable ((uint32_t)0x00000200)
191 #define DMA_PeripheralInc_Disable ((uint32_t)0x00000000)
193 #define IS_DMA_PERIPHERAL_INC_STATE(STATE) (((STATE) == DMA_PeripheralInc_Enable) || \
194 ((STATE) == DMA_PeripheralInc_Disable))
203 #define DMA_MemoryInc_Enable ((uint32_t)0x00000400)
204 #define DMA_MemoryInc_Disable ((uint32_t)0x00000000)
206 #define IS_DMA_MEMORY_INC_STATE(STATE) (((STATE) == DMA_MemoryInc_Enable) || \
207 ((STATE) == DMA_MemoryInc_Disable))
216 #define DMA_PeripheralDataSize_Byte ((uint32_t)0x00000000)
217 #define DMA_PeripheralDataSize_HalfWord ((uint32_t)0x00000800)
218 #define DMA_PeripheralDataSize_Word ((uint32_t)0x00001000)
220 #define IS_DMA_PERIPHERAL_DATA_SIZE(SIZE) (((SIZE) == DMA_PeripheralDataSize_Byte) || \
221 ((SIZE) == DMA_PeripheralDataSize_HalfWord) || \
222 ((SIZE) == DMA_PeripheralDataSize_Word))
231 #define DMA_MemoryDataSize_Byte ((uint32_t)0x00000000)
232 #define DMA_MemoryDataSize_HalfWord ((uint32_t)0x00002000)
233 #define DMA_MemoryDataSize_Word ((uint32_t)0x00004000)
235 #define IS_DMA_MEMORY_DATA_SIZE(SIZE) (((SIZE) == DMA_MemoryDataSize_Byte) || \
236 ((SIZE) == DMA_MemoryDataSize_HalfWord) || \
237 ((SIZE) == DMA_MemoryDataSize_Word ))
246 #define DMA_Mode_Normal ((uint32_t)0x00000000)
247 #define DMA_Mode_Circular ((uint32_t)0x00000100)
249 #define IS_DMA_MODE(MODE) (((MODE) == DMA_Mode_Normal ) || \
250 ((MODE) == DMA_Mode_Circular))
259 #define DMA_Priority_Low ((uint32_t)0x00000000)
260 #define DMA_Priority_Medium ((uint32_t)0x00010000)
261 #define DMA_Priority_High ((uint32_t)0x00020000)
262 #define DMA_Priority_VeryHigh ((uint32_t)0x00030000)
264 #define IS_DMA_PRIORITY(PRIORITY) (((PRIORITY) == DMA_Priority_Low ) || \
265 ((PRIORITY) == DMA_Priority_Medium) || \
266 ((PRIORITY) == DMA_Priority_High) || \
267 ((PRIORITY) == DMA_Priority_VeryHigh))
276 #define DMA_FIFOMode_Disable ((uint32_t)0x00000000)
277 #define DMA_FIFOMode_Enable ((uint32_t)0x00000004)
279 #define IS_DMA_FIFO_MODE_STATE(STATE) (((STATE) == DMA_FIFOMode_Disable ) || \
280 ((STATE) == DMA_FIFOMode_Enable))
289 #define DMA_FIFOThreshold_1QuarterFull ((uint32_t)0x00000000)
290 #define DMA_FIFOThreshold_HalfFull ((uint32_t)0x00000001)
291 #define DMA_FIFOThreshold_3QuartersFull ((uint32_t)0x00000002)
292 #define DMA_FIFOThreshold_Full ((uint32_t)0x00000003)
294 #define IS_DMA_FIFO_THRESHOLD(THRESHOLD) (((THRESHOLD) == DMA_FIFOThreshold_1QuarterFull ) || \
295 ((THRESHOLD) == DMA_FIFOThreshold_HalfFull) || \
296 ((THRESHOLD) == DMA_FIFOThreshold_3QuartersFull) || \
297 ((THRESHOLD) == DMA_FIFOThreshold_Full))
306 #define DMA_MemoryBurst_Single ((uint32_t)0x00000000)
307 #define DMA_MemoryBurst_INC4 ((uint32_t)0x00800000)
308 #define DMA_MemoryBurst_INC8 ((uint32_t)0x01000000)
309 #define DMA_MemoryBurst_INC16 ((uint32_t)0x01800000)
311 #define IS_DMA_MEMORY_BURST(BURST) (((BURST) == DMA_MemoryBurst_Single) || \
312 ((BURST) == DMA_MemoryBurst_INC4) || \
313 ((BURST) == DMA_MemoryBurst_INC8) || \
314 ((BURST) == DMA_MemoryBurst_INC16))
323 #define DMA_PeripheralBurst_Single ((uint32_t)0x00000000)
324 #define DMA_PeripheralBurst_INC4 ((uint32_t)0x00200000)
325 #define DMA_PeripheralBurst_INC8 ((uint32_t)0x00400000)
326 #define DMA_PeripheralBurst_INC16 ((uint32_t)0x00600000)
328 #define IS_DMA_PERIPHERAL_BURST(BURST) (((BURST) == DMA_PeripheralBurst_Single) || \
329 ((BURST) == DMA_PeripheralBurst_INC4) || \
330 ((BURST) == DMA_PeripheralBurst_INC8) || \
331 ((BURST) == DMA_PeripheralBurst_INC16))
340 #define DMA_FIFOStatus_Less1QuarterFull ((uint32_t)0x00000000 << 3)
341 #define DMA_FIFOStatus_1QuarterFull ((uint32_t)0x00000001 << 3)
342 #define DMA_FIFOStatus_HalfFull ((uint32_t)0x00000002 << 3)
343 #define DMA_FIFOStatus_3QuartersFull ((uint32_t)0x00000003 << 3)
344 #define DMA_FIFOStatus_Empty ((uint32_t)0x00000004 << 3)
345 #define DMA_FIFOStatus_Full ((uint32_t)0x00000005 << 3)
347 #define IS_DMA_FIFO_STATUS(STATUS) (((STATUS) == DMA_FIFOStatus_Less1QuarterFull ) || \
348 ((STATUS) == DMA_FIFOStatus_HalfFull) || \
349 ((STATUS) == DMA_FIFOStatus_1QuarterFull) || \
350 ((STATUS) == DMA_FIFOStatus_3QuartersFull) || \
351 ((STATUS) == DMA_FIFOStatus_Full) || \
352 ((STATUS) == DMA_FIFOStatus_Empty))
360 #define DMA_FLAG_FEIF0 ((uint32_t)0x10800001)
361 #define DMA_FLAG_DMEIF0 ((uint32_t)0x10800004)
362 #define DMA_FLAG_TEIF0 ((uint32_t)0x10000008)
363 #define DMA_FLAG_HTIF0 ((uint32_t)0x10000010)
364 #define DMA_FLAG_TCIF0 ((uint32_t)0x10000020)
365 #define DMA_FLAG_FEIF1 ((uint32_t)0x10000040)
366 #define DMA_FLAG_DMEIF1 ((uint32_t)0x10000100)
367 #define DMA_FLAG_TEIF1 ((uint32_t)0x10000200)
368 #define DMA_FLAG_HTIF1 ((uint32_t)0x10000400)
369 #define DMA_FLAG_TCIF1 ((uint32_t)0x10000800)
370 #define DMA_FLAG_FEIF2 ((uint32_t)0x10010000)
371 #define DMA_FLAG_DMEIF2 ((uint32_t)0x10040000)
372 #define DMA_FLAG_TEIF2 ((uint32_t)0x10080000)
373 #define DMA_FLAG_HTIF2 ((uint32_t)0x10100000)
374 #define DMA_FLAG_TCIF2 ((uint32_t)0x10200000)
375 #define DMA_FLAG_FEIF3 ((uint32_t)0x10400000)
376 #define DMA_FLAG_DMEIF3 ((uint32_t)0x11000000)
377 #define DMA_FLAG_TEIF3 ((uint32_t)0x12000000)
378 #define DMA_FLAG_HTIF3 ((uint32_t)0x14000000)
379 #define DMA_FLAG_TCIF3 ((uint32_t)0x18000000)
380 #define DMA_FLAG_FEIF4 ((uint32_t)0x20000001)
381 #define DMA_FLAG_DMEIF4 ((uint32_t)0x20000004)
382 #define DMA_FLAG_TEIF4 ((uint32_t)0x20000008)
383 #define DMA_FLAG_HTIF4 ((uint32_t)0x20000010)
384 #define DMA_FLAG_TCIF4 ((uint32_t)0x20000020)
385 #define DMA_FLAG_FEIF5 ((uint32_t)0x20000040)
386 #define DMA_FLAG_DMEIF5 ((uint32_t)0x20000100)
387 #define DMA_FLAG_TEIF5 ((uint32_t)0x20000200)
388 #define DMA_FLAG_HTIF5 ((uint32_t)0x20000400)
389 #define DMA_FLAG_TCIF5 ((uint32_t)0x20000800)
390 #define DMA_FLAG_FEIF6 ((uint32_t)0x20010000)
391 #define DMA_FLAG_DMEIF6 ((uint32_t)0x20040000)
392 #define DMA_FLAG_TEIF6 ((uint32_t)0x20080000)
393 #define DMA_FLAG_HTIF6 ((uint32_t)0x20100000)
394 #define DMA_FLAG_TCIF6 ((uint32_t)0x20200000)
395 #define DMA_FLAG_FEIF7 ((uint32_t)0x20400000)
396 #define DMA_FLAG_DMEIF7 ((uint32_t)0x21000000)
397 #define DMA_FLAG_TEIF7 ((uint32_t)0x22000000)
398 #define DMA_FLAG_HTIF7 ((uint32_t)0x24000000)
399 #define DMA_FLAG_TCIF7 ((uint32_t)0x28000000)
401 #define IS_DMA_CLEAR_FLAG(FLAG) ((((FLAG) & 0x30000000) != 0x30000000) && (((FLAG) & 0x30000000) != 0) && \
402 (((FLAG) & 0xC002F082) == 0x00) && ((FLAG) != 0x00))
404 #define IS_DMA_GET_FLAG(FLAG) (((FLAG) == DMA_FLAG_TCIF0) || ((FLAG) == DMA_FLAG_HTIF0) || \
405 ((FLAG) == DMA_FLAG_TEIF0) || ((FLAG) == DMA_FLAG_DMEIF0) || \
406 ((FLAG) == DMA_FLAG_FEIF0) || ((FLAG) == DMA_FLAG_TCIF1) || \
407 ((FLAG) == DMA_FLAG_HTIF1) || ((FLAG) == DMA_FLAG_TEIF1) || \
408 ((FLAG) == DMA_FLAG_DMEIF1) || ((FLAG) == DMA_FLAG_FEIF1) || \
409 ((FLAG) == DMA_FLAG_TCIF2) || ((FLAG) == DMA_FLAG_HTIF2) || \
410 ((FLAG) == DMA_FLAG_TEIF2) || ((FLAG) == DMA_FLAG_DMEIF2) || \
411 ((FLAG) == DMA_FLAG_FEIF2) || ((FLAG) == DMA_FLAG_TCIF3) || \
412 ((FLAG) == DMA_FLAG_HTIF3) || ((FLAG) == DMA_FLAG_TEIF3) || \
413 ((FLAG) == DMA_FLAG_DMEIF3) || ((FLAG) == DMA_FLAG_FEIF3) || \
414 ((FLAG) == DMA_FLAG_TCIF4) || ((FLAG) == DMA_FLAG_HTIF4) || \
415 ((FLAG) == DMA_FLAG_TEIF4) || ((FLAG) == DMA_FLAG_DMEIF4) || \
416 ((FLAG) == DMA_FLAG_FEIF4) || ((FLAG) == DMA_FLAG_TCIF5) || \
417 ((FLAG) == DMA_FLAG_HTIF5) || ((FLAG) == DMA_FLAG_TEIF5) || \
418 ((FLAG) == DMA_FLAG_DMEIF5) || ((FLAG) == DMA_FLAG_FEIF5) || \
419 ((FLAG) == DMA_FLAG_TCIF6) || ((FLAG) == DMA_FLAG_HTIF6) || \
420 ((FLAG) == DMA_FLAG_TEIF6) || ((FLAG) == DMA_FLAG_DMEIF6) || \
421 ((FLAG) == DMA_FLAG_FEIF6) || ((FLAG) == DMA_FLAG_TCIF7) || \
422 ((FLAG) == DMA_FLAG_HTIF7) || ((FLAG) == DMA_FLAG_TEIF7) || \
423 ((FLAG) == DMA_FLAG_DMEIF7) || ((FLAG) == DMA_FLAG_FEIF7))
432 #define DMA_IT_TC ((uint32_t)0x00000010)
433 #define DMA_IT_HT ((uint32_t)0x00000008)
434 #define DMA_IT_TE ((uint32_t)0x00000004)
435 #define DMA_IT_DME ((uint32_t)0x00000002)
436 #define DMA_IT_FE ((uint32_t)0x00000080)
438 #define IS_DMA_CONFIG_IT(IT) ((((IT) & 0xFFFFFF61) == 0x00) && ((IT) != 0x00))
447 #define DMA_IT_FEIF0 ((uint32_t)0x90000001)
448 #define DMA_IT_DMEIF0 ((uint32_t)0x10001004)
449 #define DMA_IT_TEIF0 ((uint32_t)0x10002008)
450 #define DMA_IT_HTIF0 ((uint32_t)0x10004010)
451 #define DMA_IT_TCIF0 ((uint32_t)0x10008020)
452 #define DMA_IT_FEIF1 ((uint32_t)0x90000040)
453 #define DMA_IT_DMEIF1 ((uint32_t)0x10001100)
454 #define DMA_IT_TEIF1 ((uint32_t)0x10002200)
455 #define DMA_IT_HTIF1 ((uint32_t)0x10004400)
456 #define DMA_IT_TCIF1 ((uint32_t)0x10008800)
457 #define DMA_IT_FEIF2 ((uint32_t)0x90010000)
458 #define DMA_IT_DMEIF2 ((uint32_t)0x10041000)
459 #define DMA_IT_TEIF2 ((uint32_t)0x10082000)
460 #define DMA_IT_HTIF2 ((uint32_t)0x10104000)
461 #define DMA_IT_TCIF2 ((uint32_t)0x10208000)
462 #define DMA_IT_FEIF3 ((uint32_t)0x90400000)
463 #define DMA_IT_DMEIF3 ((uint32_t)0x11001000)
464 #define DMA_IT_TEIF3 ((uint32_t)0x12002000)
465 #define DMA_IT_HTIF3 ((uint32_t)0x14004000)
466 #define DMA_IT_TCIF3 ((uint32_t)0x18008000)
467 #define DMA_IT_FEIF4 ((uint32_t)0xA0000001)
468 #define DMA_IT_DMEIF4 ((uint32_t)0x20001004)
469 #define DMA_IT_TEIF4 ((uint32_t)0x20002008)
470 #define DMA_IT_HTIF4 ((uint32_t)0x20004010)
471 #define DMA_IT_TCIF4 ((uint32_t)0x20008020)
472 #define DMA_IT_FEIF5 ((uint32_t)0xA0000040)
473 #define DMA_IT_DMEIF5 ((uint32_t)0x20001100)
474 #define DMA_IT_TEIF5 ((uint32_t)0x20002200)
475 #define DMA_IT_HTIF5 ((uint32_t)0x20004400)
476 #define DMA_IT_TCIF5 ((uint32_t)0x20008800)
477 #define DMA_IT_FEIF6 ((uint32_t)0xA0010000)
478 #define DMA_IT_DMEIF6 ((uint32_t)0x20041000)
479 #define DMA_IT_TEIF6 ((uint32_t)0x20082000)
480 #define DMA_IT_HTIF6 ((uint32_t)0x20104000)
481 #define DMA_IT_TCIF6 ((uint32_t)0x20208000)
482 #define DMA_IT_FEIF7 ((uint32_t)0xA0400000)
483 #define DMA_IT_DMEIF7 ((uint32_t)0x21001000)
484 #define DMA_IT_TEIF7 ((uint32_t)0x22002000)
485 #define DMA_IT_HTIF7 ((uint32_t)0x24004000)
486 #define DMA_IT_TCIF7 ((uint32_t)0x28008000)
488 #define IS_DMA_CLEAR_IT(IT) ((((IT) & 0x30000000) != 0x30000000) && \
489 (((IT) & 0x30000000) != 0) && ((IT) != 0x00) && \
490 (((IT) & 0x40820082) == 0x00))
492 #define IS_DMA_GET_IT(IT) (((IT) == DMA_IT_TCIF0) || ((IT) == DMA_IT_HTIF0) || \
493 ((IT) == DMA_IT_TEIF0) || ((IT) == DMA_IT_DMEIF0) || \
494 ((IT) == DMA_IT_FEIF0) || ((IT) == DMA_IT_TCIF1) || \
495 ((IT) == DMA_IT_HTIF1) || ((IT) == DMA_IT_TEIF1) || \
496 ((IT) == DMA_IT_DMEIF1)|| ((IT) == DMA_IT_FEIF1) || \
497 ((IT) == DMA_IT_TCIF2) || ((IT) == DMA_IT_HTIF2) || \
498 ((IT) == DMA_IT_TEIF2) || ((IT) == DMA_IT_DMEIF2) || \
499 ((IT) == DMA_IT_FEIF2) || ((IT) == DMA_IT_TCIF3) || \
500 ((IT) == DMA_IT_HTIF3) || ((IT) == DMA_IT_TEIF3) || \
501 ((IT) == DMA_IT_DMEIF3)|| ((IT) == DMA_IT_FEIF3) || \
502 ((IT) == DMA_IT_TCIF4) || ((IT) == DMA_IT_HTIF4) || \
503 ((IT) == DMA_IT_TEIF4) || ((IT) == DMA_IT_DMEIF4) || \
504 ((IT) == DMA_IT_FEIF4) || ((IT) == DMA_IT_TCIF5) || \
505 ((IT) == DMA_IT_HTIF5) || ((IT) == DMA_IT_TEIF5) || \
506 ((IT) == DMA_IT_DMEIF5)|| ((IT) == DMA_IT_FEIF5) || \
507 ((IT) == DMA_IT_TCIF6) || ((IT) == DMA_IT_HTIF6) || \
508 ((IT) == DMA_IT_TEIF6) || ((IT) == DMA_IT_DMEIF6) || \
509 ((IT) == DMA_IT_FEIF6) || ((IT) == DMA_IT_TCIF7) || \
510 ((IT) == DMA_IT_HTIF7) || ((IT) == DMA_IT_TEIF7) || \
511 ((IT) == DMA_IT_DMEIF7)|| ((IT) == DMA_IT_FEIF7))
520 #define DMA_PINCOS_Psize ((uint32_t)0x00000000)
521 #define DMA_PINCOS_WordAligned ((uint32_t)0x00008000)
523 #define IS_DMA_PINCOS_SIZE(SIZE) (((SIZE) == DMA_PINCOS_Psize) || \
524 ((SIZE) == DMA_PINCOS_WordAligned))
533 #define DMA_FlowCtrl_Memory ((uint32_t)0x00000000)
534 #define DMA_FlowCtrl_Peripheral ((uint32_t)0x00000020)
536 #define IS_DMA_FLOW_CTRL(CTRL) (((CTRL) == DMA_FlowCtrl_Memory) || \
537 ((CTRL) == DMA_FlowCtrl_Peripheral))
546 #define DMA_Memory_0 ((uint32_t)0x00000000)
547 #define DMA_Memory_1 ((uint32_t)0x00080000)
549 #define IS_DMA_CURRENT_MEM(MEM) (((MEM) == DMA_Memory_0) || ((MEM) == DMA_Memory_1))
562 void DMA_DeInit(DMA_Stream_TypeDef* DMAy_Streamx);
567 void DMA_Cmd(DMA_Stream_TypeDef* DMAy_Streamx, FunctionalState NewState);
579 uint32_t DMA_CurrentMemory);
582 uint32_t DMA_MemoryTarget);
588 FlagStatus
DMA_GetFlagStatus(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_FLAG);
589 void DMA_ClearFlag(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_FLAG);
590 void DMA_ITConfig(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_IT, FunctionalState NewState);
591 ITStatus
DMA_GetITStatus(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_IT);
void DMA_FlowControllerConfig(DMA_Stream_TypeDef *DMAy_Streamx, uint32_t DMA_FlowCtrl)
Configures, when the DMAy Streamx is disabled, the flow controller for the next transactions (Periphe...
void DMA_PeriphIncOffsetSizeConfig(DMA_Stream_TypeDef *DMAy_Streamx, uint32_t DMA_Pincos)
Configures, when the PINC (Peripheral Increment address mode) bit is set, if the peripheral address s...
uint32_t DMA_PeripheralBurst
uint32_t DMA_PeripheralDataSize
void DMA_DeInit(DMA_Stream_TypeDef *DMAy_Streamx)
Deinitialize the DMAy Streamx registers to their default reset values.
void DMA_ClearFlag(DMA_Stream_TypeDef *DMAy_Streamx, uint32_t DMA_FLAG)
Clears the DMAy Streamx's pending flags.
void DMA_ITConfig(DMA_Stream_TypeDef *DMAy_Streamx, uint32_t DMA_IT, FunctionalState NewState)
Enables or disables the specified DMAy Streamx interrupts.
void DMA_DoubleBufferModeCmd(DMA_Stream_TypeDef *DMAy_Streamx, FunctionalState NewState)
Enables or disables the double buffer mode for the selected DMA stream.
void DMA_MemoryTargetConfig(DMA_Stream_TypeDef *DMAy_Streamx, uint32_t MemoryBaseAddr, uint32_t DMA_MemoryTarget)
Configures the Memory address for the next buffer transfer in double buffer mode (for dynamic use)...
uint16_t DMA_GetCurrDataCounter(DMA_Stream_TypeDef *DMAy_Streamx)
Returns the number of remaining data units in the current DMAy Streamx transfer.
uint32_t DMA_PeripheralBaseAddr
FunctionalState DMA_GetCmdStatus(DMA_Stream_TypeDef *DMAy_Streamx)
Returns the status of EN bit for the specified DMAy Streamx.
void DMA_SetCurrDataCounter(DMA_Stream_TypeDef *DMAy_Streamx, uint16_t Counter)
Writes the number of data units to be transferred on the DMAy Streamx.
uint32_t DMA_MemoryDataSize
DMA Init structure definition.
uint32_t DMA_PeripheralInc
void DMA_Cmd(DMA_Stream_TypeDef *DMAy_Streamx, FunctionalState NewState)
Enables or disables the specified DMAy Streamx.
uint32_t DMA_GetFIFOStatus(DMA_Stream_TypeDef *DMAy_Streamx)
Returns the current DMAy Streamx FIFO filled level.
void DMA_StructInit(DMA_InitTypeDef *DMA_InitStruct)
Fills each DMA_InitStruct member with its default value.
void DMA_Init(DMA_Stream_TypeDef *DMAy_Streamx, DMA_InitTypeDef *DMA_InitStruct)
Initializes the DMAy Streamx according to the specified parameters in the DMA_InitStruct structure...
uint32_t DMA_FIFOThreshold
void DMA_DoubleBufferModeConfig(DMA_Stream_TypeDef *DMAy_Streamx, uint32_t Memory1BaseAddr, uint32_t DMA_CurrentMemory)
Configures, when the DMAy Streamx is disabled, the double buffer mode and the current memory target...
uint32_t DMA_GetCurrentMemoryTarget(DMA_Stream_TypeDef *DMAy_Streamx)
Returns the current memory target used by double buffer transfer.
FlagStatus DMA_GetFlagStatus(DMA_Stream_TypeDef *DMAy_Streamx, uint32_t DMA_FLAG)
Checks whether the specified DMAy Streamx flag is set or not.
void DMA_ClearITPendingBit(DMA_Stream_TypeDef *DMAy_Streamx, uint32_t DMA_IT)
Clears the DMAy Streamx's interrupt pending bits.
uint32_t DMA_Memory0BaseAddr
ITStatus DMA_GetITStatus(DMA_Stream_TypeDef *DMAy_Streamx, uint32_t DMA_IT)
Checks whether the specified DMAy Streamx interrupt has occurred or not.