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
801cbc85
Commit
801cbc85
authored
6 years ago
by
mcsauder
Committed by
Beat Küng
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Cut case MAVLINK_MSG_ID_HIL_GPS content and paste into handle_message_hil_gps() method.
parent
b705bf6b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/modules/simulator/simulator.h
+1
-0
1 addition, 0 deletions
src/modules/simulator/simulator.h
src/modules/simulator/simulator_mavlink.cpp
+13
-8
13 additions, 8 deletions
src/modules/simulator/simulator_mavlink.cpp
with
14 additions
and
8 deletions
src/modules/simulator/simulator.h
+
1
−
0
View file @
801cbc85
...
...
@@ -332,6 +332,7 @@ private:
void
handle_message
(
mavlink_message_t
*
msg
);
void
handle_message_distance_sensor
(
const
mavlink_message_t
*
msg
);
void
handle_message_hil_gps
(
const
mavlink_message_t
*
msg
);
void
handle_message_hil_sensor
(
const
mavlink_message_t
*
msg
);
void
handle_message_hil_state_quaternion
(
const
mavlink_message_t
*
msg
);
void
handle_message_landing_target
(
const
mavlink_message_t
*
msg
);
...
...
This diff is collapsed.
Click to expand it.
src/modules/simulator/simulator_mavlink.cpp
+
13
−
8
View file @
801cbc85
...
...
@@ -310,14 +310,7 @@ void Simulator::handle_message(mavlink_message_t *msg)
break
;
case
MAVLINK_MSG_ID_HIL_GPS
:
mavlink_hil_gps_t
gps_sim
;
mavlink_msg_hil_gps_decode
(
msg
,
&
gps_sim
);
if
(
_publish
)
{
//PX4_WARN("FIXME: Need to publish GPS topic. Not done yet.");
}
update_gps
(
&
gps_sim
);
handle_message_hil_gps
(
msg
);
break
;
case
MAVLINK_MSG_ID_RC_CHANNELS
:
...
...
@@ -351,6 +344,18 @@ void Simulator::handle_message_distance_sensor(const mavlink_message_t *msg)
publish_distance_topic
(
&
dist
);
}
void
Simulator
::
handle_message_hil_gps
(
const
mavlink_message_t
*
msg
)
{
mavlink_hil_gps_t
gps_sim
;
mavlink_msg_hil_gps_decode
(
msg
,
&
gps_sim
);
if
(
_publish
)
{
//PX4_WARN("FIXME: Need to publish GPS topic. Not done yet.");
}
update_gps
(
&
gps_sim
);
}
void
Simulator
::
handle_message_hil_sensor
(
const
mavlink_message_t
*
msg
)
{
mavlink_hil_sensor_t
imu
;
...
...
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