Merge pull request #732 from awjackson/fix_731
Make X24C02 only enter read/write state if I2C address matches; fixes #731
This commit is contained in:
commit
f980ec2bc7
|
@ -178,7 +178,10 @@ static void x24c02_write(uint8 data) {
|
|||
x24c02_addr <<= 1;
|
||||
x24c02_addr |= sda;
|
||||
} else {
|
||||
if (sda) // READ COMMAND
|
||||
if ((x24c02_addr & 0x78) != 0x50) { // WRONG DEVICE ADDRESS
|
||||
x24c02_out = 1;
|
||||
x24c02_state = X24C0X_STANDBY;
|
||||
} else if (sda) // READ COMMAND
|
||||
x24c02_state = X24C0X_READ;
|
||||
else // WRITE COMMAND
|
||||
x24c02_state = X24C0X_WORD;
|
||||
|
|
Loading…
Reference in New Issue