Fixed DMA config issues for CRC && MemCpy
This commit is contained in:
parent
5e44fa81ac
commit
bca15a3298
7 changed files with 54 additions and 29 deletions
|
@ -1,24 +1,30 @@
|
|||
#MicroXplorer Configuration settings - do not modify
|
||||
Dma.MEMTOMEM.10.Direction=DMA_MEMORY_TO_MEMORY
|
||||
Dma.MEMTOMEM.10.FIFOMode=DMA_FIFOMODE_DISABLE
|
||||
Dma.MEMTOMEM.10.FIFOMode=DMA_FIFOMODE_ENABLE
|
||||
Dma.MEMTOMEM.10.FIFOThreshold=DMA_FIFO_THRESHOLD_FULL
|
||||
Dma.MEMTOMEM.10.Instance=DMA2_Stream4
|
||||
Dma.MEMTOMEM.10.MemDataAlignment=DMA_MDATAALIGN_BYTE
|
||||
Dma.MEMTOMEM.10.MemInc=DMA_MINC_ENABLE
|
||||
Dma.MEMTOMEM.10.MemBurst=DMA_MBURST_SINGLE
|
||||
Dma.MEMTOMEM.10.MemDataAlignment=DMA_MDATAALIGN_WORD
|
||||
Dma.MEMTOMEM.10.MemInc=DMA_MINC_DISABLE
|
||||
Dma.MEMTOMEM.10.Mode=DMA_NORMAL
|
||||
Dma.MEMTOMEM.10.PeriphDataAlignment=DMA_PDATAALIGN_BYTE
|
||||
Dma.MEMTOMEM.10.PeriphBurst=DMA_PBURST_SINGLE
|
||||
Dma.MEMTOMEM.10.PeriphDataAlignment=DMA_PDATAALIGN_WORD
|
||||
Dma.MEMTOMEM.10.PeriphInc=DMA_PINC_ENABLE
|
||||
Dma.MEMTOMEM.10.Priority=DMA_PRIORITY_LOW
|
||||
Dma.MEMTOMEM.10.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode
|
||||
Dma.MEMTOMEM.10.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode,FIFOThreshold,MemBurst,PeriphBurst
|
||||
Dma.MEMTOMEM.11.Direction=DMA_MEMORY_TO_MEMORY
|
||||
Dma.MEMTOMEM.11.FIFOMode=DMA_FIFOMODE_DISABLE
|
||||
Dma.MEMTOMEM.11.FIFOMode=DMA_FIFOMODE_ENABLE
|
||||
Dma.MEMTOMEM.11.FIFOThreshold=DMA_FIFO_THRESHOLD_FULL
|
||||
Dma.MEMTOMEM.11.Instance=DMA2_Stream3
|
||||
Dma.MEMTOMEM.11.MemDataAlignment=DMA_MDATAALIGN_BYTE
|
||||
Dma.MEMTOMEM.11.MemBurst=DMA_MBURST_SINGLE
|
||||
Dma.MEMTOMEM.11.MemDataAlignment=DMA_MDATAALIGN_WORD
|
||||
Dma.MEMTOMEM.11.MemInc=DMA_MINC_ENABLE
|
||||
Dma.MEMTOMEM.11.Mode=DMA_NORMAL
|
||||
Dma.MEMTOMEM.11.PeriphDataAlignment=DMA_PDATAALIGN_BYTE
|
||||
Dma.MEMTOMEM.11.PeriphBurst=DMA_PBURST_SINGLE
|
||||
Dma.MEMTOMEM.11.PeriphDataAlignment=DMA_PDATAALIGN_WORD
|
||||
Dma.MEMTOMEM.11.PeriphInc=DMA_PINC_ENABLE
|
||||
Dma.MEMTOMEM.11.Priority=DMA_PRIORITY_LOW
|
||||
Dma.MEMTOMEM.11.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode
|
||||
Dma.MEMTOMEM.11.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode,FIFOThreshold,MemBurst,PeriphBurst
|
||||
Dma.Request0=USART6_RX
|
||||
Dma.Request1=USART6_TX
|
||||
Dma.Request10=MEMTOMEM
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue