DS1302——程序出现了错误,说是指针不对望指教
时间:10-02
整理:3721RD
点击:
uchar code timestr[]=__TIME__;
前面是得到的系统时间,我想着化成时分秒,下面的程序出现了错误,说是指针不对望指教
1.C(84): error C214: illegal pointer conversion
uint shi=0,fen=0,miao=0;
shi=atoi(timestr[0])+atoi(timestr[1]);
fen=atoi(timestr[3])+atoi(timestr[4]);
miao=atoi(timestr[6])+atoi(timestr[7]);
前面是得到的系统时间,我想着化成时分秒,下面的程序出现了错误,说是指针不对望指教
1.C(84): error C214: illegal pointer conversion
uint shi=0,fen=0,miao=0;
shi=atoi(timestr[0])+atoi(timestr[1]);
fen=atoi(timestr[3])+atoi(timestr[4]);
miao=atoi(timestr[6])+atoi(timestr[7]);
不一定就是你这段程序出错了,可能是你定义的地方,或者其他地方,我以前些的ds1302的程序,刚才上传了,你下下来看看嘛,也许对你有帮助~~~