123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /* USER CODE BEGIN Header */
- /**
- ******************************************************************************
- * @file rtc.c
- * @brief This file provides code for the configuration
- * of the RTC instances.
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2024 STMicroelectronics.
- * All rights reserved.
- *
- * This software is licensed under terms that can be found in the LICENSE file
- * in the root directory of this software component.
- * If no LICENSE file comes with this software, it is provided AS-IS.
- *
- ******************************************************************************
- */
- /* USER CODE END Header */
- /* Includes ------------------------------------------------------------------*/
- #include "rtc.h"
- /* USER CODE BEGIN 0 */
- RTC_TimeTypeDef sTime = {0};
- RTC_DateTypeDef DateToUpdate = {0};
- /* USER CODE END 0 */
- RTC_HandleTypeDef hrtc;
- /* RTC init function */
- void MX_RTC_Init(void)
- {
- /* USER CODE BEGIN RTC_Init 0 */
- /* USER CODE END RTC_Init 0 */
- RTC_TimeTypeDef sTime = {0};
- RTC_DateTypeDef DateToUpdate = {0};
- /* USER CODE BEGIN RTC_Init 1 */
- /* USER CODE END RTC_Init 1 */
- /** Initialize RTC Only
- */
- hrtc.Instance = RTC;
- hrtc.Init.AsynchPrediv = RTC_AUTO_1_SECOND;
- hrtc.Init.OutPut = RTC_OUTPUTSOURCE_NONE;
- if (HAL_RTC_Init(&hrtc) != HAL_OK)
- {
- Error_Handler();
- }
- /* USER CODE BEGIN Check_RTC_BKUP */
- /* USER CODE END Check_RTC_BKUP */
- /** Initialize RTC and set the Time and Date
- */
- sTime.Hours = 0x13;
- sTime.Minutes = 0x0;
- sTime.Seconds = 0x0;
- if (HAL_RTC_SetTime(&hrtc, &sTime, RTC_FORMAT_BCD) != HAL_OK)
- {
- Error_Handler();
- }
- DateToUpdate.WeekDay = RTC_WEEKDAY_THURSDAY;
- DateToUpdate.Month = RTC_MONTH_JANUARY;
- DateToUpdate.Date = 0x18;
- DateToUpdate.Year = 0x23;
- if (HAL_RTC_SetDate(&hrtc, &DateToUpdate, RTC_FORMAT_BCD) != HAL_OK)
- {
- Error_Handler();
- }
- /* USER CODE BEGIN RTC_Init 2 */
-
-
- /* USER CODE END RTC_Init 2 */
- }
- void HAL_RTC_MspInit(RTC_HandleTypeDef* rtcHandle)
- {
- if(rtcHandle->Instance==RTC)
- {
- /* USER CODE BEGIN RTC_MspInit 0 */
- /* USER CODE END RTC_MspInit 0 */
- HAL_PWR_EnableBkUpAccess();
- /* Enable BKP CLK enable for backup registers */
- __HAL_RCC_BKP_CLK_ENABLE();
- /* RTC clock enable */
- __HAL_RCC_RTC_ENABLE();
- /* RTC interrupt Init */
- HAL_NVIC_SetPriority(RTC_IRQn, 5, 0);
- HAL_NVIC_EnableIRQ(RTC_IRQn);
- /* USER CODE BEGIN RTC_MspInit 1 */
- /* USER CODE END RTC_MspInit 1 */
- }
- }
- void HAL_RTC_MspDeInit(RTC_HandleTypeDef* rtcHandle)
- {
- if(rtcHandle->Instance==RTC)
- {
- /* USER CODE BEGIN RTC_MspDeInit 0 */
- /* USER CODE END RTC_MspDeInit 0 */
- /* Peripheral clock disable */
- __HAL_RCC_RTC_DISABLE();
- /* RTC interrupt Deinit */
- HAL_NVIC_DisableIRQ(RTC_IRQn);
- /* USER CODE BEGIN RTC_MspDeInit 1 */
- /* USER CODE END RTC_MspDeInit 1 */
- }
- }
- /* USER CODE BEGIN 1 */
- void SyncTime(uint8_t year, uint8_t month, uint8_t day, uint8_t hour, uint8_t minutes, uint8_t seconds)
- {
- sTime.Hours = hour;
- sTime.Minutes = minutes;
- sTime.Seconds = seconds;
- if (HAL_RTC_SetTime(&hrtc, &sTime, RTC_FORMAT_BCD) != HAL_OK)
- {
- Error_Handler();
- }
- DateToUpdate.WeekDay = RTC_WEEKDAY_THURSDAY;
- DateToUpdate.Month = month;
- DateToUpdate.Date = day;
- DateToUpdate.Year = year;
- if (HAL_RTC_SetDate(&hrtc, &DateToUpdate, RTC_FORMAT_BCD) != HAL_OK)
- {
- Error_Handler();
- }
- }
- /* USER CODE END 1 */
|