aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-08-02 08:27:51 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-08-02 08:27:51 +0000
commitd82b98664bdcba0b6eff9d938e42eaff4b32132e (patch)
tree665420abfbfd85050c988fddae2697d6dd4c7cf2
parent83a29d333b433f2bed138bfb6108c3ce5dc99417 (diff)
downloadChibiOS-d82b98664bdcba0b6eff9d938e42eaff4b32132e.tar.gz
ChibiOS-d82b98664bdcba0b6eff9d938e42eaff4b32132e.tar.bz2
ChibiOS-d82b98664bdcba0b6eff9d938e42eaff4b32132e.zip
Fixed bug #768.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9733 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/hal/ports/STM32/STM32L4xx/hal_lld.c2
-rw-r--r--readme.txt2
2 files changed, 3 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/STM32L4xx/hal_lld.c b/os/hal/ports/STM32/STM32L4xx/hal_lld.c
index 73d229c78..273c24272 100644
--- a/os/hal/ports/STM32/STM32L4xx/hal_lld.c
+++ b/os/hal/ports/STM32/STM32L4xx/hal_lld.c
@@ -80,7 +80,7 @@ static void hal_lld_backup_domain_init(void) {
while ((RCC->CR & RCC_CR_MSIRDY) == 0)
; /* Wait until MSI is stable. */
#endif
-
+
#if HAL_USE_RTC
/* If the backup domain hasn't been initialized yet then proceed with
initialization.*/
diff --git a/readme.txt b/readme.txt
index 7f60180a9..f3b5dd7d0 100644
--- a/readme.txt
+++ b/readme.txt
@@ -123,6 +123,8 @@
- RT: Merged RT4.
- NIL: Merged NIL2.
- NIL: Added STM32F7 demo.
+- HAL: Fixed potential wait states problem in STM32L4 initialization code
+ (bug #768)(backported to 16.1.6).
- HAL: Fixed SDIO driver not compiling on STM32F446 devices (bug #767)
(backported to 16.1.6).
- HAL: Fixed error in STM32L4xx ST headers (bug #766)(backported to 16.1.6).