From 558724c98961079775962d9877344204c384f5fc Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 13 Jul 2013 07:57:15 +0000 Subject: [PATCH] Fixed bug #420. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5966 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/STM32F4xx/hal_lld.c | 1 - readme.txt | 4 +++- 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).