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
08ce231d
Commit
08ce231d
authored
9 years ago
by
Julian Oes
Browse files
Options
Downloads
Patches
Plain Diff
ekf2: compile fixes after rebase
parent
e91f5874
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/modules/ekf2/ekf2_main.cpp
+0
-4
0 additions, 4 deletions
src/modules/ekf2/ekf2_main.cpp
with
0 additions
and
4 deletions
src/modules/ekf2/ekf2_main.cpp
+
0
−
4
View file @
08ce231d
...
...
@@ -136,7 +136,6 @@ private:
int
_gps_sub
=
-
1
;
int
_airspeed_sub
=
-
1
;
int
_params_sub
=
-
1
;
int
_vehicle_status_sub
=
-
1
;
int
_optical_flow_sub
=
-
1
;
int
_range_finder_sub
=
-
1
;
int
_actuator_armed_sub
=
-
1
;
...
...
@@ -318,7 +317,6 @@ void Ekf2::task_main()
_gps_sub
=
orb_subscribe
(
ORB_ID
(
vehicle_gps_position
));
_airspeed_sub
=
orb_subscribe
(
ORB_ID
(
airspeed
));
_params_sub
=
orb_subscribe
(
ORB_ID
(
parameter_update
));
_vehicle_status_sub
=
orb_subscribe
(
ORB_ID
(
vehicle_status
));
_optical_flow_sub
=
orb_subscribe
(
ORB_ID
(
optical_flow
));
_range_finder_sub
=
orb_subscribe
(
ORB_ID
(
distance_sensor
));
_actuator_armed_sub
=
orb_subscribe
(
ORB_ID
(
actuator_armed
));
...
...
@@ -339,7 +337,6 @@ void Ekf2::task_main()
sensor_combined_s
sensors
=
{};
vehicle_gps_position_s
gps
=
{};
airspeed_s
airspeed
=
{};
vehicle_control_mode_s
vehicle_control_mode
=
{};
optical_flow_s
optical_flow
=
{};
distance_sensor_s
range_finder
=
{};
actuator_armed_s
actuator_armed
=
{};
...
...
@@ -373,7 +370,6 @@ void Ekf2::task_main()
bool
gps_updated
=
false
;
bool
airspeed_updated
=
false
;
bool
vehicle_status_updated
=
false
;
bool
optical_flow_updated
=
false
;
bool
range_finder_updated
=
false
;
bool
actuator_armed_updated
=
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