git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13853 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2020-09-12 08:01:24 +00:00
parent c52076ad35
commit a4675488a9
2 changed files with 3 additions and 1 deletions

View File

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

View File

@ -117,6 +117,8 @@
MEMS Accelerometers. MEMS Accelerometers.
- NEW: Safer messages mechanism for sandboxes (to be backported to 20.3.1). - NEW: Safer messages mechanism for sandboxes (to be backported to 20.3.1).
- NEW: Added latency measurement test application. - NEW: Added latency measurement test application.
- FIX: Ignored HSIDIV setting on STM32G0xx (bug #1121)
(backported to 20.3.3).
- FIX: Fix incorrect variable name in recursive mutex handling (bug #1119). - FIX: Fix incorrect variable name in recursive mutex handling (bug #1119).
- FIX: Fixed several problems in STM32 ADCv4 (bug #1116) - FIX: Fixed several problems in STM32 ADCv4 (bug #1116)
(backported to 20.3.2). (backported to 20.3.2).