|
最近刚学单片机,今天试着对DS1302时钟编辑,想初始化秒,然后实时用数码管显示,但是试了很久,一直没有成功,大家帮忙看一下哪里出了问题。
#include<reg52.h>
#include<intrins.h>
#define uchar unsigned char
sbit dat=P2^1;
sbit clock=P2^0;
sbit a1=P2^2;
sbit a2=P2^3;
sbit a3=P2^4;
sbit a4=P2^5;
sbit RST=P2^6;
//--定义全局变量--//
unsigned char code DIG_CODE[17]={
0xf9, 0xa4, 0xb0, 0x93, 0x92, 0x82,
0xf8, 0x00, 0x90, 0x88, 0x83, 0xc6,
0xa1, 0x86, 0x8e, 0xc0};
//0、1、2、3、4、5、6、7、8、9、A、b、C、d、E、F的显示码
void write(uchar a)//写操作
{
uchar i;
for(i=0;i<8;i++)
{
clock=0;
_nop_();_nop_();
dat=a&0x01;
_nop_();_nop_();
clock=1;//发送数据
a>>=1;
}
}
//读操作
uchar read(uchar a)
{
uchar i,dat1,m;
for(i=0;i<8;i++)
{
clock=0;
_nop_();_nop_();
dat=a&0x01;
_nop_();_nop_();
clock=1;//发送数据
a>>=1;
}
for(i=0;i<8;i++)
{
clock=0; //接收数据
_nop_();_nop_();
m=dat;
_nop_();_nop_();
dat1=(dat1>>1)|(m<<7);
clock=1;
}
return dat1;
}
void delay(uchar c)
{uchar i;
for(;c>0;c--)
{for(i=0;i<50;i++);}}
void main()
{
uchar k,h,l;
RST=1; //关闭写保护
write(0x8e);
write(0x00);
RST=0;
delay(5);
RST=1; //初始化秒
write(0x80);
write(0x00);
RST=0;
delay(5);
while(1)
{
k=0;
RST=1; //读取数据
k=read(0x81);
delay(5);
h=k/16;
l=k&0x0f;
a1=a2=a3=a4=0;
P1=DIG_CODE[h];a3=1;
delay(20);
a1=a2=a3=a4=0;
P1=DIG_CODE[l];a4=1;
delay(20);}
}
|
|