diff options
author | Rocco Marco Guglielmi <roccomarco.guglielmi@live.com> | 2016-10-05 15:14:08 +0000 |
---|---|---|
committer | Rocco Marco Guglielmi <roccomarco.guglielmi@live.com> | 2016-10-05 15:14:08 +0000 |
commit | 257a19753d0e1129d2b8c3d087a5f825e0d15e28 (patch) | |
tree | fc56ca922f4681b6b33fadd7576febcaf6d967fd /os | |
parent | cf7b963bcff641797d23d9e12b8b4a05037261c8 (diff) | |
download | ChibiOS-257a19753d0e1129d2b8c3d087a5f825e0d15e28.tar.gz ChibiOS-257a19753d0e1129d2b8c3d087a5f825e0d15e28.tar.bz2 ChibiOS-257a19753d0e1129d2b8c3d087a5f825e0d15e28.zip |
Fixed Bug #783.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9853 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/ports/STM32/STM32L0xx/hal_lld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/STM32L0xx/hal_lld.c b/os/hal/ports/STM32/STM32L0xx/hal_lld.c index 7df02718a..c3bb6dd87 100644 --- a/os/hal/ports/STM32/STM32L0xx/hal_lld.c +++ b/os/hal/ports/STM32/STM32L0xx/hal_lld.c @@ -273,8 +273,8 @@ void stm32_clock_init(void) { #endif
/* Peripherals clock sources setup.*/
- RCC->CCIPR = STM32_HSI48SEL | STM32_LPTIM1CLK | STM32_I2C1CLK |
- STM32_LPUART1CLK | STM32_USART2CLK | STM32_USART1CLK;
+ RCC->CCIPR = STM32_HSI48SEL | STM32_LPTIM1SEL | STM32_I2C1SEL |
+ STM32_LPUART1SEL | STM32_USART2SEL | STM32_USART1SEL;
/* SYSCFG clock enabled here because it is a multi-functional unit shared
among multiple drivers.*/
|