Fixed bug 3489727.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3963 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2012-02-20 19:54:19 +00:00
parent 3cb4ca415b
commit b97d65b80f
2 changed files with 4 additions and 3 deletions

View File

@ -62,7 +62,7 @@ void hal_lld_init(void) {
#if !STM8S_NO_CLOCK_INIT #if !STM8S_NO_CLOCK_INIT
/* Makes sure that HSI is stable before proceeding.*/ /* Makes sure that HSI is stable before proceeding.*/
CLK->ICKR |= CLK_ICKR_HSIRDY; CLK->ICKR |= CLK_ICKR_HSIEN;
while ((CLK->ICKR & CLK_ICKR_HSIRDY) == 0) while ((CLK->ICKR & CLK_ICKR_HSIRDY) == 0)
; ;

View File

@ -79,9 +79,10 @@
***************************************************************************** *****************************************************************************
*** 2.5.0 *** *** 2.5.0 ***
- FIX: Fixed STM8S HSI clock initialization error (bug 3489727)(backported to
2.2.9 and 2.4.1).
- FIX: Fixed MMC over SPI driver performs an unnecessary SPI read (bug - FIX: Fixed MMC over SPI driver performs an unnecessary SPI read (bug
3486930)(backported to 2.2.9 and 2.4.1). Also removed unnecessary CRC7 3486930)(backported to 2.2.9 and 2.4.1).
calculation.
- FIX: Fixed Realtime counter initialization in STM32 HALs (bug 3485500) - FIX: Fixed Realtime counter initialization in STM32 HALs (bug 3485500)
(backported to 2.4.1). (backported to 2.4.1).
- FIX: Fixed PPC port broken when CH_DBG_SYSTEM_STATE_CHECK is activated - FIX: Fixed PPC port broken when CH_DBG_SYSTEM_STATE_CHECK is activated