• 2023版 STM32实战9 RTC实时时钟/闹钟


    RTC简介

    实时时钟是一个独立的定时器。RTC模块拥有一组连续计数的计数器,在相应软件配置下,可提供时钟日历的功能。修改计数器的值可以重新设置系统当前的时间和日期。

    注意事项

    -1- 要手动配置中断寄存器
    在这里插入图片描述
    -2- 需要等待写操作完成

    -3- 时钟闹钟中段在同一个中断函数中

    配置时钟

    调用函数RTC_SetCounter();

    函数里面的参数可通过计算获得如下图
    在这里插入图片描述

    配置闹钟

    调用函数RTC_SetAlarm();

    函数里面的参数和时钟相同

    代码编写 (F1可直接拷贝使用)

    #include "stm32f10x.h"
    #include "usart.h"
    
    uint32_t TimeDisplay;
    
    u32  Set_RTCTIME(u8 Hour,u8 Minute,u8 Sec);
    void NVIC_Configuration(void)
    {
    	NVIC_InitTypeDef NVIC_InitStructure;
    	
    	/* Configure one bit for preemption priority */
    	NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);
    	
    	/* Enable the RTC Interrupt */
    	NVIC_InitStructure.NVIC_IRQChannel = RTC_IRQn;
    	NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
    	NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
    	NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
    	NVIC_Init(&NVIC_InitStructure);
    	RTC->CRH |= 0x02;
    }
    
    
    
    
     void RTC_Configuration(void)
     {
    	//使能电源和后备接口时钟
    	RCC_APB1PeriphClockCmd(RCC_APB1Periph_PWR | RCC_APB1Periph_BKP, ENABLE);
    	//使能后备寄存器和RTC的访问 
    	PWR_BackupAccessCmd(ENABLE);
    	BKP_DeInit();
    	RCC_LSEConfig(RCC_LSE_ON);
    	while (RCC_GetFlagStatus(RCC_FLAG_LSERDY) == RESET);
    	RCC_RTCCLKConfig(RCC_RTCCLKSource_LSE);
    	RCC_RTCCLKCmd(ENABLE);
    	RTC_WaitForSynchro();
    	RTC_WaitForLastTask();
    	RTC_ITConfig(RTC_IT_SEC, ENABLE);
    	RTC_WaitForLastTask();
    	RTC_SetPrescaler(32767);
    	RTC_WaitForLastTask();
     }
    
     
     void Time_Adjust(void)
     {
    	RTC_WaitForLastTask();
    	RTC_SetCounter(Set_RTCTIME(16,24,50));
    	RTC_WaitForLastTask();
    	RTC_SetAlarm(Set_RTCTIME(16,24,53));
    	RTC_WaitForLastTask();
     }
    
     int main(void)
     {	
    	int a;
    	NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
    	NVIC_Configuration();
    	uart_init(115200);
    	if (BKP_ReadBackupRegister(BKP_DR1) != 0xA5A5)
    	{
    		printf("\r\n\n RTC not yet configured....");
    		RTC_Configuration();
    		printf("\r\n RTC configured....");
    		Time_Adjust();
    		BKP_WriteBackupRegister(BKP_DR1, 0xA5A5);
    	}
    		RCC_ClearFlag();
    	 
    	 while(1)
    	 {
    		if( TimeDisplay==1 )
    		{
    			TimeDisplay=0;
    			a=RTC_GetCounter();
    			printf("%d\n", a / 3600);
    			printf("%d\n",(a % 3600) / 60);
    			printf("%d\n",(a % 3600) % 60);
    		}
    	 
    	 }
    	 
    	 
    	 
    	 
     }
     
     
    void RTC_IRQHandler(void)
    {
    	if (RTC_GetITStatus(RTC_IT_SEC) != RESET)
    	{
    		/* Clear the RTC Second interrupt */
    		RTC_ClearITPendingBit(RTC_IT_SEC);
    		TimeDisplay = 1;
    		/* Wait until last write operation on RTC registers has finished */
    		RTC_WaitForLastTask();
    		
    	}
    		if (RTC_GetITStatus(RTC_IT_ALR) != RESET)
    	{
    		/* Clear the RTC Second interrupt */
    		RTC_ClearITPendingBit(RTC_IT_ALR);
    		RTC_WaitForLastTask();
    		printf("发生了闹钟的中断\r\n");
    	}
    
    }
    
    
    u32  Set_RTCTIME(u8 Hour,u8 Minute,u8 Sec)
    {
    	
    	return((Hour*3600 + Minute*60 + Sec));
    
    }
     
     
     
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121

    工程获取

    三连加关注后点击头像获取

  • 相关阅读:
    手把手带你体验一场属于Linux的学习之旅
    什么是MQ
    OWASP-TOP10漏洞-注入漏洞
    六、函数和变量的命名
    电子元器件
    Flask 学习-51.Flask-RESTX 生成 Swagger 文档 详细教程
    「学习笔记」可持久化线段树
    第二证券:今日投资前瞻:小米汽车引关注 全球风光有望持续高速发展
    ctags命令行使用笔记
    NE 和 KE 堆栈脚本解析
  • 原文地址:https://blog.csdn.net/lllmeimei/article/details/133756453