123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- #include "gd32f10x_rtc.h"
- #define RTC_HIGH_BITS_MASK ((uint32_t)0x000F0000U)
- #define RTC_LOW_BITS_MASK ((uint32_t)0x0000FFFFU)
- #define RTC_HIGH_BITS_OFFSET ((uint32_t)16U)
- void rtc_configuration_mode_enter(void)
- {
- RTC_CTL |= RTC_CTL_CMF;
- }
- void rtc_configuration_mode_exit(void)
- {
- RTC_CTL &= ~RTC_CTL_CMF;
- }
- void rtc_counter_set(uint32_t cnt)
- {
- rtc_configuration_mode_enter();
-
- RTC_CNTH = (cnt >> RTC_HIGH_BITS_OFFSET);
-
- RTC_CNTL = (cnt & RTC_LOW_BITS_MASK);
- rtc_configuration_mode_exit();
- }
- void rtc_prescaler_set(uint32_t psc)
- {
- rtc_configuration_mode_enter();
-
- RTC_PSCH = ((psc & RTC_HIGH_BITS_MASK) >> RTC_HIGH_BITS_OFFSET);
-
- RTC_PSCL = (psc & RTC_LOW_BITS_MASK);
- rtc_configuration_mode_exit();
- }
- void rtc_lwoff_wait(void)
- {
-
- while(RESET == (RTC_CTL & RTC_CTL_LWOFF)){
- }
- }
- void rtc_register_sync_wait(void)
- {
-
- RTC_CTL &= ~RTC_CTL_RSYNF;
-
- while(RESET == (RTC_CTL & RTC_CTL_RSYNF)){
- }
- }
- void rtc_alarm_config(uint32_t alarm)
- {
- rtc_configuration_mode_enter();
-
- RTC_ALRMH = (alarm >> RTC_HIGH_BITS_OFFSET);
-
- RTC_ALRML = (alarm & RTC_LOW_BITS_MASK);
- rtc_configuration_mode_exit();
- }
- uint32_t rtc_counter_get(void)
- {
- uint32_t temp = 0x0U;
-
- temp = RTC_CNTL;
- temp |= (RTC_CNTH << RTC_HIGH_BITS_OFFSET);
- return temp;
- }
- uint32_t rtc_divider_get(void)
- {
- uint32_t temp = 0x00U;
-
- temp = ((RTC_DIVH & RTC_DIVH_DIV) << RTC_HIGH_BITS_OFFSET);
- temp |= RTC_DIVL;
- return temp;
- }
- FlagStatus rtc_flag_get(uint32_t flag)
- {
- if(RESET != (RTC_CTL & flag)){
- return SET;
- }else{
- return RESET;
- }
- }
- void rtc_flag_clear(uint32_t flag)
- {
-
- RTC_CTL &= ~flag;
- }
- FlagStatus rtc_interrupt_flag_get(uint32_t flag)
- {
- if(RESET != (RTC_CTL & flag)){
- return SET;
- }else{
- return RESET;
- }
- }
- void rtc_interrupt_flag_clear(uint32_t flag)
- {
-
- RTC_CTL &= ~flag;
- }
- void rtc_interrupt_enable(uint32_t interrupt)
- {
- RTC_INTEN |= interrupt;
- }
- void rtc_interrupt_disable(uint32_t interrupt)
- {
- RTC_INTEN &= ~interrupt;
- }
|