Hi, is there a problem with the HAL_RTC_SetDate function? If i set the year to 18, and read it back its never correct, always a year infront
RTC_TimeTypeDef sTime; RTC_DateTypeDef sDate; sTime.TimeFormat = RTC_HOURFORMAT_24; sTime.Hours = 12; sTime.Minutes = 12; sTime.Seconds=34; sDate.Date=8; sDate.Month=12; sDate.Year=20; HAL_RTC_SetTime(&RtcHandle, &sTime, RTC_FORMAT_B...