Fixed i2ctool write operation in no restart
mode (flag -n
).
It seems that I2C driver has changed a bit since i2ctool was written, so now i2ctool sends repeated start even if `no restart` flag (-n) was passed to it.
This commit is contained in:
parent
769ffb8a4b
commit
42ec1aad65
@ -241,6 +241,7 @@ int i2ctool_set(FAR struct i2ctool_s *i2ctool, int fd, uint8_t regaddr,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
msg[1].flags |= I2C_M_NORESTART;
|
||||||
ret = i2cdev_transfer(fd, msg, 2);
|
ret = i2cdev_transfer(fd, msg, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user