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.
This commit is contained in:
Damien George 2020-01-30 16:30:03 +11:00
parent 29b84ea798
commit 68db7e01d8
1 changed files with 5 additions and 0 deletions

View File

@ -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)) {