drivers/hdc1000: fix hdc1000_startmeasure function

Change i2c_write_bytes to i2c_write_byte because it was
seriously wrong at this point.
This commit is contained in:
Johann F 2015-05-30 19:57:35 +02:00
parent 1d7440f57d
commit d317ea2d3a

View File

@ -148,7 +148,7 @@ int hdc1000_startmeasure(hdc1000_t *dev)
* to the address 0x00 (HDC1000_TEMPERATURE).
* Conversion Time is 6.50ms by 14 bit resolution.
*/
if (i2c_write_bytes(dev->i2c, dev->addr, HDC1000_TEMPERATURE, 1) != 1) {
if (i2c_write_byte(dev->i2c, dev->addr, HDC1000_TEMPERATURE) != 1) {
i2c_release(dev->i2c);
return -1;
}