Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
4b540503
Commit
4b540503
authored
6 years ago
by
Martina
Committed by
Daniel Agar
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
mc_pos_control: get empty avoidance waypoint from fligth task so that code
isn't duplicated
parent
ede30229
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/modules/mc_pos_control/mc_pos_control_main.cpp
+2
-9
2 additions, 9 deletions
src/modules/mc_pos_control/mc_pos_control_main.cpp
with
2 additions
and
9 deletions
src/modules/mc_pos_control/mc_pos_control_main.cpp
+
2
−
9
View file @
4b540503
...
...
@@ -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
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment