Browse Source

stm32/powerctrl: Enable overdrive on F7 when waking from stop mode.

Because if the SYSCLK is set to 180MHz or higher it will require this to be
on already.
pull/5817/head
Damien George 5 years ago
parent
commit
68db7e01d8
  1. 5
      ports/stm32/powerctrl.c

5
ports/stm32/powerctrl.c

@ -381,6 +381,11 @@ void powerctrl_enter_stop_mode(void) {
}
#endif
#if defined(STM32F7)
// Enable overdrive to reach 216MHz (if needed)
HAL_PWREx_EnableOverDrive();
#endif
// enable PLL
__HAL_RCC_PLL_ENABLE();
while (!__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY)) {

Loading…
Cancel
Save