Private
Public Access
2
0

peripheralman: i2c_read_bytes_data returns length of read bytes

Return length of read bytes rather than 0 on success.
MRAA calls I2C_RDWR ioctl which returns number of bytes read.
PIO is yet to implement that API so currently does I2C_SMBUS
ioctl instead, which returns 0 in case of success.

Signed-off-by: Sanrio Alvares <sanrio.alvares@intel.com>
This commit is contained in:
Sanrio Alvares
2017-05-03 09:16:49 -07:00
parent be2bd63223
commit 80335b18b6

View File

@@ -499,9 +499,10 @@ mraa_pman_i2c_read_bytes_data_replace(mraa_i2c_context dev, uint8_t command, uin
return -1;
}
//TODO Replace with I2C_RDWR Ioctl from PIO when available since i2c_read_bytes_data expects length on success
rc = AI2cDevice_readRegBuffer(dev->bi2c, command, data, length);
return rc;
return ((rc == 0)?length:rc);
}
static int