This commit is contained in:
小冯Sir 2024-05-03 14:00:17 +08:00
parent 3d99c89bb1
commit b2c26b7096

View File

@ -27,7 +27,8 @@
RTC_HandleTypeDef hrtc; RTC_HandleTypeDef hrtc;
/* RTC init function */ /* RTC init function */
void MX_RTC_Init(void) { void MX_RTC_Init(void)
{
/* USER CODE BEGIN RTC_Init 0 */ /* USER CODE BEGIN RTC_Init 0 */
@ -45,7 +46,8 @@ void MX_RTC_Init(void) {
hrtc.Instance = RTC; hrtc.Instance = RTC;
hrtc.Init.AsynchPrediv = RTC_AUTO_1_SECOND; hrtc.Init.AsynchPrediv = RTC_AUTO_1_SECOND;
hrtc.Init.OutPut = RTC_OUTPUTSOURCE_ALARM; hrtc.Init.OutPut = RTC_OUTPUTSOURCE_ALARM;
if (HAL_RTC_Init(&hrtc) != HAL_OK) { if (HAL_RTC_Init(&hrtc) != HAL_OK)
{
Error_Handler(); Error_Handler();
} }
@ -69,7 +71,8 @@ void MX_RTC_Init(void) {
sTime.Minutes = 0; sTime.Minutes = 0;
sTime.Seconds = 0; sTime.Seconds = 0;
if (HAL_RTC_SetTime(&hrtc, &sTime, RTC_FORMAT_BIN) != HAL_OK) { if (HAL_RTC_SetTime(&hrtc, &sTime, RTC_FORMAT_BIN) != HAL_OK)
{
Error_Handler(); Error_Handler();
} }
DateToUpdate.WeekDay = RTC_WEEKDAY_MONDAY; DateToUpdate.WeekDay = RTC_WEEKDAY_MONDAY;
@ -77,7 +80,8 @@ void MX_RTC_Init(void) {
DateToUpdate.Date = 1; DateToUpdate.Date = 1;
DateToUpdate.Year = 0; DateToUpdate.Year = 0;
if (HAL_RTC_SetDate(&hrtc, &DateToUpdate, RTC_FORMAT_BIN) != HAL_OK) { if (HAL_RTC_SetDate(&hrtc, &DateToUpdate, RTC_FORMAT_BIN) != HAL_OK)
{
Error_Handler(); Error_Handler();
} }
/* USER CODE BEGIN RTC_Init 2 */ /* USER CODE BEGIN RTC_Init 2 */
@ -86,9 +90,11 @@ void MX_RTC_Init(void) {
} }
void HAL_RTC_MspInit(RTC_HandleTypeDef *rtcHandle) { void HAL_RTC_MspInit(RTC_HandleTypeDef* rtcHandle)
{
if (rtcHandle->Instance == RTC) { if(rtcHandle->Instance==RTC)
{
/* USER CODE BEGIN RTC_MspInit 0 */ /* USER CODE BEGIN RTC_MspInit 0 */
/* USER CODE END RTC_MspInit 0 */ /* USER CODE END RTC_MspInit 0 */
@ -109,9 +115,11 @@ void HAL_RTC_MspInit(RTC_HandleTypeDef *rtcHandle) {
} }
} }
void HAL_RTC_MspDeInit(RTC_HandleTypeDef *rtcHandle) { void HAL_RTC_MspDeInit(RTC_HandleTypeDef* rtcHandle)
{
if (rtcHandle->Instance == RTC) { if(rtcHandle->Instance==RTC)
{
/* USER CODE BEGIN RTC_MspDeInit 0 */ /* USER CODE BEGIN RTC_MspDeInit 0 */
/* USER CODE END RTC_MspDeInit 0 */ /* USER CODE END RTC_MspDeInit 0 */