mirror of
https://github.com/xiaotianbc/AT32_BSPV1_Clion_Template.git
synced 2026-05-21 01:12:16 +00:00
125 lines
3.1 KiB
C
125 lines
3.1 KiB
C
|
|
/**
|
||
|
|
**************************************************************************
|
||
|
|
* File : at32f4xx_rtc.h
|
||
|
|
* Version: V1.3.0
|
||
|
|
* Date : 2021-03-18
|
||
|
|
* Brief : at32f4xx RTC header file
|
||
|
|
**************************************************************************
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
||
|
|
#ifndef __AT32F4XX_RTC_H
|
||
|
|
#define __AT32F4XX_RTC_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
/* Includes ------------------------------------------------------------------*/
|
||
|
|
#include "at32f4xx.h"
|
||
|
|
|
||
|
|
/** @addtogroup at32f4xx_StdPeriph_Driver
|
||
|
|
* @{
|
||
|
|
*/
|
||
|
|
|
||
|
|
/** @addtogroup RTC
|
||
|
|
* @{
|
||
|
|
*/
|
||
|
|
|
||
|
|
/** @defgroup RTC_Exported_Types
|
||
|
|
* @{
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @}
|
||
|
|
*/
|
||
|
|
|
||
|
|
/** @defgroup RTC_Exported_Constants
|
||
|
|
* @{
|
||
|
|
*/
|
||
|
|
|
||
|
|
/** @defgroup RTC_interrupts_define
|
||
|
|
* @{
|
||
|
|
*/
|
||
|
|
|
||
|
|
#define RTC_INT_OV ((uint16_t)0x0004) /*!< Overflow interrupt */
|
||
|
|
#define RTC_INT_ALA ((uint16_t)0x0002) /*!< Alarm interrupt */
|
||
|
|
#define RTC_INT_PACE ((uint16_t)0x0001) /*!< Second interrupt */
|
||
|
|
#define IS_RTC_INT(INT) ((((INT) & (uint16_t)0xFFF8) == 0x00) && ((INT) != 0x00))
|
||
|
|
#define IS_RTC_GET_INT(INT) (((INT) == RTC_INT_OV) || ((INT) == RTC_INT_ALA) || \
|
||
|
|
((INT) == RTC_INT_PACE))
|
||
|
|
/**
|
||
|
|
* @}
|
||
|
|
*/
|
||
|
|
|
||
|
|
/** @defgroup RTC_interrupts_flags
|
||
|
|
* @{
|
||
|
|
*/
|
||
|
|
|
||
|
|
#define RTC_FLAG_RTF ((uint16_t)0x0020) /*!< RTC Operation OFF flag */
|
||
|
|
#define RTC_FLAG_RSYNF ((uint16_t)0x0008) /*!< Registers Synchronized flag */
|
||
|
|
#define RTC_FLAG_OV ((uint16_t)0x0004) /*!< Overflow flag */
|
||
|
|
#define RTC_FLAG_ALA ((uint16_t)0x0002) /*!< Alarm flag */
|
||
|
|
#define RTC_FLAG_PACE ((uint16_t)0x0001) /*!< Second flag */
|
||
|
|
#define IS_RTC_CLEAR_FLAG(FLAG) ((((FLAG) & (uint16_t)0xFFF0) == 0x00) && ((FLAG) != 0x00))
|
||
|
|
#define IS_RTC_GET_FLAG(FLAG) (((FLAG) == RTC_FLAG_RTF) || ((FLAG) == RTC_FLAG_RSYNF) || \
|
||
|
|
((FLAG) == RTC_FLAG_OV) || ((FLAG) == RTC_FLAG_ALA) || \
|
||
|
|
((FLAG) == RTC_FLAG_PACE))
|
||
|
|
#define IS_RTC_DIV(DIV) ((DIV) <= 0xFFFFF)
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @}
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @}
|
||
|
|
*/
|
||
|
|
|
||
|
|
/** @defgroup RTC_Exported_Macros
|
||
|
|
* @{
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @}
|
||
|
|
*/
|
||
|
|
|
||
|
|
/** @defgroup RTC_Exported_Functions
|
||
|
|
* @{
|
||
|
|
*/
|
||
|
|
FlagStatus RTC_GetFlagStatus(uint16_t RTC_FLAG);
|
||
|
|
void RTC_ClearFlag(uint16_t RTC_FLAG);
|
||
|
|
ITStatus RTC_GetINTStatus(uint16_t RTC_INT);
|
||
|
|
uint32_t RTC_GetDivider(void);
|
||
|
|
void RTC_WaitForLastTask(void);
|
||
|
|
void RTC_WaitForSynchro(void);
|
||
|
|
void RTC_ClearINTPendingBit(uint16_t RTC_INT);
|
||
|
|
void RTC_SetCounter(uint32_t CounterValue);
|
||
|
|
void RTC_SetDIV(uint32_t PrescalerValue);
|
||
|
|
void RTC_SetAlarmValue(uint32_t AlarmValue);
|
||
|
|
void RTC_INTConfig(uint16_t RTC_INT, FunctionalState NewState);
|
||
|
|
void RTC_EnterConfigMode(void);
|
||
|
|
void RTC_ExitConfigMode(void);
|
||
|
|
uint32_t RTC_GetCounter(void);
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* __AT32F4XX_RTC_H */
|
||
|
|
/**
|
||
|
|
* @}
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @}
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @}
|
||
|
|
*/
|
||
|
|
|
||
|
|
|