南昌航空大学信息工程学院电子信息科学与技术专业课设报告温度采集与控制(二)
P2=0xff; P3=0xff; }
3.启动A/D转换,将 置零使芯片能工作,再将WR 、 置零启动芯片读写功能voidad_start() { cs=0;
_nop_(); //空操作,时间为1us wr=0; _nop_(); wr=1; _nop_(); cs=1; }
4.读转换结果,经P2口送给无符号字符temp,并返回到主函数中
ucharad_read(){ uchar temp; P2=0xff; cs=0; _nop_(); rd=0; _nop_(); temp=P2; _nop_(); rd=1; _nop_(); cs=1; wr=0; return(temp); }