昨日完成了字节的读写操作(前一篇程序一),今日完成了页写和连续读的操作。
电路不变,下面是仿真电路,只不过P2口的数码管由观测程序履行到哪一步改为检查接纳缓冲区的数据。
程序如下:
#include
#define unit unsigned int
#define uchar unsigned char
uchar num=4;
uchar idata sendbuf[4]={0x96,0x84,0xd5,0x63};
uchar idata recivebuf[4];
sbit scl=P0^0;
sbit sda=P0^1;
sbit led0=P2^0;
sbit led1=P2^1;
sbit led2=P2^2;
sbit led3=P2^3;
sbit led4=P2^4;
sbit led5=P2^5;
sbit led6=P2^6;
sbit led7=P2^7;
delay(void) //delay
{
int i;
for(i=0;i<1;i++);
}
start(void) //start
{
sda=1;
scl=1;
delay();
sda=0;
delay();
scl=0;
}
stop(void) //stop
{
sda=0;
scl=1;
delay();
sda=1;
delay();
scl=0;
}
answer(void) //answer
{
sda=1;
scl=1;
delay();
sda=0;
scl=0;
}
noanswer(void)//no answer
{
sda=1;
scl=1;
delay();
sda=1;
scl=0;
}
checkanswer(void) //check answer
{
sda=1;
scl=1;
F0=0;
if(sda==1) F0=1;
scl=0;
}
sendabyte(uchar idata *saddress) //send a byte
{
uchar n=8,temp=*saddress;
while(n–)
{
if((temp&0x80)==0x80) sda=1;
else sda=0;
delay();
scl=1;
delay();
scl=0;
temp=temp<<1;
}
checkanswer();
if(F0==1) return;
}
reciveabyte(uchar idata *raddress) //recive a byte
{
uchar n=8,temp;
while(n–)
{
scl=1;
temp=temp<<1;
if(sda==1)
temp=temp|0x01;
else
temp=temp&0xfe;
scl=0;
}
*raddress=temp;
}
sendnbyte(uchar n) //send n byte
{
uchar idata *ps;
ps=&sendbuf[0];
while(n–)
{
sendabyte(ps);
ps++;
}
stop();
}
recivenbyte(uchar n) //recive n byte
{
uchar idata *pr;
pr=&recivebuf[0];
while(n–)
{
reciveabyte(pr);
answer();
pr++;
}
noanswer();
stop();
}
main(void) //MAIN
{
start();
sendabyte(0xa0);
sendabyte(0x00);
sendnbyte(num);
/*———————–*/
start();
sendabyte(0xa1);
recivenbyte(num);
P2=recivebuf[7];
}
程序阐明:
程序开端的num界说了传送数据的个数,以及发送缓冲区和接纳缓冲区。
主函数的操作一望而知,不多介绍。
存在的问题:这段程序中我界说了接纳缓冲区的数据是4个,也确实接纳到了4个数据。但接纳到的数据确是从recivebuf[4]开端的,像本例中,recivebuf[4]中寄存0X96,recivebuf[5]中寄存0X84,recivebuf[6]中寄存0XD5,recivebuf[7]中寄存0X63。