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
22be99da
Commit
22be99da
authored
7 years ago
by
Dennis Mannhart
Committed by
Lorenz Meier
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
mc_pos_control: change name _pos_first_nofinite to _triplet_lat_lon_finite
parent
cdb610a4
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
+5
-5
5 additions, 5 deletions
src/modules/mc_pos_control/mc_pos_control_main.cpp
with
5 additions
and
5 deletions
src/modules/mc_pos_control/mc_pos_control_main.cpp
+
5
−
5
View file @
22be99da
...
...
@@ -229,7 +229,7 @@ private:
bool
_alt_hold_engaged
;
bool
_run_pos_control
;
bool
_run_alt_control
;
bool
_
pos_firs
t_
n
onfinite
;
bool
_
triplet_la
t_
l
on
_
finite
;
bool
_reset_int_z
=
true
;
bool
_reset_int_xy
=
true
;
...
...
@@ -419,7 +419,7 @@ MulticopterPositionControl::MulticopterPositionControl() :
_alt_hold_engaged
(
false
),
_run_pos_control
(
true
),
_run_alt_control
(
true
),
_
pos_firs
t_
n
onfinite
(
true
),
_
triplet_la
t_
l
on
_
finite
(
true
),
_yaw
(
0.0
f
),
_yaw_takeoff
(
0.0
f
),
_vel_max_xy
(
0.0
f
),
...
...
@@ -1412,13 +1412,13 @@ void MulticopterPositionControl::control_auto(float dt)
_pos_sp_triplet
.
current
.
lat
,
_pos_sp_triplet
.
current
.
lon
,
&
curr_pos_sp
.
data
[
0
],
&
curr_pos_sp
.
data
[
1
]);
_
pos_firs
t_
n
onfinite
=
true
;
_
triplet_la
t_
l
on
_
finite
=
true
;
}
else
{
// use current position if NAN -> e.g. land
if
(
_
pos_firs
t_
n
onfinite
)
{
if
(
_
triplet_la
t_
l
on
_
finite
)
{
curr_pos_sp
.
data
[
0
]
=
_pos
(
0
);
curr_pos_sp
.
data
[
1
]
=
_pos
(
1
);
_
pos_firs
t_
n
onfinite
=
false
;
_
triplet_la
t_
l
on
_
finite
=
false
;
}
}
...
...
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