Updating the firmware on my STM32H745ZI-Q causes CPU2 not to boot and times out in error_handler(). Is there a way to use an older firmware?
I have updated the firmware on my STM32H745ZI-Q and when I run in debug mode the code runs until:while((__HAL_RCC_GET_FLAG(RCC_FLAG_D2CKRDY) != RESET) && (timeout-- > 0)); if ( timeout < 0 ) { Error_Handler(); }The code stops in the error handler.Is ...