Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
08921496
Commit
08921496
authored
Jan 17, 2016
by
Don Gagne
Browse files
Add MANUAL_CONTROL output
parent
6c0c9120
Changes
2
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment