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
790e6543
Commit
790e6543
authored
Aug 12, 2017
by
DonLakeFlyer
Browse files
Fix build break
parent
72ac8f8a
Changes
1
Show whitespace changes
Inline
Side-by-side
src/Vehicle/Vehicle.cc
View file @
790e6543
...
...
@@ -922,6 +922,10 @@ void Vehicle::_handleCommandAck(mavlink_message_t& message)
void
Vehicle
::
_handleCommandLong
(
mavlink_message_t
&
message
)
{
#ifdef __ios__
Q_UNUSED
(
message
)
// iOS has no serial links
#else
mavlink_command_long_t
cmd
;
mavlink_msg_command_long_decode
(
&
message
,
&
cmd
);
...
...
@@ -941,6 +945,7 @@ void Vehicle::_handleCommandLong(mavlink_message_t& message)
}
break
;
}
#endif
}
void
Vehicle
::
_handleExtendedSysState
(
mavlink_message_t
&
message
)
...
...
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