当前位置:首页 > 单片机 > 单片机
[导读]// 程序名: STM32驱动DS1302//头文件#include "stm32f10x.h"#include "usart.h"#define uchar unsigned char#define uint unsigned int////DS1302引脚定义,可根据实际情况自行修改端口定义#define RST PAout(5)#defi

// 程序名: STM32驱动DS1302

//头文件

#include "stm32f10x.h"

#include "usart.h"

#define uchar unsigned char

#define uint unsigned int

////DS1302引脚定义,可根据实际情况自行修改端口定义

#define RST PAout(5)

#define IO PAout(6)

#define SCK PAout(7)

//DS1302地址定义

#define ds1302_sec_add 0x80 //秒数据地址

#define ds1302_min_add 0x82 //分数据地址

#define ds1302_hr_add 0x84 //时数据地址

#define ds1302_date_add 0x86 //日数据地址

#define ds1302_month_add 0x88 //月数据地址

#define ds1302_day_add 0x8a //星期数据地址

#define ds1302_year_add 0x8c //年数据地址

#define ds1302_control_add 0x8e //控制数据地址

#define ds1302_charger_add 0x90

#define ds1302_clkburst_add 0xbe

//初始时间定义

uchar time_buf[8] = {0x20,0x16,0x03,0x20,0x21,0x22,0x30};//初始时间

uchar readtime[14];//当前时间

uchar sec_buf=0; //秒缓存

uchar sec_flag=0; //秒标志位

//作者使用的是mini Stm32 IO口上没有外接上拉电阻所以IO口的双向性需要通过软件进行切换

//如果IO上外接了上拉电阻 程序可将管脚IO直接设置为开漏输出 这种模式下的IO口是双向性的

//GPIO口的初始化配置,先默认为高电平

void DS1302_GPIOInit(void)

{

GPIO_InitTypeDef GPIO_InitStructure;

RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE); //开启GPIOB外设时钟

GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7;

GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出

GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;

GPIO_Init(GPIOA, &GPIO_InitStructure);

GPIO_SetBits(GPIOA, GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7);

}

//模拟I2C 这里把IO设置为推挽输出 向DS1302输入

void DS1302_OUT(void)

{

GPIO_InitTypeDef GPIO_InitStructure;

GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;

GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出

GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;

GPIO_Init(GPIOA, &GPIO_InitStructure);

}

//模拟I2C 这里把IO设置为上拉输入 从DS1302接收

void DS1302_IN(void)

{

GPIO_InitTypeDef GPIO_InitStructure;

GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;

GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU; //上拉输入

GPIO_Init(GPIOA, &GPIO_InitStructure);

}

//功能:延时1毫秒

//入口参数:x

//出口参数:无

//说明:晶振为12M

void Delay_xms(uint x)

{

uint i,j;

for(i=0;i

for(j=0;j<112;j++);

}

//DS1302初始化函数

void ds1302_init(void)

{

RST=0; //RST脚置低,将ds1302复位

SCK=0; //SCK脚置低,时钟置低电平

}

//向DS1302写入一字节数据的函数

void ds1302_write_byte(uchar addr, uchar d)

{

uchar i;

DS1302_OUT();

RST=1; //启动DS1302总线

//写入目标地址:addr

addr = addr & 0xFE; //最低位置零,寄存器0位为0时写,为1时读

for (i = 0; i < 8; i ++) {

if (addr & 0x01) {

IO=1;

}

else {

IO=0;

}

SCK=1; //产生时钟

SCK=0;

addr = addr >> 1;

}

//写入数据:d

for (i = 0; i < 8; i ++) {

if (d & 0x01) {

IO=1;

}

else {

IO=0;

}

SCK=1; //产生时钟

SCK=0;

d = d >> 1;

}

RST=0; //停止DS1302总线

}

//从DS1302读出一字节数据

uchar ds1302_read_byte(uchar addr) {

uchar i,temp;

DS1302_OUT();

RST=1; //启动DS1302总线

//写入目标地址:addr

addr = addr | 0x01; //最低位置高,寄存器0位为0时写,为1时读

for (i = 0; i < 8; i ++) {

if (addr & 0x01) {

IO=1;

}

else {

IO=0;

}

SCK=1;

SCK=0;

addr = addr >> 1;

}

//输出数据:temp

DS1302_IN();

for (i = 0; i < 8; i ++) {

temp = temp >> 1;

if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_6)) {

temp |= 0x80;

}

else {

temp &= 0x7F;

}

SCK=1;

SCK=0;

}

RST=0; //停止DS1302总线

return temp;

}

//向DS1302写入时钟数据

void ds1302_write_time(void)

{

ds1302_write_byte(ds1302_control_add,0x00); //关闭写保护

ds1302_write_byte(ds1302_sec_add,0x80); //暂停时钟

//ds1302_write_byte(ds1302_charger_add,0xa9); //涓流充电

ds1302_write_byte(ds1302_year_add,time_buf[1]); //年

ds1302_write_byte(ds1302_month_add,time_buf[2]); //月

ds1302_write_byte(ds1302_date_add,time_buf[3]); //日

ds1302_write_byte(ds1302_hr_add,time_buf[4]); //时

ds1302_write_byte(ds1302_min_add,time_buf[5]); //分

ds1302_write_byte(ds1302_sec_add,time_buf[6]); //秒

ds1302_write_byte(ds1302_day_add,time_buf[7]); //周

ds1302_write_byte(ds1302_control_add,0x80); //打开写保护

}

