Browse Source

Plane: fix for new compass API

mission-4.1.18
Andrew Tridgell 10 years ago
parent
commit
e362b4fc04
  1. 3
      ArduPlane/GCS_Mavlink.pde

3
ArduPlane/GCS_Mavlink.pde

@ -1534,7 +1534,8 @@ void GCS_MAVLINK::handleMessage(mavlink_message_t* msg)
ins.set_accel(0, accels); ins.set_accel(0, accels);
barometer.setHIL(packet.alt*0.001f); barometer.setHIL(packet.alt*0.001f);
compass.setHIL(packet.roll, packet.pitch, packet.yaw); compass.setHIL(0, packet.roll, packet.pitch, packet.yaw);
compass.setHIL(1, packet.roll, packet.pitch, packet.yaw);
// cope with DCM getting badly off due to HIL lag // cope with DCM getting badly off due to HIL lag
if (g.hil_err_limit > 0 && if (g.hil_err_limit > 0 &&

Loading…
Cancel
Save