Fixed bug 3489727.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@4008 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2012-03-03 10:45:51 +00:00
parent 5a7630b143
commit d0822dc05c
2 changed files with 2 additions and 1 deletions

View File

@ -69,7 +69,7 @@ void hal_lld_init(void) {
#if !STM8S_NO_CLOCK_INIT
/* 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)
;

View File

@ -79,6 +79,7 @@
*****************************************************************************
*** 2.4.1 ***
- FIX: Fixed STM8S HSI clock initialization error (bug 3489727).
- FIX: Fixed MMC over SPI driver performs an unnecessary SPI read (bug
3486930).
- FIX: Fixed Realtime counter initialization in STM32 HALs (bug 3485500).