Commit 3065d1a9 authored by Gus Grubba's avatar Gus Grubba

Pulling mavlink with a reversal for the CAMERA_IMAGE_CAPTURED message. It's...

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.
parent 868adb9e
Subproject commit 47d2375dc44a5c4d936824a7a6ce4dc8a2fbc553
Subproject commit 646c3f4eeae648ffb2cc7dca041d414c4b42c88a
......@@ -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)
......
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