123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- ////////////////////////////////////////////////////////////////////////////////
- /// @file reg_rtc.h
- /// @author AE TEAM
- /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE SERIES OF
- /// MM32 FIRMWARE LIBRARY.
- ////////////////////////////////////////////////////////////////////////////////
- /// @attention
- ///
- /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE
- /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE
- /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR
- /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH
- /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN
- /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS.
- ///
- /// <H2><CENTER>© COPYRIGHT MINDMOTION </CENTER></H2>
- ////////////////////////////////////////////////////////////////////////////////
- // Define to prevent recursive inclusion
- #ifndef __REG_RTC_H
- #define __REG_RTC_H
- // Files includes
- #include <stdint.h>
- #include <stdbool.h>
- #include "types.h"
- #if defined ( __CC_ARM )
- #pragma anon_unions
- #endif
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC Base Address Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_BASE (APB1PERIPH_BASE + 0x2800) ///< Base Address: 0x40002800
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC Registers Structure Definition
- ////////////////////////////////////////////////////////////////////////////////
- typedef struct {
- union {
- __IO u32 CR; ///< Control Register, offset: 0x00
- __IO u32 CRH;
- };
- union {
- __IO u32 CSR; ///< Control & Status Register, offset: 0x04
- __IO u32 CRL;
- };
- __IO u32 PRLH; ///< Prescaler Reload Value High, offset: 0x08
- __IO u32 PRLL; ///< Prescaler Reload Value Low, offset: 0x0C
- __IO u32 DIVH; ///< Clock Divider High, offset: 0x10
- __IO u32 DIVL; ///< Clock Divider Low, offset: 0x14
- __IO u32 CNTH; ///< Counter High, offset: 0x18
- __IO u32 CNTL; ///< Counter Low, offset: 0x1C
- __IO u32 ALRH; ///< Alarm High, offset: 0x20
- __IO u32 ALRL; ///< Alarm Low, offset: 0x24
- __IO u32 MSRH; ///< Millisecond alarm high register offset: 0x28
- __IO u32 MSRL; ///< Millisecond alarm low register offset: 0x2C
- __IO u32 RESERVED0; ///< Reserved offset: 0x30
- __IO u32 RESERVED1; ///< Reserved offset: 0x34
- __IO u32 RESERVED2; ///< Reserved offset: 0x38
- __IO u32 LSE_CFG; ///< LSE configure register offset: 0x3C
- } RTC_TypeDef;
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC type pointer Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC ((RTC_TypeDef*)RTC_BASE)
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_CR Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_CR_SECIE_Pos (0)
- #define RTC_CR_SECIE (0x01U << RTC_CR_SECIE_Pos) ///< Second Interrupt Enable
- #define RTC_CR_ALRIE_Pos (1)
- #define RTC_CR_ALRIE (0x01U << RTC_CR_ALRIE_Pos) ///< Alarm Interrupt Enable
- #define RTC_CR_OWIE_Pos (2)
- #define RTC_CR_OWIE (0x01U << RTC_CR_OWIE_Pos) ///< OverfloW Interrupt Enable
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_CSR Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_CSR_SECF_Pos (0)
- #define RTC_CSR_SECF (0x01 << RTC_CSR_SECF_Pos) ///< Second Flag
- #define RTC_CSR_ALRF_Pos (1)
- #define RTC_CSR_ALRF (0x01 << RTC_CSR_ALRF_Pos) ///< Alarm Flag
- #define RTC_CSR_OWF_Pos (2)
- #define RTC_CSR_OWF (0x01 << RTC_CSR_OWF_Pos) ///< OverfloW Flag
- #define RTC_CSR_RSF_Pos (3)
- #define RTC_CSR_RSF (0x01 << RTC_CSR_RSF_Pos) ///< Registers Synchronized Flag
- #define RTC_CSR_CNF_Pos (4)
- #define RTC_CSR_CNF (0x01 << RTC_CSR_CNF_Pos) ///< Configuration Flag
- #define RTC_CSR_RTOFF_Pos (5)
- #define RTC_CSR_RTOFF (0x01 << RTC_CSR_RTOFF_Pos) ///< RTC operation OFF
- #define RTC_CSR_ALPEN_Pos (6)
- #define RTC_CSR_ALPEN (0x01 << RTC_CSR_ALPEN_Pos) ///< RTC Alarm Loop Enable
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_PRLH Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_PRLH_PRL_Pos (0)
- #define RTC_PRLH_PRL (0x0F << RTC_PRLH_PRL_Pos) ///< RTC Prescaler Reload Value High
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_PRLL Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_PRLL_PRL_Pos (0)
- #define RTC_PRLL_PRL (0xFFFFU << RTC_PRLL_PRL_Pos) ///< RTC Prescaler Reload Value Low
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_DIVH Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_DIVH_DIV_Pos (0)
- #define RTC_DIVH_DIV (0x0F << RTC_DIVH_DIV_Pos) ///< RTC Clock Divider High
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_DIVL Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_DIVL_DIV_Pos (0)
- #define RTC_DIVL_DIV (0xFFFFU << RTC_DIVL_DIV_Pos) ///< RTC Clock Divider Low
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_CNTH Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_CNTH_CNT_Pos (0)
- #define RTC_CNTH_CNT (0xFFFFU << RTC_CNTH_CNT_Pos) ///< RTC Counter High
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_CNTL Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_CNTL_CNT_Pos (0)
- #define RTC_CNTL_CNT (0xFFFFU << RTC_CNTL_CNT_Pos) ///< RTC Counter Low
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_ALRH Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_ALRH_ALR_Pos (0)
- #define RTC_ALRH_ALR (0xFFFFU << RTC_ALRH_ALR_Pos) ///< RTC Alarm High
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_ALRL Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_ALRL_ALR_Pos (0)
- #define RTC_ALRL_ALR (0xFFFFU << RTC_ALRL_ALR_Pos) ///< RTC Alarm Low
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_MSRH Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_MSRH_MSR_Pos (0)
- #define RTC_MSRH_MSR (0xFFFFU << RTC_MSRH_MSR_Pos) ///< RTC MS Alarm Register High
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_MSRL Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_MSRL_MSR_Pos (0)
- #define RTC_MSRL_MSR (0xFFFFU << RTC_MSRL_MSR_Pos) ///< RTC MS Alarm Register Low
- ////////////////////////////////////////////////////////////////////////////////
- /// @brief RTC_LSE_CFG Register Bit Definition
- ////////////////////////////////////////////////////////////////////////////////
- #define RTC_LSE_CFG_TEST_Pos (0)
- #define RTC_LSE_CFG_TEST (0x0FU << RTC_LSE_CFG_TEST_Pos) ///< Test control signal
- #define RTC_LSE_CFG_DR_Pos (4)
- #define RTC_LSE_CFG_DR (0x03U << RTC_LSE_CFG_DR_Pos) ///< Drive capability selection
- #define RTC_LSE_CFG_RFB_SEL_Pos (6)
- #define RTC_LSE_CFG_RFB_SEL_3 (0x03U << RTC_LSE_CFG_RFB_SEL_Pos) ///< Feedback resistance selection 3M
- #define RTC_LSE_CFG_RFB_SEL_6 (0x02U << RTC_LSE_CFG_RFB_SEL_Pos) ///< Feedback resistance selection 6M
- #define RTC_LSE_CFG_RFB_SEL_10 (0x01U << RTC_LSE_CFG_RFB_SEL_Pos) ///< Feedback resistance selection 10M
- #define RTC_LSE_CFG_RFB_SEL_12 (0x00U << RTC_LSE_CFG_RFB_SEL_Pos) ///< Feedback resistance selection 12M
- #define RTC_LSE_CFG_IB_Pos (8)
- #define RTC_LSE_CFG_IB (0x01U << RTC_MSRL_MSR_Pos) ///< Bias current regulation
- /// @}
- /// @}
- /// @}
- ////////////////////////////////////////////////////////////////////////////////
- #endif
- ////////////////////////////////////////////////////////////////////////////////
|