This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
bit I2C_RecvACK()
{
SCL = 1; //拉高时钟线
delay_nop(5); //延时
CY = SDA; //读应答信号
SCL = 0; //拉低时钟线
delay_nop(5); //延时
return CY;
}
void I2C_SendByte(uchar dat)
{
uchar i;
for (i=0; i<8; i++) //8位计数器
{
dat <<= 1; //移出数据的最高位
SDA = CY; //送数据口
SCL = 1; //拉高时钟线
delay_nop(5); //延时
SCL = 0; //拉低时钟线
delay_nop(5); //延时
}
I2C_RecvACK();
}