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
b26fc1f0
Commit
b26fc1f0
authored
9 years ago
by
Roman Bapst
Committed by
Lorenz Meier
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fix waypoint handling in position control
parent
9fb29d3a
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/fw_pos_control_l1/fw_pos_control_l1_main.cpp
+28
-11
28 additions, 11 deletions
src/modules/fw_pos_control_l1/fw_pos_control_l1_main.cpp
with
28 additions
and
11 deletions
src/modules/fw_pos_control_l1/fw_pos_control_l1_main.cpp
+
28
−
11
View file @
b26fc1f0
...
...
@@ -973,24 +973,41 @@ void FixedwingPositionControl::get_waypoint_heading_distance(float heading, floa
{
waypoint_prev
.
valid
=
true
;
waypoint_prev
.
alt
=
_hold_alt
;
position_setpoint_s
temp_next
{};
position_setpoint_s
temp_prev
{};
if
(
flag_init
)
{
// on init set first waypoint to momentary position
waypoint_prev
.
lat
=
_global_pos
.
lat
-
cos
(
heading
)
*
(
double
)(
HDG_HOLD_SET_BACK_DIST
)
/
1e6
;
waypoint_prev
.
lon
=
_global_pos
.
lon
-
sin
(
heading
)
*
(
double
)(
HDG_HOLD_SET_BACK_DIST
)
/
1e6
;
// on init set previous waypoint HDG_HOLD_SET_BACK_DIST meters behind us
waypoint_from_heading_and_distance
(
_global_pos
.
lat
,
_global_pos
.
lon
,
heading
+
180.0
f
*
M_DEG_TO_RAD_F
,
HDG_HOLD_SET_BACK_DIST
,
&
temp_prev
.
lat
,
&
temp_prev
.
lon
);
// set next waypoint HDG_HOLD_DIST_NEXT meters in front of us
waypoint_from_heading_and_distance
(
_global_pos
.
lat
,
_global_pos
.
lon
,
heading
,
HDG_HOLD_DIST_NEXT
,
&
temp_next
.
lat
,
&
temp_next
.
lon
);
waypoint_prev
=
temp_prev
;
waypoint_next
=
temp_next
;
waypoint_next
.
valid
=
true
;
waypoint_next
.
alt
=
_hold_alt
;
return
;
}
else
{
/*
for previous waypoint use the one still in front of us but shift it such that it is
located on the desired flight path but HDG_HOLD_SET_BACK_DIST behind us
*/
waypoint_prev
.
lat
=
waypoint_next
.
lat
-
cos
(
heading
)
*
(
double
)(
HDG_HOLD_REACHED_DIST
+
HDG_HOLD_SET_BACK_DIST
)
/
1e6
;
waypoint_prev
.
lon
=
waypoint_next
.
lon
-
sin
(
heading
)
*
(
double
)(
HDG_HOLD_REACHED_DIST
+
HDG_HOLD_SET_BACK_DIST
)
/
1e6
;
// for previous waypoint use the one still in front of us but shift it such that it is
// located on the desired flight path but HDG_HOLD_SET_BACK_DIST behind us
create_waypoint_from_line_and_dist
(
waypoint_next
.
lat
,
waypoint_next
.
lon
,
waypoint_prev
.
lat
,
waypoint_prev
.
lon
,
HDG_HOLD_REACHED_DIST
+
HDG_HOLD_SET_BACK_DIST
,
&
temp_prev
.
lat
,
&
temp_prev
.
lon
);
}
waypoint_next
.
valid
=
true
;
waypoint_next
.
lat
=
waypoint_prev
.
lat
+
cos
(
heading
)
*
(
double
)(
distance
+
HDG_HOLD_SET_BACK_DIST
)
/
1e6
;
waypoint_next
.
lon
=
waypoint_prev
.
lon
+
sin
(
heading
)
*
(
double
)(
distance
+
HDG_HOLD_SET_BACK_DIST
)
/
1e6
;
create_waypoint_from_line_and_dist
(
waypoint_next
.
lat
,
waypoint_next
.
lon
,
waypoint_prev
.
lat
,
waypoint_prev
.
lon
,
-
(
HDG_HOLD_DIST_NEXT
+
HDG_HOLD_REACHED_DIST
),
&
temp_next
.
lat
,
&
temp_next
.
lon
);
waypoint_prev
=
temp_prev
;
waypoint_next
=
temp_next
;
waypoint_next
.
alt
=
_hold_alt
;
}
...
...
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