前言
关于DS1302的原理及其他知识,百度百科中已经有详细的解释,请参照百度百科学习 本链接直达DS1302百度百科:[https://baike.baidu.com/item/DS1302/1052340?fr=aladdin] 本文主要针对蓝桥杯单片机比赛进行补充和讲解。
DS1302的读写操作
读写时序:
单片机对DS1302的读/写,都必须由单片机先向DS1302写入一个命令字(8位)发起, 命令字格式: 命令字各位功能: D7:必须为逻辑1,如为0,则禁止写入DS1302。 D6:1—读/写RAM数据,0—读/写时钟/日历数据。 D5~D1:为读/写单元的地址; D0:1—对DS1302读操作,0—对DS1302写操作。
void Write_Ds1302( unsigned char address,unsigned char dat )
{
RST=0;
_nop_();
SCK=0;
_nop_();
RST=1;
_nop_();
Write_Ds1302_Byte(address);
Write_Ds1302_Byte(dat);
RST=0;
}
unsigned char Read_Ds1302 ( unsigned char address )
{
unsigned char i,temp=0x00;
RST=0;
_nop_();
SCK=0;
_nop_();
RST=1;
_nop_();
Write_Ds1302_Byte(address);
for (i=0;i<8;i++)
{
SCK=0;
temp>>=1;
if(SDA)
temp|=0x80;
SCK=1;
}
RST=0;
_nop_();
RST=0;
SCK=0;
_nop_();
SCK=1;
_nop_();
SDA=0;
_nop_();
SDA=1;
_nop_();
return (temp);
}
*以上两个程序均来自蓝桥杯单片机比赛官方所提供的例程
DS1302内部寄存器的操作
通过向寄存器写入命令字实现对DS1302操作。 设置秒寄存器的初始值,需要先写入命令字80H,然后再向秒寄存器写入初始值; 读出某时刻秒值,需要先写入命令字81H,然后再从秒寄存器读取秒值。 CH:时钟暂停位,为0时时钟开始工作。 10SEC:秒的十位数字。 SEC为秒的个位数字。 10MIN:分的十位数字。 MIN为分的个位数字。 12/24:12或24小时方式选择位。 AP:小时格式设置位,0-上午模式(AM) ; 1-下午模式(PM)。 10DATE:日期的十位数字。 DATE为日期的个位数字。 10M:月的十位数字。 MONTH为日期的个位数字。 DAY:星期的个位数字。
uchar write[]={0x80,0x82,0x84,0x86,0x88,0x8a,0x8c};
uchar read[]={0x81,0x83,0x85,0x87,0x89,0x8b,0x8d};
uchar time[]={0x48,0x59,0x23,0x11,0x04,0x06,0x21};
void ds1302_write()
{
int n;
Write_Ds1302( 0x8e,0x00 );
for(n=0;n<7;n++)
{
Write_Ds1302(write[n],time[n]);
}
Write_Ds1302(0x8e,0x80);
}
void ds1302_read()
{
int n;
for(n=0;n<7;n++)
{
time[n]=Read_Ds1302 ( read[n] );
}
}
程序代码
main.c
#include<reg52.h>
#include<intrins.h>
#include<absacc.h>
#include<ds1302.h>
sbit hc138_A=P2^5;
sbit hc138_B=P2^6;
sbit hc138_C=P2^7;
#define uint unsigned int
#define uchar unsigned char
uchar shuzi[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0xbf};
uchar write[]={0x80,0x82,0x84,0x86,0x88,0x8a,0x8c};
uchar read[]={0x81,0x83,0x85,0x87,0x89,0x8b,0x8d};
uchar time[]={0x48,0x59,0x23,0x11,0x04,0x06,0x21};
void HC138(unsigned int n)
{
switch(n)
{
case 4: hc138_A=0 ; hc138_B=0 ; hc138_C=1; break;
case 5: hc138_A=1 ; hc138_B=0 ; hc138_C=1; break;
case 6: hc138_A=0 ; hc138_B=1 ; hc138_C=1; break;
case 7: hc138_A=1 ; hc138_B=1 ; hc138_C=1; break;
}
}
void delay(unsigned int k)
{
while(k--);
}
void ds1302_write()
{
int n;
Write_Ds1302( 0x8e,0x00 );
for(n=0;n<7;n++)
{
Write_Ds1302(write[n],time[n]);
}
Write_Ds1302(0x8e,0x80);
}
void ds1302_read()
{
int n;
for(n=0;n<7;n++)
{
time[n]=Read_Ds1302 ( read[n] );
}
}
void Display()
{
char x = 0x01;
int i = 0;
for(i = 1;i<=8 ;i++)
{
HC138(6);
P0 = x;
x = _crol_(x,1);
HC138(7);
P0 = 0xff;delay(20);
switch (i)
{
case 1:P0=shuzi[time[2]/16]; break;
case 2:P0=shuzi[time[2]%16]; break;
case 4:P0=shuzi[time[1]/16]; break;
case 5:P0=shuzi[time[1]%16]; break;
case 7:P0=shuzi[time[0]/16]; break;
case 8:P0=shuzi[time[0]%16]; break;
default :P0=shuzi[10]; break;
}
delay(500);P0 = 0xff;
}
}
void main()
{
HC138(5);
P0=0x00;
HC138(4);
P0= 0xff;
ds1302_write();
while(1)
{
ds1302_read();
Display();
}
}
ds1302.c
#include <reg52.h>
#include <intrins.h>
sbit SCK=P1^7;
sbit SDA=P2^3;
sbit RST = P1^3;
void Write_Ds1302_Byte(unsigned char temp)
{
unsigned char i;
for (i=0;i<8;i++)
{
SCK=0;
SDA=temp&0x01;
temp>>=1;
SCK=1;
}
}
void Write_Ds1302( unsigned char address,unsigned char dat )
{
RST=0;
_nop_();
SCK=0;
_nop_();
RST=1;
_nop_();
Write_Ds1302_Byte(address);
Write_Ds1302_Byte(dat);
RST=0;
}
unsigned char Read_Ds1302 ( unsigned char address )
{
unsigned char i,temp=0x00;
RST=0;
_nop_();
SCK=0;
_nop_();
RST=1;
_nop_();
Write_Ds1302_Byte(address);
for (i=0;i<8;i++)
{
SCK=0;
temp>>=1;
if(SDA)
temp|=0x80;
SCK=1;
}
RST=0;
_nop_();
RST=0;
SCK=0;
_nop_();
SCK=1;
_nop_();
SDA=0;
_nop_();
SDA=1;
_nop_();
return (temp);
}
ds1302.h
#ifndef __DS1302_H
#define __DS1302_H
void Write_Ds1302_Byte(unsigned char temp);
void Write_Ds1302( unsigned char address,unsigned char dat );
unsigned char Read_Ds1302 ( unsigned char address );
#endif
**以上ds1302.c和de1302.h均来自蓝桥杯单片机比赛官方所提供的例程
|