mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-19 18:40:17 +00:00
Merge pull request #1838 from alignan/pull/fix-tmp102-calc
Zoul: fix TMP102 value conversion
This commit is contained in:
commit
bc2ff5b352
@ -58,7 +58,8 @@ tmp102_read(uint16_t *data)
|
|||||||
if(i2c_single_send(TMP102_ADDR, TMP102_TEMP) == I2C_MASTER_ERR_NONE) {
|
if(i2c_single_send(TMP102_ADDR, TMP102_TEMP) == I2C_MASTER_ERR_NONE) {
|
||||||
/* Read two bytes only */
|
/* Read two bytes only */
|
||||||
if(i2c_burst_receive(TMP102_ADDR, buf, 2) == I2C_MASTER_ERR_NONE) {
|
if(i2c_burst_receive(TMP102_ADDR, buf, 2) == I2C_MASTER_ERR_NONE) {
|
||||||
temp = (buf[0] << 8) + buf[1];
|
/* 12-bit value, TMP102 SBOS397F Table 8-9 */
|
||||||
|
temp = (buf[0] << 4) + (buf[1] >> 4);
|
||||||
if(temp > 2047) {
|
if(temp > 2047) {
|
||||||
temp -= (1 << 12);
|
temp -= (1 << 12);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user