MCU中的RTC

第1章 RTC的作用

配置好MCU的外设RTC,MCU就可以产生一个年月日-时分秒的时钟;

第2章 时间戳

时间戳的定义:是指从 1970 年 1 月 1 日0时0分0秒开始,所经过的秒数(不考虑闰秒);

通俗点讲就是,从1970 年 1 月 1 日0时0分0秒开始按下一个秒表,秒表开始计数。计数的数值就是时间戳。

时间戳和时间是可以相互转换的。

北京的时区是东八区(UTC+8),属于中国标准时间(CST)

伦敦的时区是零时区(UTC+0),但在夏令时期间会调整为西一区(UTC+1),称为英国夏令时(BST)。因此:

  • 北京是东八区,比伦敦快 8小时 (冬季)或 7小时(夏季)。

2.1 获取系统时间

cpp 复制代码
#include <stdio.h>
#include <time.h>

int main() {
    time_t current_time;
    time(&current_time); // 获取当前时间,单位是秒

    printf("Current time in seconds since epoch: %ld\n", current_time); 
    return 0;
}

Current time in seconds since epoch: 1734007378

2.2 秒计数器转换为字符串

cpp 复制代码
#include <stdio.h>
#include <time.h>

int main() {
    time_t current_time;
    time(&current_time);

    char *time_str = ctime(&current_time); // 转换为可读字符串
    printf("Current time: %s", time_str);
    return 0;
}

Current time: Thu Dec 12 20:47:23 2024

2.3 秒计数器转换为日期时间

cpp 复制代码
#include <stdio.h>
#include <time.h>

int main() {
    time_t current_time;
    time(&current_time);

    struct tm *local_time = localtime(&current_time); // 转换为本地时间
    printf("Year: %d, Month: %d, Day: %d\n",
           local_time->tm_year + 1900,
           local_time->tm_mon + 1,
           local_time->tm_mday);
    return 0;
}

Year: 2024, Month: 12, Day: 12

2.4 日期时间转换为秒

cpp 复制代码
#include <stdio.h>
#include <time.h>

int main() {
    struct tm time_spec = {0};

    time_spec.tm_year = 2024 - 1900; // 年份从1900开始
    time_spec.tm_mon = 11;          // 12月(从0开始)
    time_spec.tm_mday = 31;
    time_spec.tm_hour = 23;
    time_spec.tm_min = 59;
    time_spec.tm_sec = 59;

    time_t specific_time = mktime(&time_spec);
    printf("Seconds since epoch: %ld\n", specific_time);
    return 0;
}

Seconds since epoch: 1735660799

2.5 日期时间转换为字符串

cpp 复制代码
#include <stdio.h>
#include <time.h>

int main() {
    time_t current_time;
    struct tm *local_time;

    // 获取当前时间
    time(&current_time);

    // 转换为本地时间结构
    local_time = localtime(&current_time);

    // 使用 asctime 转换为字符串
    char *time_str = asctime(local_time);

    printf("Current local time: %s", time_str);

    return 0;
}

Current local time: Thu Dec 12 20:52:31 2024

第3章 RTC的详细描述

配置好RTC后,MUC就会产生一个日期时间。

stm32F4的RTC可以由LSE和LSI供给时钟频率

3.1 RTC的硬件结构

  • 分频器分频后的频率为1HZ,也就是1s。

3.2 RTC的时钟体系

  1. 使用LSE时钟(32.768KHZ)给RTC供给时钟频率;
  2. 通过128分频,得到的时钟频率为256HZ;
  3. 通过预分配器再进行256分频,得到1Hz;
  4. 经过多路选择器选择哪个时钟源;
  5. 配置自动重装载寄存器,决定定时时间,定时时间到产生一个中断标志位(时间唤醒中断标志位);
  6. 时间唤醒中断标志位;

3.3 RTC的电源供电

第4章 RTC驱动

相关推荐
落雨封海3 小时前
【1】GD32 系统架构、内核、中断系统、存储器系统
单片机·gd32
weixin_462901974 小时前
STM32F103C8T6裸机多任务编程的问题
stm32·单片机·嵌入式硬件
Jumbuck_107 小时前
基于OpenMV+STM32+OLED与YOLOv11+PaddleOCR的嵌入式车牌识别系统开发笔记
笔记·stm32·嵌入式硬件
小智学长 | 嵌入式10 小时前
单片机-89C51部分:4、固件烧录
c语言·单片机·嵌入式硬件
时之彼岸Φ10 小时前
Adruino:传感器及步进电机
单片机·嵌入式硬件
少年、潜行11 小时前
【开源】基于51单片机的简易智能楼道照明设计
单片机·嵌入式硬件·51单片机
子朔不言11 小时前
MH2103 MH22D3系列的JTAG/SWD复用功能和引脚映射,IO初始化的关键点
单片机·mcu·mh2103·mh22d3·新龙微·兆讯
国科安芯11 小时前
基于先进MCU的机器人运动控制系统设计:理论、实践与前沿技术
人工智能·单片机·机器人
honey ball11 小时前
为啥低速MCU单板辐射测试会有200M-1Ghz的辐射信号
单片机·嵌入式硬件
憧憬一下12 小时前
stm32之EXIT外部中断详解
stm32·单片机·嵌入式·中断