diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-13 07:57:15 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-13 07:57:15 +0000 |
commit | 558724c98961079775962d9877344204c384f5fc (patch) | |
tree | 28ee92b8eb24f56508287d70392ed95bb44f6ee4 | |
parent | 27881295a0d743d079f66fae65ac4f6f6f99a04b (diff) | |
download | ChibiOS-558724c98961079775962d9877344204c384f5fc.tar.gz ChibiOS-558724c98961079775962d9877344204c384f5fc.tar.bz2 ChibiOS-558724c98961079775962d9877344204c384f5fc.zip |
Fixed bug #420.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5966 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/platforms/STM32F4xx/hal_lld.c | 1 | ||||
-rw-r--r-- | 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).
|