微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > STM32学习笔记6(TIM模块定时器)

STM32学习笔记6(TIM模块定时器)

时间:11-28 来源:互联网 点击:

//Step4.中断服务子程序:void TIM1_UP_IRQHandler(void){GPIOC->

  • int fputc(int ch, FILE *f){//USART_SendData(USART1, (u8) ch);USART1->

  • //USART1_TXGPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;GPIO_Init(GPIOA, &GPIO_InitStructure);//USART1_RXGPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;GPIO_Init(GPIOA, &GPIO_InitStructure);//ADC_CH10-->

    ADC_InitStructure.ADC_Mode = ADC_Mode_Independent;ADC_InitStructure.ADC_ScanConvMode = ENABLE;ADC_InitStructure.ADC_ContinuousConvMode = ENABLE; //连续转换开启ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None;ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;ADC_InitStructure.ADC_NbrOfChannel = 2;//设置转换序列长度为2ADC_Init(ADC1, &ADC_InitStructure);//ADC内置温度传感器使能(要使用片内温度传感器,切忌要开启它)ADC_TempSensorVrefintCmd(ENABLE);//常规转换序列1:通道10ADC_RegularChannelConfig(ADC1, ADC_Channel_10, 1, ADC_SampleTime_13Cycles5);//常规转换序列2:通道16(内部温度传感器),采样时间>

    搞出了这个STM32下的RTC_Time使用的时间库

    这是我的RTC_Time.c中的说明:

    本文件实现基于RTC的日期功能,提供年月日的读写。(基于ANSI-C的time.h)作者:jjldc (九九)QQ: 77058617RTC中保存的时间格式,是UNIX时间戳格式的。即一个32bit的time_t变量(实为u32)

    ANSI-C的标准库中,提供了两种表示时间的数据 型:time_t:UNIX时间戳(从1970-1-1起到某时间经过的秒数)typedef unsigned int time_t;struct tm:Calendar格式(年月日形式)tm结构如下:struct tm {int tm_sec;// 秒 seconds after the minute, 0 to 60(0 - 60 allows for the occasional leap second)int tm_min;// 分 minutes after the hour, 0 to 59int tm_hour; // 时 hours since midnight, 0 to 23int tm_mday; // 日 day of the month, 1 to 31int tm_mon;// 月 months since January, 0 to 11int tm_year; // 年 years since 1900int tm_wday; // 星期 days since Sunday, 0 to 6int tm_yday; // 从元旦起的天数 days since January 1, 0 to 365int tm_isdst; // 夏令时??Daylight Savings Time flag...}其中wday,yday可以自动产生,软件直接读取mon的取值为0-11***注意***:tm_year:在time.h库中定义为1900年起的年份,即2008年应表示为2008-1900=108这种表示方法对用户来说不是十分友好,与现实有较大差异。所以在本文件中,屏蔽了这种差异。即外部调用本文件的函数时,tm结构体类型的日期,tm_year即为2008注意:若要调用系统库time.c中的函数,需要自行将tm_year-=1900成员函数说明:struct tm Time_ConvUnixToCalendar(time_t t);输入一个Unix时间戳(time_t),返回Calendar格式日期time_t Time_ConvCalendarToUnix(struct tm t);输入一个Calendar格式日期,返回Unix时间戳(time_t)time_t Time_GetUnixTime(void);从RTC取当前时间的Unix时间戳值struct tm Time_GetCalendarTime(void);从RTC取当前时间的日历时间void Time_SetUnixTime(time_t);输入UNIX时间戳格式时间,设置为当前RTC时间void Time_SetCalendarTime(struct tm t);输入Calendar格式时间,设置为当前RTC时间外部调用实例:定义一个Calendar格式的日期变量:struct tm now;now.tm_year = 2008;now.tm_mon = 11;//12月now.tm_mday = 20;now.tm_hour = 20;now.tm_min = 12;now.tm_sec = 30;获取当前日期时间:tm_now = Time_GetCalendarTime();然后可以直接读tm_now.tm_wday获取星期数设置时间:Step1. tm_now.xxx = xxxxxxxxx;Step2. Time_SetCalendarTime(tm_now);计算两个时间的差struct tm t1,t2;t1_t = Time_ConvCalendarToUnix(t1);t2_t = Time_ConvCalendarToUnix(t2);dt = t1_t - t2_t;dt就是两个时间差的秒数dt_tm = mktime(dt);//注意dt的年份匹配,ansi库中函数为相对年份,注意超限另可以参考相关资料,调用ansi-c库的格式化输出等功能,ctime,strftime等

  • Copyright © 2017-2020 微波EDA网 版权所有

    网站地图

    Top