277 lines
8.2 KiB
C
277 lines
8.2 KiB
C
/**
|
|
******************************************************************************
|
|
* @file RTC/RTC_Calendar/Src/main.c
|
|
* @author MCD Application Team
|
|
* @brief This sample code shows how to use STM32F1xx RTC HAL API to configure
|
|
* Time and Date.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2016 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.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "main.h"
|
|
|
|
/** @addtogroup STM32F1xx_HAL_Examples
|
|
* @{
|
|
*/
|
|
|
|
/** @addtogroup RTC_Calendar
|
|
* @{
|
|
*/
|
|
|
|
/* Private typedef -----------------------------------------------------------*/
|
|
/* Private define ------------------------------------------------------------*/
|
|
/* Private macro -------------------------------------------------------------*/
|
|
/* Private variables ---------------------------------------------------------*/
|
|
/* RTC handler declaration */
|
|
RTC_HandleTypeDef RtcHandle;
|
|
|
|
/* Buffers used for displaying Time and Date */
|
|
uint8_t aShowTime[50] = {0};
|
|
uint8_t aShowDate[50] = {0};
|
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
void SystemClock_Config(void);
|
|
static void RTC_CalendarConfig(void);
|
|
static void RTC_CalendarShow(uint8_t *showtime, uint8_t *showdate);
|
|
|
|
/* Private functions ---------------------------------------------------------*/
|
|
|
|
/**
|
|
* @brief Main program
|
|
* @param None
|
|
* @retval None
|
|
*/
|
|
int main(void)
|
|
{
|
|
/* STM32F103xG HAL library initialization:
|
|
- Configure the Flash prefetch
|
|
- Systick timer is configured by default as source of time base, but user
|
|
can eventually implement his proper time base source (a general purpose
|
|
timer for example or other time source), keeping in mind that Time base
|
|
duration should be kept 1ms since PPP_TIMEOUT_VALUEs are defined and
|
|
handled in milliseconds basis.
|
|
- Set NVIC Group Priority to 4
|
|
- Low Level Initialization
|
|
*/
|
|
HAL_Init();
|
|
|
|
/* Configure the system clock to 72 MHz */
|
|
SystemClock_Config();
|
|
|
|
/* Configure LED1, LED2, LED3 and LED4 */
|
|
BSP_LED_Init(LED1);
|
|
BSP_LED_Init(LED2);
|
|
BSP_LED_Init(LED3);
|
|
BSP_LED_Init(LED4);
|
|
|
|
/* Turn on LED1 */
|
|
BSP_LED_On(LED1);
|
|
|
|
/*##-1- Configure the RTC peripheral #######################################*/
|
|
/* Configure RTC prescaler and RTC data registers */
|
|
/* RTC configured as follow:
|
|
- Asynch Prediv = Calculated automatically by HAL */
|
|
RtcHandle.Instance = RTC;
|
|
RtcHandle.Init.AsynchPrediv = RTC_AUTO_1_SECOND;
|
|
|
|
if (HAL_RTC_Init(&RtcHandle) != HAL_OK)
|
|
{
|
|
/* Initialization Error */
|
|
Error_Handler();
|
|
}
|
|
|
|
/*##-2- Check if Data stored in BackUp register1: No Need to reconfigure RTC#*/
|
|
/* Read the Back Up Register 1 Data */
|
|
if (HAL_RTCEx_BKUPRead(&RtcHandle, RTC_BKP_DR1) != 0x32F2)
|
|
{
|
|
/* Configure RTC Calendar */
|
|
RTC_CalendarConfig();
|
|
}
|
|
else
|
|
{
|
|
/* Check if the Power On Reset flag is set */
|
|
if (__HAL_RCC_GET_FLAG(RCC_FLAG_PORRST) != RESET)
|
|
{
|
|
/* Turn on LED2: Power on reset occurred */
|
|
BSP_LED_On(LED2);
|
|
}
|
|
/* Check if Pin Reset flag is set */
|
|
if (__HAL_RCC_GET_FLAG(RCC_FLAG_PINRST) != RESET)
|
|
{
|
|
/* Turn on LED4: External reset occurred */
|
|
BSP_LED_On(LED4);
|
|
}
|
|
/* Clear source Reset Flag */
|
|
__HAL_RCC_CLEAR_RESET_FLAGS();
|
|
}
|
|
|
|
/* Infinite loop */
|
|
while (1)
|
|
{
|
|
/*##-3- Display the updated Time and Date ################################*/
|
|
RTC_CalendarShow(aShowTime, aShowDate);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief System Clock Configuration
|
|
* The system Clock is configured as follow :
|
|
* System Clock source = PLL (HSE)
|
|
* SYSCLK(Hz) = 72000000
|
|
* HCLK(Hz) = 72000000
|
|
* AHB Prescaler = 1
|
|
* APB1 Prescaler = 2
|
|
* APB2 Prescaler = 1
|
|
* HSE Frequency(Hz) = 8000000
|
|
* HSE PREDIV1 = 1
|
|
* PLLMUL = 9
|
|
* Flash Latency(WS) = 2
|
|
* @param None
|
|
* @retval None
|
|
*/
|
|
void SystemClock_Config(void)
|
|
{
|
|
RCC_ClkInitTypeDef clkinitstruct = {0};
|
|
RCC_OscInitTypeDef oscinitstruct = {0};
|
|
|
|
/* Enable HSE Oscillator and activate PLL with HSE as source */
|
|
oscinitstruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
|
|
oscinitstruct.HSEState = RCC_HSE_ON;
|
|
oscinitstruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
|
|
oscinitstruct.PLL.PLLState = RCC_PLL_ON;
|
|
oscinitstruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
|
|
oscinitstruct.PLL.PLLMUL = RCC_PLL_MUL9;
|
|
if (HAL_RCC_OscConfig(&oscinitstruct)!= HAL_OK)
|
|
{
|
|
/* Initialization Error */
|
|
while(1);
|
|
}
|
|
|
|
/* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2
|
|
clocks dividers */
|
|
clkinitstruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2);
|
|
clkinitstruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
|
|
clkinitstruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
|
|
clkinitstruct.APB2CLKDivider = RCC_HCLK_DIV1;
|
|
clkinitstruct.APB1CLKDivider = RCC_HCLK_DIV2;
|
|
if (HAL_RCC_ClockConfig(&clkinitstruct, FLASH_LATENCY_2)!= HAL_OK)
|
|
{
|
|
/* Initialization Error */
|
|
while(1);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @brief This function is executed in case of error occurrence.
|
|
* @param None
|
|
* @retval None
|
|
*/
|
|
void Error_Handler(void)
|
|
{
|
|
/* Turn LED3 on */
|
|
BSP_LED_On(LED3);
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief Configure the current time and date.
|
|
* @param None
|
|
* @retval None
|
|
*/
|
|
static void RTC_CalendarConfig(void)
|
|
{
|
|
RTC_DateTypeDef sdatestructure;
|
|
RTC_TimeTypeDef stimestructure;
|
|
|
|
/*##-1- Configure the Date #################################################*/
|
|
/* Set Date: Tuesday February 18th 2014 */
|
|
sdatestructure.Year = 0x14;
|
|
sdatestructure.Month = RTC_MONTH_FEBRUARY;
|
|
sdatestructure.Date = 0x18;
|
|
sdatestructure.WeekDay = RTC_WEEKDAY_TUESDAY;
|
|
|
|
if(HAL_RTC_SetDate(&RtcHandle,&sdatestructure,RTC_FORMAT_BCD) != HAL_OK)
|
|
{
|
|
/* Initialization Error */
|
|
Error_Handler();
|
|
}
|
|
|
|
/*##-2- Configure the Time #################################################*/
|
|
/* Set Time: 02:00:00 */
|
|
stimestructure.Hours = 0x02;
|
|
stimestructure.Minutes = 0x00;
|
|
stimestructure.Seconds = 0x00;
|
|
|
|
if (HAL_RTC_SetTime(&RtcHandle, &stimestructure, RTC_FORMAT_BCD) != HAL_OK)
|
|
{
|
|
/* Initialization Error */
|
|
Error_Handler();
|
|
}
|
|
|
|
/*##-3- Writes a data in a RTC Backup data Register1 #######################*/
|
|
HAL_RTCEx_BKUPWrite(&RtcHandle, RTC_BKP_DR1, 0x32F2);
|
|
}
|
|
|
|
/**
|
|
* @brief Display the current time and date.
|
|
* @param showtime : pointer to buffer
|
|
* @param showdate : pointer to buffer
|
|
* @retval None
|
|
*/
|
|
static void RTC_CalendarShow(uint8_t *showtime, uint8_t *showdate)
|
|
{
|
|
RTC_DateTypeDef sdatestructureget;
|
|
RTC_TimeTypeDef stimestructureget;
|
|
|
|
/* Get the RTC current Time */
|
|
HAL_RTC_GetTime(&RtcHandle, &stimestructureget, RTC_FORMAT_BIN);
|
|
/* Get the RTC current Date */
|
|
HAL_RTC_GetDate(&RtcHandle, &sdatestructureget, RTC_FORMAT_BIN);
|
|
/* Display time Format : hh:mm:ss */
|
|
sprintf((char *)showtime, "%2d:%2d:%2d", stimestructureget.Hours, stimestructureget.Minutes, stimestructureget.Seconds);
|
|
/* Display date Format : mm-dd-yy */
|
|
sprintf((char *)showdate, "%2d-%2d-%2d", sdatestructureget.Month, sdatestructureget.Date, 2000 + sdatestructureget.Year);
|
|
}
|
|
|
|
#ifdef USE_FULL_ASSERT
|
|
|
|
/**
|
|
* @brief Reports the name of the source file and the source line number
|
|
* where the assert_param error has occurred.
|
|
* @param file: pointer to the source file name
|
|
* @param line: assert_param error line source number
|
|
* @retval None
|
|
*/
|
|
void assert_failed(uint8_t *file, uint32_t line)
|
|
{
|
|
/* User can add his own implementation to report the file name and line number,
|
|
ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
|
|
|
|
/* Infinite loop */
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
#endif
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|