We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2703b79 commit ac11389Copy full SHA for ac11389
Tools/AP_Periph/battery.cpp
@@ -51,7 +51,8 @@ void AP_Periph_FW::can_battery_update(void)
51
if (battery_lib.get_temperature(temperature, i)) {
52
// Battery lib reports temperature in Celsius.
53
// Convert Celsius to Kelvin for transmission on CAN.
54
- pkt.temperature = C_TO_KELVIN(temperature);
+ //pkt.temperature = C_TO_KELVIN(temperature);
55
+ pkt.temperature = temperature;
56
}
57
58
// Populate state of health
0 commit comments