123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- /**************************************************************************//**
- * @file rtc.h
- * @version V1.00
- * $Revision: 18 $
- * $Date: 14/10/01 2:43p $
- * @brief NUC472/NUC442 RTC driver header file
- *
- * @note
- * Copyright (C) 2013 Nuvoton Technology Corp. All rights reserved.
- *****************************************************************************/
- #ifndef __RTC_H
- #define __RTC_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- /** @addtogroup NUC472_442_Device_Driver NUC472/NUC442 Device Driver
- @{
- */
- /** @addtogroup NUC472_442_RTC_Driver RTC Driver
- @{
- */
- /** @addtogroup NUC472_442_RTC_EXPORTED_CONSTANTS RTC Exported Constants
- @{
- */
- #define RTC_INIT_KEY 0xA5EB1357UL /*!< RTC Access Key \hideinitializer */
- #define RTC_WRITE_KEY 0xA965 /*!< RTC Access Key \hideinitializer */
- #define RTC_WAIT_COUNT 0xFFFFFFFF /*!< Initial Time Out Value \hideinitializer */
- #define RTC_YEAR2000 2000 /*!< RTC Reference \hideinitializer */
- #define RTC_FCR_REFERENCE 32761 /*!< RTC Reference \hideinitializer */
- #define RTC_CLOCK_12 0 /*!< RTC 12 Hour \hideinitializer */
- #define RTC_CLOCK_24 1 /*!< RTC 24 Hour \hideinitializer */
- #define RTC_AM 1 /*!< RTC AM \hideinitializer */
- #define RTC_PM 2 /*!< RTC PM \hideinitializer */
- #define RTC_TICK_1_SEC ((uint32_t) 0x00000000) /*!< Time tick is 1 second \hideinitializer */
- #define RTC_TICK_1_2_SEC ((uint32_t) 0x00000001) /*!< Time tick is 1/2 second \hideinitializer */
- #define RTC_TICK_1_4_SEC ((uint32_t) 0x00000002) /*!< Time tick is 1/4 second \hideinitializer */
- #define RTC_TICK_1_8_SEC ((uint32_t) 0x00000003) /*!< Time tick is 1/8 second \hideinitializer */
- #define RTC_TICK_1_16_SEC ((uint32_t) 0x00000004) /*!< Time tick is 1/16 second \hideinitializer */
- #define RTC_TICK_1_32_SEC ((uint32_t) 0x00000005) /*!< Time tick is 1/32 second \hideinitializer */
- #define RTC_TICK_1_64_SEC ((uint32_t) 0x00000006) /*!< Time tick is 1/64 second \hideinitializer */
- #define RTC_TICK_1_128_SEC ((uint32_t) 0x00000007) /*!< Time tick is 1/128 second \hideinitializer */
- #define RTC_SUNDAY ((uint32_t) 0x00000000) /*!< Day of week is sunday \hideinitializer */
- #define RTC_MONDAY ((uint32_t) 0x00000001) /*!< Day of week is monday \hideinitializer */
- #define RTC_TUESDAY ((uint32_t) 0x00000002) /*!< Day of week is tuesday \hideinitializer */
- #define RTC_WEDNESDAY ((uint32_t) 0x00000003) /*!< Day of week is wednesday \hideinitializer */
- #define RTC_THURSDAY ((uint32_t) 0x00000004) /*!< Day of week is thuesday \hideinitializer */
- #define RTC_FRIDAY ((uint32_t) 0x00000005) /*!< Day of week is friday \hideinitializer */
- #define RTC_SATURDAY ((uint32_t) 0x00000006) /*!< Day of week is saturday \hideinitializer */
- #define RTC_TAMPER_0 0 /*!< Select Tamper 0 pin \hideinitializer */
- #define RTC_TAMPER_1 1 /*!< Select Tamper 0 pin \hideinitializer */
- /*@}*/ /* end of group NUC472_442_RTC_EXPORTED_CONSTANTS */
- /** @addtogroup NUC472_442_RTC_EXPORTED_STRUCTS RTC Exported Structs
- @{
- */
- /**
- * @brief RTC define Time Data Struct
- */
- typedef struct {
- uint32_t u32Year; /*!< Year value */
- uint32_t u32Month; /*!< Month value */
- uint32_t u32Day; /*!< Day value */
- uint32_t u32DayOfWeek; /*!< Day of week value */
- uint32_t u32Hour; /*!< Hour value */
- uint32_t u32Minute; /*!< Minute value */
- uint32_t u32Second; /*!< Second value */
- uint32_t u32TimeScale; /*!< 12-Hour, 24-Hour */
- uint32_t u32AmPm; /*!< Only Time Scale select 12-hr used */
- } S_RTC_TIME_DATA_T;
- /*@}*/ /* end of group NUC472_442_RTC_EXPORTED_STRUCTS */
- /** @addtogroup NUC472_442_RTC_EXPORTED_FUNCTIONS RTC Exported Functions
- @{
- */
- /**
- * @brief Read spare register
- *
- * @param[in] u32RegNum The spare register number(0~23)
- *
- * @return Spare register content.
- * \hideinitializer
- */
- #define RTC_READ_SPARE_REGISTER(u32RegNum) (RTC->SPR[u32RegNum])
- /**
- * @brief Write spare register
- *
- * @param[in] u32RegNum The spare register number(0~23)
- * @param[in] u32RegValue The spare register value
- *
- * @return None
- * \hideinitializer
- */
- #define RTC_WRITE_SPARE_REGISTER(u32RegNum, u32RegValue) (RTC->SPR[u32RegNum] = u32RegValue)
- /**
- * @brief According to current time, return this year is leap year or not
- *
- * @param None
- *
- * @return 0 = This year is not a leap year. \n
- * 1 = This year is a leap year.
- * \hideinitializer
- */
- #define RTC_IS_LEAP_YEAR ((RTC->LEAPYEAR & (RTC_LEAPYEAR_LEAPYEAR_Msk))?1:0)
- /**
- * @brief Clear alarm interrupt status.
- *
- * @param None
- *
- * @return None
- * \hideinitializer
- */
- #define RTC_CLEAR_ALARM_INT_FLAG (RTC->INTSTS = RTC_INTSTS_ALMIF_Msk)
- /**
- * @brief Clear tick interrupt status.
- *
- * @param None
- *
- * @return None
- * \hideinitializer
- */
- #define RTC_CLEAR_TICK_INT_FLAG (RTC->INTSTS = RTC_INTSTS_TICKIF_Msk)
- /**
- * @brief Clear tamper detect pin status.
- *
- * @param[in] u32PinNum tamper detect pin number. [ \ref RTC_TAMPER_0 / \ref RTC_TAMPER_1]
- *
- * @return None
- * \hideinitializer
- */
- #define RTC_CLEAR_TAMPER_FLAG(u32PinNum) (RTC->TAMPSTS = (1 << u32PinNum))
- /**
- * @brief Get alarm interrupt status.
- *
- * @param None
- *
- * @return Alarm interrupt status
- * \hideinitializer
- */
- #define RTC_GET_ALARM_INT_FLAG ((RTC->INTSTS & RTC_INTSTS_ALMIF_Msk) >> RTC_INTSTS_ALMIF_Pos)
- /**
- * @brief Get alarm interrupt status.
- *
- * @param None
- *
- * @return Alarm interrupt status
- * \hideinitializer
- */
- #define RTC_GET_TICK_INT_FLAG ((RTC->INTSTS & RTC_INTSTS_TICKIF_Msk) >> RTC_INTSTS_TICKIF_Pos)
- /**
- * @brief Get tamper detect pin status.
- *
- * @param[in] u32PinNum tamper detect pin number. [ \ref RTC_TAMPER_0 / \ref RTC_TAMPER_1]
- *
- * @return Tamper detect pin status
- * \hideinitializer
- */
- #define RTC_GET_TAMPER_FLAG(u32PinNum) ( (RTC->TAMPSTS & (1 << u32PinNum)) >> u32PinNum)
- void RTC_Open(S_RTC_TIME_DATA_T *sPt);
- void RTC_Close(void);
- void RTC_32KCalibration(int32_t i32FrequencyX100);
- void RTC_SetTickPeriod(uint32_t u32TickSelection);
- void RTC_EnableInt(uint32_t u32IntFlagMask);
- void RTC_DisableInt(uint32_t u32IntFlagMask);
- uint32_t RTC_GetDayOfWeek(void);
- void RTC_DisableTamperDetection(uint32_t u32PinNumber);
- void RTC_EnableTamperDetection(uint32_t u32PinNumber, uint32_t u32PinCondition, uint32_t u32IntFlag, uint32_t u32ClearFlag, uint32_t u32DestroyEn);
- void RTC_EnableSpareAccess(void);
- void RTC_SetAlarmTime(uint32_t u32Hour, uint32_t u32Minute, uint32_t u32Second, uint32_t u32TimeMode, uint32_t u32AmPm);
- void RTC_SetAlarmDate(uint32_t u32Year, uint32_t u32Month, uint32_t u32Day);
- void RTC_SetTime(uint32_t u32Hour, uint32_t u32Minute, uint32_t u32Second, uint32_t u32TimeMode, uint32_t u32AmPm);
- void RTC_SetDate(uint32_t u32Year, uint32_t u32Month, uint32_t u32Day, uint32_t u32DayOfWeek);
- void RTC_SetAlarmDateAndTime(S_RTC_TIME_DATA_T *sPt);
- void RTC_SetDateAndTime(S_RTC_TIME_DATA_T *sPt);
- void RTC_GetAlarmDateAndTime(S_RTC_TIME_DATA_T *sPt);
- void RTC_GetDateAndTime(S_RTC_TIME_DATA_T *sPt);
- /*@}*/ /* end of group NUC472_442_RTC_EXPORTED_FUNCTIONS */
- /*@}*/ /* end of group NUC472_442_RTC_Driver */
- /*@}*/ /* end of group NUC472_442_Device_Driver */
- #ifdef __cplusplus
- }
- #endif
- #endif /* __RTC_H */
- /*** (C) COPYRIGHT 2012 Nuvoton Technology Corp. ***/
|