mirror of https://github.com/ArduPilot/ardupilot
Copter: change to switch order in guided spline
No functional change
This commit is contained in:
parent
db89bd6f03
commit
330b52194f
|
@ -1381,12 +1381,6 @@ void GCS_MAVLINK::handleMessage(mavlink_message_t* msg)
|
|||
loc.lng = packet.lon_int;
|
||||
loc.alt = packet.alt*100;
|
||||
switch (packet.coordinate_frame) {
|
||||
default:
|
||||
case MAV_FRAME_GLOBAL:
|
||||
case MAV_FRAME_GLOBAL_INT:
|
||||
loc.flags.relative_alt = false;
|
||||
loc.flags.terrain_alt = false;
|
||||
break;
|
||||
case MAV_FRAME_GLOBAL_RELATIVE_ALT:
|
||||
case MAV_FRAME_GLOBAL_RELATIVE_ALT_INT:
|
||||
loc.flags.relative_alt = true;
|
||||
|
@ -1397,6 +1391,12 @@ void GCS_MAVLINK::handleMessage(mavlink_message_t* msg)
|
|||
loc.flags.relative_alt = true;
|
||||
loc.flags.terrain_alt = true;
|
||||
break;
|
||||
case MAV_FRAME_GLOBAL:
|
||||
case MAV_FRAME_GLOBAL_INT:
|
||||
default:
|
||||
loc.flags.relative_alt = false;
|
||||
loc.flags.terrain_alt = false;
|
||||
break;
|
||||
}
|
||||
pos_ned = pv_location_to_vector(loc);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue