Skip to content

Commit

Permalink
Plane: add comment about us sending airspeed error in wrong units
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbarker authored and tridge committed Oct 5, 2021
1 parent e4ebea9 commit 3e031e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ArduPlane/GCS_Mavlink.cpp
Expand Up @@ -184,7 +184,7 @@ void GCS_MAVLINK_Plane::send_nav_controller_output() const
wp_nav_valid ? quadplane.wp_nav->get_wp_bearing_to_destination() : 0,
wp_nav_valid ? MIN(quadplane.wp_nav->get_wp_distance_to_destination() * 0.01, UINT16_MAX) : 0,
(plane.control_mode != &plane.mode_qstabilize) ? quadplane.pos_control->get_pos_error_z_cm() * 0.01 : 0,
plane.airspeed_error * 100,
plane.airspeed_error * 100, // incorrect units; see PR#7933
wp_nav_valid ? quadplane.wp_nav->crosstrack_error() : 0);
return;
}
Expand All @@ -199,7 +199,7 @@ void GCS_MAVLINK_Plane::send_nav_controller_output() const
nav_controller->target_bearing_cd() * 0.01,
MIN(plane.auto_state.wp_distance, UINT16_MAX),
plane.altitude_error_cm * 0.01,
plane.airspeed_error * 100,
plane.airspeed_error * 100, // incorrect units; see PR#7933
nav_controller->crosstrack_error());
}
}
Expand Down

0 comments on commit 3e031e7

Please sign in to comment.