1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/tcs37727: fixed ATIME setup in init function

This commit is contained in:
Ruediger Bartz 2015-11-20 11:41:52 +01:00
parent 421e69030a
commit d188293b15

View File

@ -81,8 +81,8 @@ int tcs37727_init(tcs37727_t *dev, i2c_t i2c, uint8_t address, int atime_us)
}
dev->again = 4;
if (i2c_write_reg(dev->i2c, dev->addr,
TCS37727_ATIME_TO_REG(atime_us), 0) != 1) {
if (i2c_write_reg(dev->i2c, dev->addr, TCS37727_ATIME,
TCS37727_ATIME_TO_REG(atime_us)) != 1) {
i2c_release(dev->i2c);
return -3;
}