Skip to content
Snippets Groups Projects
Commit 6212e9c7 authored by Dennis Mannhart's avatar Dennis Mannhart Committed by Daniel Agar
Browse files

FlightTaskManualAltitude: use stick inputs for the brake check

parent 280cb34a
No related branches found
No related tags found
No related merge requests found
......@@ -92,7 +92,7 @@ void FlightTaskManualAltitude::_updateAltitudeLock()
// If not locked, altitude setpoint is set to NAN.
// Check if user wants to break
const bool apply_brake = fabsf(_velocity_setpoint(2)) <= FLT_EPSILON;
const bool apply_brake = fabsf(_sticks_expo(2)) <= FLT_EPSILON;
// Check if vehicle has stopped
const bool stopped = (MPC_HOLD_MAX_Z.get() < FLT_EPSILON || fabsf(_velocity(2)) < MPC_HOLD_MAX_Z.get());
......
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