Commit 790e6543 authored by DonLakeFlyer's avatar DonLakeFlyer

Fix build break

parent 72ac8f8a
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment