Skip to content
Snippets Groups Projects
Commit 4b540503 authored by Martina's avatar Martina Committed by Daniel Agar
Browse files

mc_pos_control: get empty avoidance waypoint from fligth task so that code

isn't duplicated
parent ede30229
No related branches found
No related tags found
No related merge requests found
......@@ -153,14 +153,6 @@ private:
/** Timeout in us for trajectory data to get considered invalid */
static constexpr uint64_t TRAJECTORY_STREAM_TIMEOUT_US = 500000;
static constexpr vehicle_trajectory_waypoint_s empty_trajectory_waypoint = {0, 0, {0, 0, 0, 0, 0, 0, 0}, {{0, {NAN, NAN, NAN}, {NAN, NAN, NAN}, {NAN, NAN, NAN}, NAN, NAN, false},
{0, {NAN, NAN, NAN}, {NAN, NAN, NAN}, {NAN, NAN, NAN}, NAN, NAN, false},
{0, {NAN, NAN, NAN}, {NAN, NAN, NAN}, {NAN, NAN, NAN}, NAN, NAN, false},
{0, {NAN, NAN, NAN}, {NAN, NAN, NAN}, {NAN, NAN, NAN}, NAN, NAN, false},
{0, {NAN, NAN, NAN}, {NAN, NAN, NAN}, {NAN, NAN, NAN}, NAN, NAN, false}
}
};
/**
* Hysteresis that turns true once vehicle is armed for MPC_IDLE_TKO seconds.
* A real vehicle requires some time to accelerates the propellers to IDLE speed. To ensure
......@@ -1014,7 +1006,8 @@ MulticopterPositionControl::publish_avoidance_desired_waypoint()
}
//reset avoidance waypoint desired
_traj_wp_avoidance_desired = empty_trajectory_waypoint;
_traj_wp_avoidance_desired = _flight_tasks.getEmptyAvoidanceWaypoint();
}
......
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