Hi, I have an STM32H723ZGT which I am having problems with hanging at boot.When debugging, it is stuck at /* Wait till LSE is ready */
while(LL_RCC_LSE_IsReady() != 1)
{
}in main.c I currently have LSE disabled and RTC clock set to LSI, but...
I have been generating the code from the IOC, and also tried cleaning the project before but the references to LSE were still in that function. As if generating code from the IOC hadn't modified the function.
That is a good point. I thought the clock config function /* Configure the system clock */
SystemClock_Config();had been auto generated by the clock config tool in the IOC viewer.Removing all references to LSE in this function seems to fix the iss...