Browse Source

Fixed the fixme!

QGC4.4
Don Gagne 10 years ago
parent
commit
2d79df2ba5
  1. 1
      src/comm/MAVLinkProtocol.cc

1
src/comm/MAVLinkProtocol.cc

@ -236,7 +236,6 @@ void MAVLinkProtocol::receiveBytes(LinkInterface* link, QByteArray b) @@ -236,7 +236,6 @@ void MAVLinkProtocol::receiveBytes(LinkInterface* link, QByteArray b)
static bool checkedUserNonMavlink = false;
static bool warnedUserNonMavlink = false;
// FIXME: Add check for if link->getId() >= MAVLINK_COMM_NUM_BUFFERS
for (int position = 0; position < b.size(); position++) {
unsigned int decodeState = mavlink_parse_char(mavlinkChannel, (uint8_t)(b[position]), &message, &status);

Loading…
Cancel
Save