Skip to content
Snippets Groups Projects
Commit 9a23295a authored by Dennis Mannhart's avatar Dennis Mannhart Committed by ChristophTobler
Browse files

heading update: do not update heading within NAV_ACC_RAD

parent 30fb82d9
No related branches found
No related tags found
No related merge requests found
......@@ -255,10 +255,12 @@ void FlightTaskAuto::_set_heading_from_mode()
}
}
// We only adjust yaw if vehicle is outside of acceptance radius.
// This prevents excessive yawing.
if (PX4_ISFINITE(v.length()) && v.length() > NAV_ACC_RAD.get()) {
_compute_heading_from_2D_vector(_yaw_setpoint, v);
if (PX4_ISFINITE(v.length())) {
// We only adjust yaw if vehicle is outside of acceptance radius.
// This prevents excessive yawing.
if (v.length() > NAV_ACC_RAD.get()) {
_compute_heading_from_2D_vector(_yaw_setpoint, v);
}
} else {
_yaw_setpoint = NAN;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment