MM32 RTC学习(兼容STM32)

RTC学习

RTC简述

实时时钟是一个独立的定时器。
RTC模块拥有一组连续计数的计数器,在相应软件配置下,可提供时钟日历的功能。
修改计数器的值可以重新设置系统当前的时间和日期。
RTC模块和时钟配置系统(RCC_BDCR寄存器)处于后备区域,即在系统复位或从待机模式唤醒后, RTC的设置和时间维持不变。

思维导图

847278-20161212083833839-360530369.png

RTC框图

847278-20161212083758854-1872867150.png

RTC电源框图(详细请看电源控制(PWM)章节)

847278-20161212090543933-1561297255.png

认识理解

  • RTC在相应软件配置下,可以提供日历功能。
  • 有独立的时钟源与电源(RTC处在备份域)
  • RTC与计算机的时钟相似,系统断电(关闭Vdd电源),Vbak电源供电(可以是纽扣电池),这样重启计算机时钟依旧可以显示正确。

配置简单RTC(寄存器版)(注意修改头文件)

#include "all.h"

void delay(uint32_t num)
{
    uint32_t i;
    for(i=0;i<num;i++);
}

void rtc_work_cfg()
{
    uint32_t    scaler;
    uint32_t    cnt;

    RCC->APB1ENR |= 1<<28;   //Enable the PWREN clock.
    RCC->APB1ENR |= 1<<27;   //Enable the PWREN clock.
    PWR->CR |= 1<<8;         //Enable access to the RTC and backup registers.

    RCC->BDCR |= 1<<16;    //Force the Backup domain reset.
    RCC->BDCR &= ~(1<<16); //Release the Backup domain reset.
    RCC->BDCR |= 1<<15;    //Enable RTC clock.
    RCC->BDCR |= 1<<8;     //select LES as RTC clock source.
    RCC->BDCR |= 1<<0;     //External low-speed oscillar enable.

    while(!(RCC->BDCR & 0x1<<1));  //External low-speed clock ready flag.
    while(!(RTC->CRL & 1<<5)); //Wait until last write operation on RTC registers has finished.
    
    RTC->CRL |= 1<<4;     //Enter the RTC configuration mode.
    RTC->ALRH = 0x0;      //Set the RTC alarm value.
    RTC->ALRL = 0x300;    
    RTC->PRLH = 0x0;      //Set the RTC prescaler value.
    RTC->PRLL = 0x10;
    RTC->CNTH = 0x0;      //Set the RTC counter value.
    RTC->CNTL = 0x50;
    RTC->CRL &= ~(1<<4);  //Exit from the RTC configuration mode.
    
    while(!(RTC->CRL & 1<<5));  //Wait until last write operation on RTC registers has finished.
    while(!(RTC->CRL & 1<<3));  //wait until the RTC registers (RTC_CNT, RTC_ALR and RTC_PRL) are synchronized with RTC APB clock.

    delay(1000);
    cnt  = RTC->CNTL;
    cnt |= RTC->CNTH << 16;
    scaler  = RTC->PRLL;
    scaler |= RTC->PRLH << 16;

    delay(100);
    printf_info("Prescaler = %x,cnt = %x\n",scaler,cnt);
}

void main()
{
    rtc_work_cfg();
}

配置简单RTC(库函数版)(注意修改头文件)

#include "all.h"

void delay(uint32_t num)
{
    uint32_t i;
    for(i=0;i<num;i++);
}

void rtc_work_cfg()
{
    uint32_t    scaler;
    uint32_t    cnt;

    RCC_APB1PeriphClockCmd(RCC_APB1Periph_PWR,ENABLE);
    RCC_APB1PeriphClockCmd(RCC_APB1Periph_BKP,ENABLE);
    PWR_BackupAccessCmd(ENABLE);  // Enable or disables access to the RTC and backup registers.

    RCC_BackupResetCmd(ENABLE);
    RCC_BackupResetCmd(DISABLE);
    RCC_RTCCLKCmd(ENABLE);        //Enable or disables the RTC clock.
    RCC_RTCCLKConfig(RCC_RTCCLKSource_LSE); //Configure the RTC clock (RTCCLK).
    RCC_LSEConfig(RCC_LSE_ON);    //Configure the External Low Speed oscillator (LSE).

    while(!(RCC->BDCR & 0x1<<1)); // //External low-speed clock ready flag.
    
    RTC_WaitForLastTask();   //Wait until last write operation on RTC registers has finished.
    RTC_EnterConfigMode();   //Enter the RTC configuration mode.

    RTC_SetPrescaler(0x80);  //Set the RTC prescaler value.
    RTC_SetCounter(0x50);    //Set the RTC counter value.
    RTC_SetAlarm(0x150);     //Set the RTC alarm value.
   
    RTC_ExitConfigMode();     //Exit from the RTC configuration mode.
    RTC_WaitForLastTask();   //Wait until last write operation on RTC registers has finished.
    RTC_WaitForSynchro();    //wait until the RTC registers (RTC_CNT, RTC_ALR and RTC_PRL) are synchronized with RTC APB clock.

    delay(8000);
//***************************************************  
    RTC_WaitForLastTask();   //Wait until last write operation on RTC registers has finished.
    RTC_EnterConfigMode();   //Enter the RTC configuration mode.
    RTC_SetCounter(0x500);   //Set the RTC counter value.
    RTC_ExitConfigMode();    //Exit from the RTC configuration mode.
    RTC_WaitForLastTask();   //Wait until last write operation on RTC registers has finished.
    RTC_WaitForSynchro();    //wait until the RTC registers (RTC_CNT, RTC_ALR and RTC_PRL) are synchronized with RTC APB clock.
//***************************************************  

    delay(8000);
    cnt = RTC_GetCounter();
    scaler = RTC_GetDivider();

    delay(100);
    printf_info("Prescaler = %x,cnt = %x\n",scaler,cnt);
}

void main()
{
    rtc_work_cfg();
}

参考资料

[1]. MM32 miniboard资料

转载于:https://www.cnblogs.com/OneFri/p/6163160.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值