Commit 0b7509fc authored by Jessica's avatar Jessica

Issue #68. Took out the check of component id == 200 in MAVLinkDecoder.cc line 56.

parent 44d3d10d
......@@ -53,7 +53,7 @@ void MAVLinkDecoder::receiveMessage(LinkInterface* link,mavlink_message_t messag
uint8_t msgid = message.msgid;
// Handle time sync message
if (message.msgid == MAVLINK_MSG_ID_SYSTEM_TIME && message.compid == 200)
if (message.msgid == MAVLINK_MSG_ID_SYSTEM_TIME)
{
mavlink_system_time_t timebase;
mavlink_msg_system_time_decode(&message, &timebase);
......
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