diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-08-02 08:27:51 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-08-02 08:27:51 +0000 |
commit | d82b98664bdcba0b6eff9d938e42eaff4b32132e (patch) | |
tree | 665420abfbfd85050c988fddae2697d6dd4c7cf2 /os/hal/ports/STM32/STM32L4xx | |
parent | 83a29d333b433f2bed138bfb6108c3ce5dc99417 (diff) | |
download | ChibiOS-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
Diffstat (limited to 'os/hal/ports/STM32/STM32L4xx')
-rw-r--r-- | os/hal/ports/STM32/STM32L4xx/hal_lld.c | 2 |
1 files changed, 1 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.*/
|