What steps will reproduce the problem?
1.Open and play a tlog file from a flight.
2.
3.
What is the expected output? What do you see instead?
I would expect to see the battery voltage and current displayed on the HUD
Display.
However there is no voltage or current displayed.
What version of the product are you using? On what operating system?
Please provide any additional information below.
Not 100 % sure but I suggest this fix in HUD.cs
replace this code
if (MainV2.comPort.MAV.param.ContainsKey("BATT_MONITOR") && (float)MainV2.comPort.MAV.param["BATT_MONITOR"] != 0)
{
hud1.batteryon = true;
}
else
{
hud1.batteryon = false;
}
with this code
if (MainV2.comPort.MAV.param.ContainsKey("BATT_MONITOR"))
{
if ((float)MainV2.comPort.MAV.param["BATT_MONITOR"] != 0)
{
hud1.batteryon = true;
}
else
{
hud1.batteryon = false;
}
}
Original issue reported on code.google.com by lbrecken...@gmail.com on 27 Dec 2012 at 8:59
Original issue reported on code.google.com by
lbrecken...@gmail.com
on 27 Dec 2012 at 8:59