运用STM32的RTC功用,制造一份私家专属的日历,就SO简略了。不废话,上效果图:
不才经过串口输出时刻到超级终端的(SecureCRT 5.5这货最好),假如配上TFT就制造一个简易的电子日历了。这个里边首要触及RTC的初始化,时刻数据的初始化输入,串口输出,还有便是公历时刻和阴历时刻的转化处理。经过串口初始化RTC数据,RTC经过串口把时刻显现出来,上代码:
工程结构图:
1、main.c如下:
#include”stm32f10x.h”
#include”beep.h”
#include”led.h”
#include”usart1.h”
#include”rtc.h”
int main(void)
{
USART_Config();
Beep_Init();
Beep_State(1,BeepOn);
Led_Init();
Led_Spark(LedAll,1,LedOn);
RTC_NVIC_Config(); //RTC嵌套中断向量初始化
RTC_Display();
}
2、beep led usart这些在博客其他文章里边呈现过,这儿就不提也罢。
3、RTC.c这是本文的重点了。
C文件如下:
#include”stm32f10x.h”
#include”rtc.h”
#include”usart1.h”
#include”date.h”
#include”calendar.h”
#include
u8 SecondFlag=0;
struct rtc_time systmtime;
u8 const *WEEK_STR[] = {“日”, “一”, “二”, “三”, “四”, “五”, “六”}; //这是一个指针数组的赋值 不是指向一个数组的指针 而是一个数组的每一个元素都是一个指针
//==============================================================================================1-RTC初始化部分
void RTC_NVIC_Config(void)
{
NVIC_InitTypeDef NVIC_InitStructure;
NVIC_SetVectorTable(NVIC_VectTab_FLASH,0x0000); //开始地址坐落FLASH
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2); //优先级分组方法2
NVIC_InitStructure.NVIC_IRQChannel =RTC_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=1;
NVIC_InitStructure.NVIC_IRQChannelSubPriority =0;
NVIC_InitStructure.NVIC_IRQChannelCmd =ENABLE;
NVIC_Init(&NV%&&&&&%_InitStructure);
}
static void RTC_Config(void)
{
RCC_APB1PeriphClockCmd(RCC_APB1Periph_PWR|RCC_APB1Periph_BKP,ENABLE);
PWR_BackupAccessCmd(ENABLE);
BKP_DeInit();
RCC_LSEConfig(RCC_LSE_ON);
while(RCC_GetFlagStatus(RCC_FLAG_LSERDY)==RESET); //等候LSE准备就绪
RCC_RTCCLKConfig(RCC_RTCCLKSource_LSE);
RCC_RTCCLKCmd(ENABLE);
RTC_WaitForSynchro();
RTC_ITConfig(RTC_IT_SEC,ENABLE);
RTC_WaitForLastTask();
RTC_SetPrescaler(32767);
RTC_WaitForLastTask();
}
//==============================================================================================2–设置时刻部分
static u8 RTC_USART_Scanf(uint32_t value)
{
uint32_t index = 0;
uint32_t tmp[2] = {0, 0};
while (index < 2)
{
while (USART_GetFlagStatus(USART, USART_FLAG_RXNE) == RESET)
{}
tmp[index++] = (USART_ReceiveData(USART));
if ((tmp[index – 1] < 0x30) || (tmp[index - 1] > 0x39))
{
if((index == 2) && (tmp[index – 1] == )) //第一个输入的是数字,第二个是按的回车键的状况
{
tmp[1] = tmp[0];
tmp[0] = 0x30;
}
else
{
printf(“Please enter valid number between 0 and 9 –>: “);
index–;
}
}
else
{
printf(“%c”, tmp[index – 1]); //输入一个显现一个数字
}
}
index = (tmp[1] – 0x30) + ((tmp[0] – 0x30) * 10);
if (index > value)
{
printf(“Please enter valid number between 0 and %d –>: “, value);
return 0xFF;
}
return index;
}
声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/news/dongtai/259189.html