找回密码
 注册会员
更新自动建库工具PCB Footprint Expert 2024.04 Pro / Library Expert 破解版

请各位帮帮忙

[复制链接]
admin 发表于 2012-9-2 08:31:14 | 显示全部楼层 |阅读模式

本文包含原理图、PCB、源代码、封装库、中英文PDF等资源

您需要 登录 才可以下载或查看,没有账号?注册会员

×
我写了一个程序,是用DS18B20和DS1302在液晶上显示的,但是现在在驱动DS1302是遇到的问题,部分程序如下
uchar code set_rtc_code[7]={0x00,0x30,0x18,0x04,0x16,0x06,0x05};
uchar code write_rtc_add[7]={0x80,0x82,0x84,0x86,0x88,0x8a,0x8c}; //写寄存器
uchar code read_rtc_add[7]={0x81,0x83,0x85,0x87,0x89,0x8b,0x8d};//读寄存器
uchar code *day[7]={"Mon","Tue","Wen","Thu","Fri","Sat","Sun"};
uchar read_rtc_code[7];



uchar read1302(uchar add)
{
uchar i,temp=0x00,temp1;
ce=0;
sclk=0;
ce=1;
write1302_byte(add);
for(i=0;i<8;i++)
{
if(dio)
{
temp|=0x80;
sclk=0;
temp>>=1;
sclk=1;
}
}
ce=0;
temp1=temp/16;
temp=temp%16;
temp=temp+temp1*10;
return(temp);
}

/////////////////////读取时间///////////////////////////////
void read_rtc(void)
{
uchar i,*p;
p=read_rtc_add;
for(i=0;i<7;i++)
{
read_rtc_code[i]=read1302[*p];
p++;
}
}
编译的时候一直提示DS1302时钟.C(157): error C216: subscript on non-array or too many dimensions,请各位帮帮我啊,谢谢了
*滑块验证:
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

QQ|手机版|MCU资讯论坛 ( 京ICP备18035221号-2 )|网站地图

GMT+8, 2024-11-24 09:55 , Processed in 0.059485 second(s), 12 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表