这几天用DS1302,程序出来之后很不理想
先贴贴程序:
void WriteByte(uchar dat)
{
uchar i;
ACC=dat;
for(i=8;i>0;i--)
{
Dat_1302=ACC0;
CLK_1302=1;
_nop_();_nop_();_nop_();
CLK_1302=0; //产生上升沿输入数据
ACC=ACC>>1;
}
}
void WriteSet1302(uchar Cmd,uchar dat)
{
RST_1302=0;
CLK_1302=0; //确保写数居前SCLK被拉低
RST_1302=1; //启动数据传输
WriteByte(Cmd);
WriteByte(dat);
RST_1302=0;
CLK_1302=1;
}
uchar ReadByte(void)
{
uchar i;
for(i=8;i>0;i--)
{
ACC7=Dat_1302;//ds1302读数据的时候,第一个数据读取在发一个Byte命令后,在第八位的下降沿
ACC=ACC>>1;
CLK_1302=1;
CLK_1302=0;//产生下降沿输出一位数据
_nop_();_nop_();_nop_();
}
return(ACC);
}
uchar ReadSet1302(uchar Cmd)
{
uchar dat;
RST_1302=0;
CLK_1302=0; //确保写数居前SCLK被拉低
RST_1302=1; //启动数据传输
WriteByte(Cmd);
dat=ReadByte();
RST_1302=0;
CLK_1302=1;
return dat; //将读出的数据返回
}
void Init1302(void)
{
WriteSet1302(0x8e,0x00);
WriteSet1302(0x80,0x05);//初始化时分秒
WriteSet1302(0x82,0x10);
WriteSet1302(0x84,0x15);
WriteSet1302(0x90,0xab);
WriteSet1302(0x8e,0x80);
}
程序遇到的问题是读取时间时老是出错,有时候是秒的数据错了,有时候是分的数据,有时候是时间的数据
而且写进去时间后读出来的数据也有错
不知道是哪里的问题
在网上看了很多这方面的程序,感觉都没有错
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
that's just basic, embedded programming 101. because you never know, without looking at the assembly generated by the compiler, if the compiler is also utilizing ACC. if it is, writing to and reading from ACC can cause unpredictable behaviors that are impossible to debug.
I have not looked the datasheet for ds1302 but spi allows the master to hold the clock pulse indefinitely. and it would surprise me if DS1302 is an exception to that.
if so, the code doesn't have to factor in interrupt-caused delays.
一周热门 更多>