Fixed bug 3606274.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5388 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2013-03-09 11:12:10 +00:00
parent 9992b23f94
commit 125a85a152
2 changed files with 5 additions and 0 deletions

View File

@ -162,6 +162,10 @@ void stm32_clock_init(void) {
; /* Waits until HSI is selected. */
#if STM32_HSE_ENABLED
#if defined(STM32_HSE_BYPASS)
/* HSE Bypass.*/
RCC->CR |= RCC_CR_HSEBYP;
#endif
/* HSE activation.*/
RCC->CR |= RCC_CR_HSEON;
while (!(RCC->CR & RCC_CR_HSERDY))

View File

@ -87,6 +87,7 @@
*** 2.5.2 ***
- FIX: Fixed surprising non-CRLF lines in source (bug 3607380).
- FIX: Fixed missing HSE bypass option for STM32F103 (bug 3606274).
- FIX: Fixed misplaced brace in icu_lld.c (bug 3605832)(backported to 2.4.4).
- FIX: Fixed errors in MMC_SPI driver state machine (bug 3605794).
- FIX: Fixed deadlock in Serial_USB driver (bug 3605793).