From 845744cdcb8f7a00ecb515c0075d5cc8f1ffa43d Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 13 Jul 2013 07:57:31 +0000 Subject: [PATCH] Fixed bug #420. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@5968 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/STM32F2xx/hal_lld.c | 1 - os/hal/platforms/STM32F4xx/hal_lld.c | 1 - readme.txt | 1 + 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/os/hal/platforms/STM32F2xx/hal_lld.c b/os/hal/platforms/STM32F2xx/hal_lld.c index 1c970ab02..cd644e0f6 100644 --- a/os/hal/platforms/STM32F2xx/hal_lld.c +++ b/os/hal/platforms/STM32F2xx/hal_lld.c @@ -102,7 +102,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/os/hal/platforms/STM32F4xx/hal_lld.c b/os/hal/platforms/STM32F4xx/hal_lld.c index deb6049cc..5b7dfd07c 100644 --- a/os/hal/platforms/STM32F4xx/hal_lld.c +++ b/os/hal/platforms/STM32F4xx/hal_lld.c @@ -102,7 +102,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 792315df5..25899b85e 100644 --- a/readme.txt +++ b/readme.txt @@ -79,6 +79,7 @@ ***************************************************************************** *** 2.4.4 *** +- FIX: Fixed FSMC reset on STM32F4xx (bug #420). - FIX: Fixed missing casts in time-conversion macros (bug #418). - FIX: Fixed PLL2 activation condition is wrong in STM32F107 HAL (bug #417). - FIX: Fixed MS2ST() and US2ST() macros error (bug #415).