diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-12-05 15:05:54 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-12-05 15:05:54 +0000 |
commit | c8f3291765c55611ef8a8f26e4a9be817d7c0cbe (patch) | |
tree | 824cc7067bf61af97c3372e448b583e6691f4add /os/hal/platforms/STM32F3xx | |
parent | 3e27095da10bcf997c71d32d1af59aa99f3804c4 (diff) | |
download | ChibiOS-c8f3291765c55611ef8a8f26e4a9be817d7c0cbe.tar.gz ChibiOS-c8f3291765c55611ef8a8f26e4a9be817d7c0cbe.tar.bz2 ChibiOS-c8f3291765c55611ef8a8f26e4a9be817d7c0cbe.zip |
Fixed bug 3592809.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4876 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32F3xx')
-rw-r--r-- | os/hal/platforms/STM32F3xx/stm32_dma.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32F3xx/stm32_dma.h b/os/hal/platforms/STM32F3xx/stm32_dma.h index 09f4ac30b..3a558c9e6 100644 --- a/os/hal/platforms/STM32F3xx/stm32_dma.h +++ b/os/hal/platforms/STM32F3xx/stm32_dma.h @@ -153,7 +153,7 @@ #define STM32_DMA_CR_MSIZE_BYTE 0
#define STM32_DMA_CR_MSIZE_HWORD DMA_CCR_MSIZE_0
#define STM32_DMA_CR_MSIZE_WORD DMA_CCR_MSIZE_1
-#define STM32_DMA_CR_SIZE_MASK (STM32_DMA_CR_MSIZE_MASK | \
+#define STM32_DMA_CR_SIZE_MASK (STM32_DMA_CR_PSIZE_MASK | \
STM32_DMA_CR_MSIZE_MASK)
#define STM32_DMA_CR_PL_MASK DMA_CCR_PL
#define STM32_DMA_CR_PL(n) ((n) << 12)
|