//从DS302读出时钟数据

void ds1302_read_time(void)

{

time_buf[1]=ds1302_read_byte(ds1302_year_add); //年

time_buf[2]=ds1302_read_byte(ds1302_month_add); //月

time_buf[3]=ds1302_read_byte(ds1302_date_add); //日

time_buf[4]=ds1302_read_byte(ds1302_hr_add); //时

time_buf[5]=ds1302_read_byte(ds1302_min_add); //分

time_buf[6]=(ds1302_read_byte(ds1302_sec_add))&0x7f;//秒,屏蔽秒的第7位,避免超出59

time_buf[7]=ds1302_read_byte(ds1302_day_add); //周

}

//主函数main

int main(void)

{

DS1302_GPIOInit();

Delay_xms(50);//等待系统稳定

ds1302_init(); //DS1302初始化

Delay_xms(50);//等待系统稳定

uart_init(9600);//设置串口波特率为9600

Delay_xms(10);

ds1302_write_time(); //写入初始值

while(1)

{

ds1302_read_time(); //读取时间

readtime[0]=(time_buf[0]>>4); //分离出年千位

readtime[1]=(time_buf[0]&0x0F); //分离出年百位

readtime[2]=(time_buf[1]>>4); //分离出年十位

readtime[3]=(time_buf[1]&0x0F); //分离出年个位

readtime[4]=(time_buf[2]>>4); //分离出月十位

readtime[5]=(time_buf[2]&0x0F); //分离出月个位

readtime[6]=(time_buf[3]>>4); //分离出日十位

readtime[7]=(time_buf[3]&0x0F); //分离出日个位

readtime[8]=(time_buf[4]>>4); //分离出小时十位

readtime[9]=(time_buf[4]&0x0F); //分离出小时个位

readtime[10]=(time_buf[5]>>4); //分离出分钟十位

readtime[11]=(time_buf[5]&0x0F); //分离出分钟个位

readtime[12]=(time_buf[6]>>4); //分离出秒钟十位

readtime[13]=(time_buf[6]&0x0F); //分离出秒钟个位

if(readtime[13]!=sec_buf)

{

printf("%d%d%d%d-%d%d-%d%d %d%d.%d%d.%d%d rn",readtime[0],readtime[1],readtime[2],readtime[3],readtime[4],

readtime[5],readtime[6],readtime[7],readtime[8],readtime[9],readtime[10],

readtime[11],readtime[12],readtime[13]);

Delay_xms(6000);/////////////////通过串口显示时间 输出格式可自行更改

}

}

}


本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除。
换一批
延伸阅读

9月2日消息,不造车的华为或将催生出更大的独角兽公司,随着阿维塔和赛力斯的入局,华为引望愈发显得引人瞩目。

关键字: 阿维塔 塞力斯 华为

加利福尼亚州圣克拉拉县2024年8月30日 /美通社/ -- 数字化转型技术解决方案公司Trianz今天宣布,该公司与Amazon Web Services (AWS)签订了...

关键字: AWS AN BSP 数字化

伦敦2024年8月29日 /美通社/ -- 英国汽车技术公司SODA.Auto推出其旗舰产品SODA V,这是全球首款涵盖汽车工程师从创意到认证的所有需求的工具,可用于创建软件定义汽车。 SODA V工具的开发耗时1.5...

关键字: 汽车 人工智能 智能驱动 BSP

北京2024年8月28日 /美通社/ -- 越来越多用户希望企业业务能7×24不间断运行,同时企业却面临越来越多业务中断的风险,如企业系统复杂性的增加,频繁的功能更新和发布等。如何确保业务连续性,提升韧性,成...

关键字: 亚马逊 解密 控制平面 BSP

8月30日消息,据媒体报道,腾讯和网易近期正在缩减他们对日本游戏市场的投资。

关键字: 腾讯 编码器 CPU

8月28日消息,今天上午,2024中国国际大数据产业博览会开幕式在贵阳举行,华为董事、质量流程IT总裁陶景文发表了演讲。

关键字: 华为 12nm EDA 半导体

8月28日消息,在2024中国国际大数据产业博览会上,华为常务董事、华为云CEO张平安发表演讲称,数字世界的话语权最终是由生态的繁荣决定的。

关键字: 华为 12nm 手机 卫星通信

要点: 有效应对环境变化,经营业绩稳中有升 落实提质增效举措,毛利润率延续升势 战略布局成效显著,战新业务引领增长 以科技创新为引领,提升企业核心竞争力 坚持高质量发展策略,塑强核心竞争优势...

关键字: 通信 BSP 电信运营商 数字经济

北京2024年8月27日 /美通社/ -- 8月21日,由中央广播电视总台与中国电影电视技术学会联合牵头组建的NVI技术创新联盟在BIRTV2024超高清全产业链发展研讨会上宣布正式成立。 活动现场 NVI技术创新联...

关键字: VI 传输协议 音频 BSP

北京2024年8月27日 /美通社/ -- 在8月23日举办的2024年长三角生态绿色一体化发展示范区联合招商会上,软通动力信息技术(集团)股份有限公司(以下简称"软通动力")与长三角投资(上海)有限...

关键字: BSP 信息技术
关闭
关闭