Browse Source

Fixed minor bugs introduced in last commit

QGC4.4
lm 14 years ago
parent
commit
216295e7d0
  1. 2
      images/earth.html
  2. 5
      src/uas/PxQuadMAV.cc

2
images/earth.html

@ -102,7 +102,7 @@ function setDistanceMode(mode) @@ -102,7 +102,7 @@ function setDistanceMode(mode)
function setDraggingAllowed(allowed)
{
draggingAllowed = allowed;
//draggingAllowed = allowed;
}
function setNewWaypointPending(pending)

5
src/uas/PxQuadMAV.cc

@ -153,6 +153,11 @@ void PxQuadMAV::receiveMessage(LinkInterface* link, mavlink_message_t message) @@ -153,6 +153,11 @@ void PxQuadMAV::receiveMessage(LinkInterface* link, mavlink_message_t message)
}
}
#else
// Let UAS handle the default message set
UAS::receiveMessage(link, message);
Q_UNUSED(link);
Q_UNUSED(message);
#endif
}

Loading…
Cancel
Save