Question
BOOSTEN / BOOSTRDY doesn't seem to be working on STM32U575
STM32u575 reference mannual indicates that PWR->VOSR BOOSTEN must be set and PWR->VSOR BOOSTRDY must be set by hardware before clocks are raised past 55MH.
using this code to try and accomplish that:
// set boost enable to support clocks above 55MHZand wait for BOOSTRDY
MODIFY_REG(PWR->VOSR, PWR_VOSR_BOOSTEN, PWR_VOSR_BOOSTEN);
while (READ_BIT(PWR->VOSR, PWR_VOSR_BOOSTRDY) != PWR_VOSR_BOOSTRDY) {}I see BOOSTEN getting set but loop hangs and BOOSTRDY is never set by hardware.
Is there some other item that need to be configured for this to work?
All assistance approciated.
Shawn
