small fix

This commit is contained in:
Robin Müller 2022-02-22 13:23:06 +01:00
parent 8953f6f60d
commit 71d257fd12
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814

View File

@ -226,7 +226,7 @@ ReturnValue_t PayloadPcduHandler::interpretDeviceReply(DeviceCommandId_t id,
adcSet.channels[idx] = packet[idx * 2 + 1] << 8 | packet[idx * 2 + 2];
}
uint8_t tempStartIdx = ADC_REPLY_SIZE + TEMP_REPLY_SIZE - 2;
adcSet.tempC.value = max1227::getTemperature(packet[tempStartIdx] << 8 | packet[tempStartIdx + 2]);
adcSet.tempC.value = max1227::getTemperature(packet[tempStartIdx] << 8 | packet[tempStartIdx + 1]);
}
}