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:
commit
f9af495ac9
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user