From e88f1b33b2b81b4f886ecef0d5463508c82cfb2e Mon Sep 17 00:00:00 2001 From: Julian Oes <julian@oes.ch> Date: Wed, 3 Apr 2019 11:02:02 +0200 Subject: [PATCH] FlightTasks: fix mission DO_CHANGE_SPEED This fixes the issue where the DO_CHANGE_SPEED command was ignored and the drone always travelled at the MPC_XY_CRUISE velocity. --- .../tasks/AutoLineSmoothVel/FlightTaskAutoLineSmoothVel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/FlightTasks/tasks/AutoLineSmoothVel/FlightTaskAutoLineSmoothVel.cpp b/src/lib/FlightTasks/tasks/AutoLineSmoothVel/FlightTaskAutoLineSmoothVel.cpp index 226f0231bf..57b4df131d 100644 --- a/src/lib/FlightTasks/tasks/AutoLineSmoothVel/FlightTaskAutoLineSmoothVel.cpp +++ b/src/lib/FlightTasks/tasks/AutoLineSmoothVel/FlightTaskAutoLineSmoothVel.cpp @@ -167,7 +167,7 @@ void FlightTaskAutoLineSmoothVel::_prepareSetpoints() Vector2f u_pos_traj_to_dest_xy(Vector2f(pos_traj_to_dest).unit_or_zero()); float speed_sp_track = Vector2f(pos_traj_to_dest).length() * _param_mpc_xy_traj_p.get(); - speed_sp_track = math::constrain(speed_sp_track, 0.0f, _param_mpc_xy_cruise.get()); + speed_sp_track = math::constrain(speed_sp_track, 0.0f, _mc_cruise_speed); Vector2f vel_sp_xy = u_pos_traj_to_dest_xy * speed_sp_track; -- GitLab