Hello,I've a project with the STM32G030F6 which use the RTC (SYSCLK=64MHz RTCCLK=32768Hz). During the setting of new date/time I enable the INIT mode with: LL_RTC_EnableInitMode (RTC);
while (0u == READ_BIT (RTC->ICSR, RTC_ICSR_INITF))
{
} The runtim...