aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2019-04-22 07:00:04 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2019-04-22 07:00:04 +0000
commit68dc9c996654d8c92d601d44dfb7d3cf38b93231 (patch)
treeaf188394c6ce774bb7c70028f914a6dd15e9904d
parentcd70e6ce8bc1bc3d4a000fd310f7853fb86ed07b (diff)
downloadChibiOS-68dc9c996654d8c92d601d44dfb7d3cf38b93231.tar.gz
ChibiOS-68dc9c996654d8c92d601d44dfb7d3cf38b93231.tar.bz2
ChibiOS-68dc9c996654d8c92d601d44dfb7d3cf38b93231.zip
Fixed bug #1025.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_19.1.x@12744 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
-rw-r--r--os/hal/ports/STM32/STM32F4xx/stm32_registry.h2
-rw-r--r--readme.txt1
2 files changed, 2 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/STM32F4xx/stm32_registry.h b/os/hal/ports/STM32/STM32F4xx/stm32_registry.h
index 8d754c690..21b81457f 100644
--- a/os/hal/ports/STM32/STM32F4xx/stm32_registry.h
+++ b/os/hal/ports/STM32/STM32F4xx/stm32_registry.h
@@ -452,7 +452,7 @@
#define STM32_HAS_UART7 TRUE
#define STM32_UART7_RX_DMA_MSK STM32_DMA_STREAM_ID_MSK(1, 3)
-#define STM32_UART7_RX_DMA_CHN 0x00004000
+#define STM32_UART7_RX_DMA_CHN 0x00005000
#define STM32_UART7_TX_DMA_MSK STM32_DMA_STREAM_ID_MSK(1, 1)
#define STM32_UART7_TX_DMA_CHN 0x00000050
diff --git a/readme.txt b/readme.txt
index 0841cebe9..a3b6d648c 100644
--- a/readme.txt
+++ b/readme.txt
@@ -78,6 +78,7 @@
- NEW: updates to MFS from trunk code.
- NEW: updates to test library from trunk code.
- HAL: Added H753 to all H7 mcuconf.h files.
+- FIX: Fixed invalid STM32_UART7_RX_DMA_CHN for STM32F469 (bug #1025).
- FIX: Fixed invalid EXTI registry constant for STM32L4+ (bug #1024).
- FIX: Fixed missing RTC definitions in STM32L1xx registry (bug #1023).
- FIX: Fixed missing EXTI driver integration on some platforms (bug #1022).