aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--os/hal/platforms/STM32F4xx/hal_lld.c1
-rw-r--r--readme.txt4
2 files changed, 3 insertions, 2 deletions
diff --git a/os/hal/platforms/STM32F4xx/hal_lld.c b/os/hal/platforms/STM32F4xx/hal_lld.c
index f72812da9..faf480333 100644
--- a/os/hal/platforms/STM32F4xx/hal_lld.c
+++ b/os/hal/platforms/STM32F4xx/hal_lld.c
@@ -97,7 +97,6 @@ void hal_lld_init(void) {
been initialized in the board initialization file (board.c).*/
rccResetAHB1(~0);
rccResetAHB2(~0);
- rccResetAHB3(~0);
rccResetAPB1(~RCC_APB1RSTR_PWRRST);
rccResetAPB2(~0);
diff --git a/readme.txt b/readme.txt
index af95c3f1c..34b8594a1 100644
--- a/readme.txt
+++ b/readme.txt
@@ -89,7 +89,9 @@
*****************************************************************************
*** 2.7.0 ***
-- FIX: Fixed invalid directory links in the demo files (bug #419)backported
+- FIX: Fixed FSMC reset on STM32F4xx (bug #420)(backported to 2.6.1
+ and 2.4.4).
+- FIX: Fixed invalid directory links in the demo files (bug #419)(backported
to 2.6.1).
- FIX: Fixed missing casts in time-conversion macros (bug #418)(backported
to 2.6.1, 2.4.4 and 2.2.10).