cancel
Showing results for 
Search instead for 
Did you mean: 

stm32ide 1.12.0 update and SystemClock_Config() Lockup

JDFletch
Associate

STM32L476ZGT3 processor

STM32IDE 1.12.0

STM32MX 6.8.0

Once I updated the IDE, the system locks on the LL_PWR_IsActiveFlag_VOS() under the stm32l4xx_II_pwr.h file (Through the SystemClock_Config() section).

I updated the file location by creating a new project and copying my files into the directory.

When debugging, the cursor jumps from the end of file bracket "}" to the return function and won't go further.

__STATIC_INLINE uint32_t LL_PWR_IsActiveFlag_VOS(void)

{

 return ((READ_BIT(PWR->SR2, PWR_SR2_VOSF) == (PWR_SR2_VOSF)) ? 1UL : 0UL);

}

1 ACCEPTED SOLUTION

Accepted Solutions
2 REPLIES 2
WQ
Associate III
JDFletch
Associate

Thanks WQ,

That's exactly what I needed!

Doug