aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/STM32L4xx
diff options
context:
space:
mode:
authorRocco Marco Guglielmi <roccomarco.guglielmi@live.com>2016-12-26 09:58:20 +0000
committerRocco Marco Guglielmi <roccomarco.guglielmi@live.com>2016-12-26 09:58:20 +0000
commit4b1426b2deef33d987a06bcf964c4be6153746ad (patch)
tree28ead00832039d0e90bc6b7aa18ec084cb6ecc00 /os/hal/ports/STM32/STM32L4xx
parenta00002ab53dc2e566b74fbe1b607a37e7e95a419 (diff)
downloadChibiOS-4b1426b2deef33d987a06bcf964c4be6153746ad.tar.gz
ChibiOS-4b1426b2deef33d987a06bcf964c4be6153746ad.tar.bz2
ChibiOS-4b1426b2deef33d987a06bcf964c4be6153746ad.zip
Fixed Bug #804
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9989 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/STM32L4xx')
-rw-r--r--os/hal/ports/STM32/STM32L4xx/hal_lld.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/STM32L4xx/hal_lld.c b/os/hal/ports/STM32/STM32L4xx/hal_lld.c
index 273c24272..bb7ccc69d 100644
--- a/os/hal/ports/STM32/STM32L4xx/hal_lld.c
+++ b/os/hal/ports/STM32/STM32L4xx/hal_lld.c
@@ -309,7 +309,7 @@ void stm32_clock_init(void) {
/* Set flash WS's for SYSCLK source */
if (STM32_FLASHBITS > STM32_MSI_FLASHBITS)
- FLASH->ACR = STM32_FLASHBITS;
+ FLASH->ACR = (FLASH->ACR & ~FLASH_ACR_LATENCY_Msk) | STM32_FLASHBITS;
/* Switching to the configured SYSCLK source if it is different from MSI.*/
#if (STM32_SW != STM32_SW_MSI)
@@ -321,7 +321,7 @@ void stm32_clock_init(void) {
/* Reduce the flash WS's for SYSCLK source if they are less than MSI WSs */
if (STM32_FLASHBITS < STM32_MSI_FLASHBITS)
- FLASH->ACR = STM32_FLASHBITS;
+ FLASH->ACR = (FLASH->ACR & ~FLASH_ACR_LATENCY_Msk) | STM32_FLASHBITS;
#endif /* STM32_NO_INIT */