Resolved! STM32F469: HAL_RTC_GetTime jumps from 12:59 to 1:00 instead 13:00 or 1:00 pm
I get the time in one thread with following code: RTC_TimeTypeDef ti = {0}; RTC_DateTypeDef da = {0}; HAL_RTC_GetTime(& hrtc, ti, RTC_FORMAT_BIN); HAL_RTC_GetDate(& hrtc, da, RTC_FORMAT_BIN); It jumps from 12:59 to 1:00 instead 13:00, With an...