git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14820 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-09-23 13:16:51 +00:00
parent ad17f5fb31
commit 68278338b0
3 changed files with 4 additions and 2 deletions

View File

@ -352,7 +352,7 @@ __STATIC_INLINE void pll_deinit(void) {
#if STM32_RCC_HAS_PLL
#if STM32_ACTIVATE_PLL
/* PLL de-activation.*/
RCC->PLLCFGR &= ~RCC_CR_PLLON;
RCC->CR &= ~RCC_CR_PLLON;
#endif
#endif
}

View File

@ -356,7 +356,7 @@ __STATIC_INLINE void pll_deinit(void) {
#if STM32_RCC_HAS_PLL
#if STM32_ACTIVATE_PLL
/* PLL de-activation.*/
RCC->PLLCFGR &= ~RCC_CR_PLLON;
RCC->CR &= ~RCC_CR_PLLON;
#endif
#endif
}

View File

@ -79,6 +79,8 @@
- NEW: EFL driver and demo for STM32F3xx.
- NEW: New unit test subsystem under /os/test. Now it is officially
ChibiOS/TEST.
- FIX: Fixed problem in stm32_pll.inc and stm32_pllv2.inc (bug #1190)
(TBP to 21.6.1)
- FIX: Fixed invalid RCC LPUART1 clock enable on STM32G0xx (bug #1189)
(TBP to 21.6.1)(backported to 20.3.4).
- FIX: Support for STM32G491 (bug #1187)(TBP to 21.6.1).