mirror of https://github.com/ArduPilot/ardupilot
AP Fix Hil Airspeed calc in m/s
This commit is contained in:
parent
c87337a3a8
commit
cb0eacca37
|
@ -1654,7 +1654,7 @@ void GCS_MAVLINK::handleMessage(mavlink_message_t* msg)
|
|||
mavlink_msg_vfr_hud_decode(msg, &packet);
|
||||
|
||||
// set airspeed
|
||||
airspeed.set_HIL(100*packet.airspeed);
|
||||
airspeed.set_HIL(packet.airspeed);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue