2023-04-12 11:27 AM
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);
}
Solved! Go to Solution.
2023-04-12 07:39 PM
2023-04-12 07:39 PM
2023-04-13 07:06 AM
Thanks WQ,
That's exactly what I needed!
Doug