2015-07-21 12:18 PM
Hi,
I am using Cube MX to generate the RTC code.It is working perfectly fine, the time is counted correctly. But every time I turn off the device, the time and date are set back to 0.I found the problem in the Init function. Every time the RTC is initialized, the time and date are set to zero again.I solved the problem just by commenting those lines, but I am wondering why cube generates such code! Once that the code is not supposed to be edited, every time I generate a new version I must remember to go there and comment those lines. It is weird. Am I doing something wrong?/* RTC init function */void MX_RTC_Init(void){ RTC_TimeTypeDef sTime; RTC_DateTypeDef sDate; RTC_AlarmTypeDef sAlarm; /**Initialize RTC and set the Time and Date */ hrtc.Instance = RTC; hrtc.Init.HourFormat = RTC_HOURFORMAT_24; hrtc.Init.AsynchPrediv = 127; hrtc.Init.SynchPrediv = 255; hrtc.Init.OutPut = RTC_OUTPUT_DISABLE; hrtc.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH; hrtc.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN; HAL_RTC_Init(&hrtc); // Manually commented //sTime.Hours = 0; //sTime.Minutes = 0; //sTime.Seconds = 0; //sTime.SubSeconds = 0; sTime.TimeFormat = RTC_HOURFORMAT12_AM; sTime.DayLightSaving = RTC_DAYLIGHTSAVING_NONE; sTime.StoreOperation = RTC_STOREOPERATION_RESET; HAL_RTC_SetTime(&hrtc, &sTime, FORMAT_BCD); // Manually commented //sDate.WeekDay = RTC_WEEKDAY_MONDAY; //sDate.Month = RTC_MONTH_JANUARY; //sDate.Date = 1; //sDate.Year = 0; HAL_RTC_SetDate(&hrtc, &sDate, FORMAT_BCD); /**Enable the Alarm A */ sAlarm.AlarmTime.Hours = 0; sAlarm.AlarmTime.Minutes = 0; sAlarm.AlarmTime.Seconds = 0; sAlarm.AlarmTime.SubSeconds = 0; sAlarm.AlarmTime.TimeFormat = RTC_HOURFORMAT12_AM; sAlarm.AlarmTime.DayLightSaving = RTC_DAYLIGHTSAVING_NONE; sAlarm.AlarmTime.StoreOperation = RTC_STOREOPERATION_RESET; sAlarm.AlarmMask = RTC_ALARMMASK_NONE; sAlarm.AlarmSubSecondMask = RTC_ALARMSUBSECONDMASK_ALL; sAlarm.AlarmDateWeekDaySel = RTC_ALARMDATEWEEKDAYSEL_DATE; sAlarm.AlarmDateWeekDay = 1; sAlarm.Alarm = RTC_ALARM_A; HAL_RTC_SetAlarm(&hrtc, &sAlarm, FORMAT_BCD);}2016-01-06 04:17 AM
Hi STM32Cube-T,
I have same problem.When
you
fix
this ?
Petr2017-03-17 09:36 AM
Hi ST
I have same problem.
When
you
fix
this ?
Jens2017-03-19 05:38 AM
Hi tekampe.jens,
Maybe you are using an old CubeMx version. If it is the case, I recommend you to use the last version available V 4.20.
Then, if the problem is not resolved, it should be better to create a new discussion describing your use case and giving more details about your issue.
You can also share your .ioc file, this will help user forum and ST team to check your case and answer you.
Imen
2017-04-07 05:54 AM
The same question was posted here:
https://community.st.com/0D50X00009Xka36SAB
I provided a workaround if it helps anyone.
Regards,
Bertrand.