Skip to content
Snippets Groups Projects
Commit dec96b0a authored by bresch's avatar bresch Committed by Julian Oes
Browse files

revert FlightTasks: fix mission DO_CHANGE_SPEED

parent 20adce50
No related branches found
No related tags found
No related merge requests found
......@@ -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, _mc_cruise_speed);
speed_sp_track = math::constrain(speed_sp_track, 0.0f, _param_mpc_xy_cruise.get());
Vector2f vel_sp_xy = u_pos_traj_to_dest_xy * speed_sp_track;
......
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