1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #3124 from jfischer-phytec-iot/fix@hdc1000

drivers/hdc1000: fix hdc1000_startmeasure function
This commit is contained in:
Joakim Gebart 2015-05-31 09:36:28 +02:00
commit f9af495ac9

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;
}