333 lines
		
	
	
		
			9.4 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			333 lines
		
	
	
		
			9.4 KiB
		
	
	
	
		
			C
		
	
	
	
| /**
 | |
|   ******************************************************************************
 | |
|   * @file    Examples_LL/RTC/RTC_Tamper/Src/main.c
 | |
|   * @author  MCD Application Team
 | |
|   * @brief   This sample code shows how to use STM32F1xx RTC LL API
 | |
|   *          to write/read data to/from RTC Backup data registers and demonstrates 
 | |
|   *          the Tamper detection feature.
 | |
|   ******************************************************************************
 | |
|   * @attention
 | |
|   *
 | |
|   * <h2><center>© Copyright (c) 2017 STMicroelectronics.
 | |
|   * All rights reserved.</center></h2>
 | |
|   *
 | |
|   * This software component is licensed by ST under BSD 3-Clause license,
 | |
|   * the "License"; You may not use this file except in compliance with the
 | |
|   * License. You may obtain a copy of the License at:
 | |
|   *                        opensource.org/licenses/BSD-3-Clause
 | |
|   *
 | |
|   ******************************************************************************
 | |
|   */
 | |
| 
 | |
| /* Includes ------------------------------------------------------------------*/
 | |
| #include "main.h"
 | |
| 
 | |
| /** @addtogroup STM32F1xx_LL_Examples
 | |
|   * @{
 | |
|   */
 | |
| 
 | |
| /** @addtogroup RTC_Tamper
 | |
|   * @{
 | |
|   */
 | |
| 
 | |
| /* Private typedef -----------------------------------------------------------*/
 | |
| /* Private define ------------------------------------------------------------*/
 | |
| #define BACKUP_COUNT RTC_BKP_NUMBER
 | |
| 
 | |
| /* Private macro -------------------------------------------------------------*/
 | |
| /* Private variables ---------------------------------------------------------*/
 | |
| __IO FlagStatus TamperStatus;
 | |
| 
 | |
| /* Backup registers table */
 | |
| uint32_t aBKPDataReg[BACKUP_COUNT] =
 | |
| {
 | |
|   LL_RTC_BKP_DR1,  LL_RTC_BKP_DR2, LL_RTC_BKP_DR3,  
 | |
|   LL_RTC_BKP_DR4,  LL_RTC_BKP_DR5, LL_RTC_BKP_DR6,  
 | |
|   LL_RTC_BKP_DR7,  LL_RTC_BKP_DR8, LL_RTC_BKP_DR9,  
 | |
|   LL_RTC_BKP_DR10, 
 | |
| };
 | |
| 
 | |
| /* Private function prototypes -----------------------------------------------*/
 | |
| void     SystemClock_Config(void);
 | |
| void     Configure_RTC(void);
 | |
| void     Configure_RTC_Tamper(void);
 | |
| void     LED_Init(void);
 | |
| void     LED_On(void);
 | |
| void     LED_Blinking(uint32_t Period);
 | |
| 
 | |
| /* Private functions ---------------------------------------------------------*/
 | |
| 
 | |
| /**
 | |
|   * @brief  Main program
 | |
|   * @param  None
 | |
|   * @retval None
 | |
|   */
 | |
| int main(void)
 | |
