diff options
author | roccomarco <roccomarco@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-07-02 11:27:30 +0000 |
---|---|---|
committer | roccomarco <roccomarco@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-07-02 11:27:30 +0000 |
commit | 81dd0533cc4df735e56d68c5e9f8dc404549aad5 (patch) | |
tree | 65469b0611c2200428d3165524f16069eeb01cb0 /os/hal/ports/STM32/STM32F4xx | |
parent | b726cf60f91a9877eb98ddff6c83749299c5720c (diff) | |
download | ChibiOS-81dd0533cc4df735e56d68c5e9f8dc404549aad5.tar.gz ChibiOS-81dd0533cc4df735e56d68c5e9f8dc404549aad5.tar.bz2 ChibiOS-81dd0533cc4df735e56d68c5e9f8dc404549aad5.zip |
Fixed Bug #853
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10294 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/STM32F4xx')
-rw-r--r-- | os/hal/ports/STM32/STM32F4xx/stm32_registry.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/STM32F4xx/stm32_registry.h b/os/hal/ports/STM32/STM32F4xx/stm32_registry.h index 8a54f2a21..682efe5bc 100644 --- a/os/hal/ports/STM32/STM32F4xx/stm32_registry.h +++ b/os/hal/ports/STM32/STM32F4xx/stm32_registry.h @@ -1342,7 +1342,7 @@ #define STM32_HAS_SPI4 TRUE
#define STM32_SPI4_SUPPORTS_I2S FALSE
#define STM32_SPI4_RX_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 0) |\
- STM32_DMA_STREAM_ID_MSK(2, 3))|\
+ STM32_DMA_STREAM_ID_MSK(2, 3) |\
STM32_DMA_STREAM_ID_MSK(2, 4))
#define STM32_SPI4_RX_DMA_CHN 0x00045004
#define STM32_SPI4_TX_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1) |\
@@ -1355,7 +1355,7 @@ STM32_DMA_STREAM_ID_MSK(2, 5))
#define STM32_SPI5_RX_DMA_CHN 0x00702000
#define STM32_SPI5_TX_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 4) |\
- STM32_DMA_STREAM_ID_MSK(2, 5))|\
+ STM32_DMA_STREAM_ID_MSK(2, 5) |\
STM32_DMA_STREAM_ID_MSK(2, 6))
#define STM32_SPI5_TX_DMA_CHN 0x07520000
|