From 3065d1a9d880b58508e3079365da62b4833ce56e Mon Sep 17 00:00:00 2001 From: Gus Grubba Date: Sun, 23 Jul 2017 00:53:50 -0400 Subject: [PATCH] Pulling mavlink with a reversal for the CAMERA_IMAGE_CAPTURED message. It's now back as it was so it won't break existing code. The pull also brought changes to the GPS_RAW_INT message. Only MockLink uses. I entered zeros for all new fields. --- libs/mavlink/include/mavlink/v2.0 | 2 +- src/comm/MockLink.cc | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/libs/mavlink/include/mavlink/v2.0 b/libs/mavlink/include/mavlink/v2.0 index 47d2375dc4..646c3f4eea 160000 --- a/libs/mavlink/include/mavlink/v2.0 +++ b/libs/mavlink/include/mavlink/v2.0 @@ -1 +1 @@ -Subproject commit 47d2375dc44a5c4d936824a7a6ce4dc8a2fbc553 +Subproject commit 646c3f4eeae648ffb2cc7dca041d414c4b42c88a diff --git a/src/comm/MockLink.cc b/src/comm/MockLink.cc index 146b048e00..c28e50776e 100644 --- a/src/comm/MockLink.cc +++ b/src/comm/MockLink.cc @@ -946,8 +946,14 @@ void MockLink::_sendGpsRawInt(void) UINT16_MAX, UINT16_MAX, // HDOP/VDOP not known UINT16_MAX, // velocity not known UINT16_MAX, // course over ground not known - 8); // satellite count - respondWithMavlinkMessage(msg); + 8, // satellite count + //-- Extension + 0, // Altitude (above WGS84, EGM96 ellipsoid), in meters * 1000 (positive for up). + 0, // Position uncertainty in meters * 1000 (positive for up). + 0, // Altitude uncertainty in meters * 1000 (positive for up). + 0, // Speed uncertainty in meters * 1000 (positive for up). + 0); // Heading / track uncertainty in degrees * 1e5. + respondWithMavlinkMessage(msg); } void MockLink::_sendStatusTextMessages(void) -- GitLab