Skip to main content
JDFletch
Associate
April 12, 2023
Solved

stm32ide 1.12.0 update and SystemClock_Config() Lockup

  • April 12, 2023
  • 2 replies
  • 1010 views

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);

}

This topic has been closed for replies.

2 replies

WQ_it
WQ_itBest answer
Associate III
April 13, 2023
JDFletch
JDFletchAuthor
Associate
April 13, 2023

Thanks WQ,

That's exactly what I needed!

Doug