Skip to content

Commit

Permalink
Navigator: Land: Improve it for VTOL by taking breaking distance into…
Browse files Browse the repository at this point in the history
… account (#23566)

* vtol adjust landing setpoint

* improve comment

Co-authored-by: Silvan Fuhrer <[email protected]>

---------

Co-authored-by: Silvan Fuhrer <[email protected]>
  • Loading branch information
Claudio-Chies and sfuhrer authored Aug 22, 2024
1 parent e0bb56b commit ee022a7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/modules/navigator/land.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,8 @@ Land::on_active()
_navigator->get_vstatus()->in_transition_mode) {
struct position_setpoint_triplet_s *pos_sp_triplet = _navigator->get_position_setpoint_triplet();

// create a virtual wp 1m in front of the vehicle to track during the backtransition
waypoint_from_heading_and_distance(_navigator->get_global_position()->lat, _navigator->get_global_position()->lon,
_navigator->get_local_position()->heading, 1.f,
&pos_sp_triplet->current.lat, &pos_sp_triplet->current.lon);
// create a wp in front of the VTOL while in back-transition, based on MPC settings that will apply in MC phase afterwards
_navigator->calculate_breaking_stop(pos_sp_triplet->current.lat, pos_sp_triplet->current.lon);

_navigator->set_position_setpoint_triplet_updated();
}
Expand Down

0 comments on commit ee022a7

Please sign in to comment.