Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
08921496
Commit
08921496
authored
Jan 17, 2016
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add MANUAL_CONTROL output
parent
6c0c9120
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
MockLink.cc
src/comm/MockLink.cc
+12
-0
MockLink.h
src/comm/MockLink.h
+1
-0
No files found.
src/comm/MockLink.cc
View file @
08921496
...
...
@@ -390,6 +390,10 @@ void MockLink::_handleIncomingMavlinkBytes(const uint8_t* bytes, int cBytes)
_handleCommandLong
(
msg
);
break
;
case
MAVLINK_MSG_ID_MANUAL_CONTROL
:
_handleManualControl
(
msg
);
break
;
default:
break
;
}
...
...
@@ -413,6 +417,14 @@ void MockLink::_handleSetMode(const mavlink_message_t& msg)
_mavCustomMode
=
request
.
custom_mode
;
}
void
MockLink
::
_handleManualControl
(
const
mavlink_message_t
&
msg
)
{
mavlink_manual_control_t
manualControl
;
mavlink_msg_manual_control_decode
(
&
msg
,
&
manualControl
);
qDebug
()
<<
"MANUAL_CONTROL"
<<
manualControl
.
x
<<
manualControl
.
y
<<
manualControl
.
z
<<
manualControl
.
r
;
}
void
MockLink
::
_setParamFloatUnionIntoMap
(
int
componentId
,
const
QString
&
paramName
,
float
paramFloat
)
{
mavlink_param_union_t
valueUnion
;
...
...
src/comm/MockLink.h
View file @
08921496
...
...
@@ -187,6 +187,7 @@ private:
void
_handleParamRequestRead
(
const
mavlink_message_t
&
msg
);
void
_handleFTP
(
const
mavlink_message_t
&
msg
);
void
_handleCommandLong
(
const
mavlink_message_t
&
msg
);
void
_handleManualControl
(
const
mavlink_message_t
&
msg
);
float
_floatUnionForParam
(
int
componentId
,
const
QString
&
paramName
);
void
_setParamFloatUnionIntoMap
(
int
componentId
,
const
QString
&
paramName
,
float
paramFloat
);
void
_sendHomePosition
(
void
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment