Em viết trong ccs C như sau để thử cái i2c nhưng nó chả chịu chạy
không truyền dữ liệu cho slave
#use i2c(Master,Fast,sda=PIN_C4,scl=PIN_C3)
void main()
{
i2c_start();
i2c_write(0xa0);
i2c_write(0x01);
i2c_write(0xff);
i2c_stop();
}
không truyền dữ liệu cho slave
#use i2c(Master,Fast,sda=PIN_C4,scl=PIN_C3)
void main()
{
i2c_start();
i2c_write(0xa0);
i2c_write(0x01);
i2c_write(0xff);
i2c_stop();
}
Comment