Resolved! Stop STM32 from rerunning code when repowered
I am using an STM32H753I-EVAL2. I have the real-time clock(RTC) counting. I want it to be set to the current time. I am successfully able to do this inside of MX_RTC_Init() with:RTC_TimeTypeDef sTime = {0}; sTime.Hours = 0x11; sTime.Minutes = 0x22;...