git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@13852 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2020-09-12 08:01:19 +00:00
parent 784e4d4798
commit 1430e17f20
2 changed files with 4 additions and 1 deletions

View File

@ -151,7 +151,7 @@ void stm32_clock_init(void) {
#if STM32_HSI16_ENABLED
/* HSI activation.*/
RCC->CR |= RCC_CR_HSION;
RCC->CR |= RCC_CR_HSION | STM32_HSIDIV;
while ((RCC->CR & RCC_CR_HSIRDY) == 0)
; /* Wait until HSI16 is stable. */
#endif

View File

@ -73,6 +73,9 @@
*** Releases and Change Log ***
*****************************************************************************
*** 20.3.3 ***
- FIX: Ignored HSIDIV setting on STM32G0xx (bug #1121)
*** 20.3.2 ***
- NEW: Support for 3 analog watchdogs in ADCv3 (STM32F3, L4, L4+, G4).
- NEW: Support for 3 analog watchdogs in ADCv5 (STM32G0).