diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-10-29 13:00:10 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-10-29 13:00:10 +0000 |
commit | 78cdf6419f8dfbc43beff3c117619b033b648170 (patch) | |
tree | 8b772e36377c5fc92aa7735e92a017f620c6caec /os | |
parent | 2b536049a92660396ad07913bc617db60147cb7e (diff) | |
download | ChibiOS-78cdf6419f8dfbc43beff3c117619b033b648170.tar.gz ChibiOS-78cdf6419f8dfbc43beff3c117619b033b648170.tar.bz2 ChibiOS-78cdf6419f8dfbc43beff3c117619b033b648170.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6393 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/platforms/STM32F4xx/hal_lld.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/os/hal/platforms/STM32F4xx/hal_lld.c b/os/hal/platforms/STM32F4xx/hal_lld.c index 6dcac805b..4d372b12f 100644 --- a/os/hal/platforms/STM32F4xx/hal_lld.c +++ b/os/hal/platforms/STM32F4xx/hal_lld.c @@ -154,8 +154,6 @@ void stm32_clock_init(void) { /* PWR initialization.*/
#if defined(STM32F4XX) || defined(__DOXYGEN__)
PWR->CR = STM32_VOS;
- while ((PWR->CSR & PWR_CSR_VOSRDY) == 0)
- ; /* Waits until power regulator is stable. */
#else
PWR->CR = 0;
#endif
@@ -192,6 +190,11 @@ void stm32_clock_init(void) { STM32_PLLM;
RCC->CR |= RCC_CR_PLLON;
+ /* Synchronization with voltage regulator stabilization.*/
+#if defined(STM32F4XX)
+ while ((PWR->CSR & PWR_CSR_VOSRDY) == 0)
+ ; /* Waits until power regulator is stable. */
+
#if STM32_OVERDRIVE_REQUIRED
/* Overdrive activation performed after activating the PLL in order to save
time as recommended in RM in "Entering Over-drive mode" paragraph.*/
@@ -201,7 +204,8 @@ void stm32_clock_init(void) { PWR->CR |= PWR_CR_ODSWEN;
while (!(PWR->CSR & PWR_CSR_ODSWRDY)
;
-#endif
+#endif /* STM32_OVERDRIVE_REQUIRED */
+#endif /* defined(STM32F4XX) */
/* Waiting for PLL lock.*/
while (!(RCC->CR & RCC_CR_PLLRDY))
|