| {
 | |
|   register uint32_t index = 0;
 | |
| 
 | |
|   /* Configure the system clock to 120 MHz */
 | |
|   SystemClock_Config();
 | |
| 
 | |
|   /* Initialize LED1 */
 | |
|   LED_Init();
 | |
| 
 | |
|   /* Configure the RTC peripheral */
 | |
|   Configure_RTC();
 | |
| 
 | |
|   /* Configure RTC Tamper */
 | |
|   Configure_RTC_Tamper();
 | |
| 
 | |
|   /* Write Data on the Back Up registers  */
 | |
|   for (index = 0; index < BACKUP_COUNT; index++)
 | |
|   {
 | |
|     LL_RTC_BKP_SetRegister(BKP, aBKPDataReg[index], 0xDF59 + (index * 0x5A));
 | |
|   }
 | |
| 
 | |
|   /* Check Data is stored on the Back Up registers */
 | |
|   for (index = 0; index < BACKUP_COUNT; index++)
 | |
|   {
 | |
|     if (LL_RTC_BKP_GetRegister(BKP, aBKPDataReg[index]) != (0xDF59 + (index * 0x5A)))
 | |
|     {
 | |
|       LED_Blinking(LED_BLINK_ERROR);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   /* Reset flag after writing of backup register in order to wait for new button press */
 | |
|   TamperStatus = RESET;
 | |
| 
 | |
|   /* Wait for Tamper detection */
 | |
|   while(TamperStatus != SET)
 | |
|   {
 | |
|     LL_GPIO_TogglePin(LED1_GPIO_PORT, LED1_PIN);  
 | |
|     LL_mDelay(LED_BLINK_FAST);
 | |
|   }
 | |
|   
 | |
|   /* LED1 On: Tamper button pressed */
 | |
|   LED_On();
 | |
|     
 | |
|   /* Infinite loop */
 | |
|   while (1)
 | |
|   {
 | |
|   }
 | |
| }
 | |
| 
 | |
| /**
 | |
|   * @brief  Configure RTC.
 | |
|   * @param  None
 | |
|   * @retval None
 | |
|   */
 | |
| void Configure_RTC(void)
 | |
| {
 | |
|   /* Enables the PWR Clock and Enables access to the backup domain */
 | |
|   LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_PWR | LL_APB1_GRP1_PERIPH_BKP);
 | |
|   LL_PWR_EnableBkUpAccess();
 | |
| 
 | |
|   /* Enable RTC Clock */ 
 | |
|   LL_RCC_EnableRTC();
 | |
| }
 | |
| 
 | |
| /**
 | |
|   * @brief  Configure the current time and date and activate Tamper.
 | |
|   * @note   Peripheral configuration is minimal configuration from reset values.
 | |
|   *         Thus, some useless LL unitary functions calls below are provided as
 | |
|   *         commented examples - setting is default configuration from reset.
 | |
|   * @param  None
 | |
|   * @retval None
 | |
|   */
 | |
| void Configure_RTC_Tamper(void)
 | |
| {
 | |
|   /* Sampling frequency */
 | |
|   /* Reset value is LL_RTC_TAMPER_SAMPLFREQDIV_32768 */
 | |
|   //LL_RTC_TAMPER_SetSamplingFreq(RTC, LL_RTC_TAMPER_SAMPLFREQDIV_32768);
 | |
|   /* Precharge duration */
 | |
|   /* Reset value is LL_RTC_TAMPER_DURATION_1RTCCLK */
 | |
|   //LL_RTC_TAMPER_SetPrecharge(RTC, LL_RTC_TAMPER_DURATION_1RTCCLK);
 | |
|   /* Enable Pull up */
 | |
|   /* Reset value is pull-up enabled */
 | |
|   //LL_RTC_TAMPER_EnablePullUp(RTC);
 | |
|   /* Disable timestamp on tamper detection */
 | |
|   /* Reset value is timestamp on tamper disabled */
 | |
|   //LL_RTC_TS_DisableOnTamper(RTC);
 | |
|   
 | |
|   /* Set Tamper trigger to falling edge */
 | |
|   /* Reset value is LL_RTC_TAMPER_FILTER_DISABLE */
 | |
|   //LL_RTC_TAMPER_SetFilterCount(RTC, LL_RTC_TAMPER_FILTER_DISABLE);
 | |
|   LL_RTC_TAMPER_SetActiveLevel(BKP, LL_RTC_TAMPER_ACTIVELEVEL_LOW);
 | |
|   
 | |
|   /* Enable tamper detection */
 | |
|   LL_RTC_TAMPER_Enable(BKP);
 | |
|   
 | |
|   /* Enable IT TAMPER */
 | |
|   LL_RTC_EnableIT_TAMP(BKP);
 | |
| 
 | |
|   /* Configure the NVIC for RTC Tamper */
 | |
|   NVIC_SetPriority(TAMPER_IRQn, 0x0F);
 | |
|   NVIC_EnableIRQ(TAMPER_IRQn);
 | |
|   
 | |
|   /* Clear the Tamper interrupt pending bit */
 | |
|   LL_RTC_ClearFlag_TAMPI(BKP);
 | |
| }
 | |
| 
 | |
| /**
 | |
|   * @brief  Initialize LED1.
 | |
|   * @param  None
 | |
|   * @retval None
 | |
|   */
 | |
| void LED_Init(void)
 | |
| {
 | |
|   /* Enable the LED1 Clock */
 | |
|   LED1_GPIO_CLK_ENABLE();
 | |
| 
 | |
|   /* Configure IO in output push-pull mode to drive external LED1 */
 | |
|   LL_GPIO_SetPinMode(LED1_GPIO_PORT, LED1_PIN, LL_GPIO_MODE_OUTPUT);
 | |
|   /* Reset value is LL_GPIO_OUTPUT_PUSHPULL */
 | |
|   //LL_GPIO_SetPinOutputType(LED1_GPIO_PORT, LED1_PIN, LL_GPIO_OUTPUT_PUSHPULL);
 | |
|   /* Reset value is LL_GPIO_SPEED_FREQ_LOW */
 | |
|   //LL_GPIO_SetPinSpeed(LED1_GPIO_PORT, LED1_PIN, LL_GPIO_SPEED_FREQ_LOW);
 | |
|   /* Reset value is LL_GPIO_PULL_NO */
 | |
|   //LL_GPIO_SetPinPull(LED1_GPIO_PORT, LED1_PIN, LL_GPIO_PULL_NO);
 | |
| }
 | |
| 
 | |
| /**
 | |
|   * @brief  Turn-on LED1.
 | |
|   * @param  None
 | |
|   * @retval None
 | |
|   */
 | |
| void LED_On(void)
 | |
| {
 | |
|   /* Turn LED1 on */
 | |
|   LL_GPIO_SetOutputPin(LED1_GPIO_PORT, LED1_PIN);
 | |
| }
 | |
| 
 | |
| /**
 | |
|   * @brief  Set LED1 to Blinking mode for an infinite loop (toggle period based on value provided as input parameter).
 | |
|   * @param  Period : Period of time (in ms) between each toggling of LED
 | |
|   *   This parameter can be user defined values. Pre-defined values used in that example are :
 | |
|   *     @arg LED_BLINK_FAST : Fast Blinking
 | |
|   *     @arg LED_BLINK_SLOW : Slow Blinking
 | |
|   *     @arg LED_BLINK_ERROR : Error specific Blinking
 | |
|   * @retval None
 | |
|   */
 | |
| void LED_Blinking(uint32_t Period)
 | |
| {
 | |
|   /* Toggle IO in an infinite loop */
 | |
|   while (1)
 | |
|   {
 | |
|     LL_GPIO_TogglePin(LED1_GPIO_PORT, LED1_PIN);  
 | |
|     LL_mDelay(Period);
 | |
|   }
 | |
| }
 | |
| 
 | |
| /**           
 | |
|   * @brief  System Clock Configuration
 | |
|   *         The system Clock is configured as follow : 
 | |
|   *            System Clock source            = PLL (HSE)
 | |
|   *            SYSCLK(Hz)                     = 120000000
 | |
|   *            HCLK(Hz)                       = 120000000
 | |
|   *            AHB Prescaler                  = 1
 | |
|   *            APB1 Prescaler                 = 4
 | |
|   *            APB2 Prescaler                 = 2
 | |
|   *            HSI Frequency(Hz)              = 80000000
 | |
|   *            PLL_M                          = 8
 | |
|   *            PLL_N                          = 240
 | |
|   *            PLL_P                          = 2
 | |
|   *            VDD(V)                         = 3.3
 | |
|   *            Main regulator output voltage  = Scale1 mode
 | |
|   *            Flash Latency(WS)              = 3
 | |
|   */
 | |
| void SystemClock_Config(void)
 | |
| {
 | |
|   /* Set FLASH latency */
 | |
|   LL_FLASH_SetLatency(LL_FLASH_LATENCY_2);
 | |
| 
 | |
|   /* Enable HSE oscillator */
 | |
|   LL_RCC_HSE_EnableBypass();
 | |
|   LL_RCC_HSE_Enable();
 | |
|   while(LL_RCC_HSE_IsReady() != 1)
 | |
|   {
 | |
|   };
 | |
| 
 | |
|   /* Main PLL configuration and activation */
 | |
|   LL_RCC_PLL_ConfigDomain_SYS(LL_RCC_PLLSOURCE_HSE_DIV_1, LL_RCC_PLL_MUL_9);
 | |
| 
 | |
|   LL_RCC_PLL_Enable();
 | |
|   while(LL_RCC_PLL_IsReady() != 1)
 | |
|   {
 | |
|   };
 | |
| 
 | |
|   /* Sysclk activation on the main PLL */
 | |
|   LL_RCC_SetAHBPrescaler(LL_RCC_SYSCLK_DIV_1);
 | |
|   LL_RCC_SetSysClkSource(LL_RCC_SYS_CLKSOURCE_PLL);
 | |
|   while(LL_RCC_GetSysClkSource() != LL_RCC_SYS_CLKSOURCE_STATUS_PLL)
 | |
|   {
 | |
|   };
 | |
| 
 | |
|   /* Set APB1 & APB2 prescaler*/
 | |
|   LL_RCC_SetAPB1Prescaler(LL_RCC_APB1_DIV_2);
 | |
|   LL_RCC_SetAPB2Prescaler(LL_RCC_APB2_DIV_1);
 | |
| 
 | |
|   /* Set systick to 1ms in using frequency set to 72MHz */
 | |
|   LL_Init1msTick(72000000);
 | |
| 
 | |
|   /* Update CMSIS variable (which can be updated also through SystemCoreClockUpdate function) */
 | |
|   LL_SetSystemCoreClock(72000000);
 | |
| }
 | |
| 
 | |
| /******************************************************************************/
 | |
| /*   USER IRQ HANDLER TREATMENT                                               */
 | |
| /******************************************************************************/
 | |
| /**
 | |
|   * @brief  Tamper event callback function
 | |
|   * @param  None
 | |
|   * @retval None
 | |
|   */
 | |
| void Tamper_Callback(void)
 | |
| {
 | |
|   register uint32_t index = 0;
 | |
|   
 | |
|   /* Deactivate the tamper */
 | |
|   LL_RTC_TAMPER_Disable(BKP);
 | |
|     
 | |
|   /* Check Data is cleared on the Back Up registers */
 | |
|   for (index = 0; index < BACKUP_COUNT; index++)
 | |
|   {
 | |
|     if (LL_RTC_BKP_GetRegister(BKP, aBKPDataReg[index]) != 0x00)
 | |
|     {
 | |
|       LED_Blinking(LED_BLINK_ERROR);
 | |
|     }
 | |
|   }
 | |
|   TamperStatus = SET;
 | |
| }
 | |
| 
 | |
| #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", file, line) */
 | |
| 
 | |
|   /* Infinite loop */
 | |
|   while (1)
 | |
|   {
 | |
|   }
 | |
| }
 | |
| #endif
 | |
| 
 | |
| /**
 | |
|   * @}
 | |
|   */
 | |
| 
 | |
| /**
 | |
|   * @}
 | |
|   */
 | |
| 
 | |
| /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
 |