Browse Source

MAVLink decoder: Run at lowest priority

QGC4.4
Lorenz Meier 8 years ago
parent
commit
6023c1bfa6
  1. 2
      src/ui/MAVLinkDecoder.cc

2
src/ui/MAVLinkDecoder.cc

@ -43,7 +43,7 @@ MAVLinkDecoder::MAVLinkDecoder(MAVLinkProtocol* protocol) :
connect(protocol, &MAVLinkProtocol::messageReceived, this, &MAVLinkDecoder::receiveMessage); connect(protocol, &MAVLinkProtocol::messageReceived, this, &MAVLinkDecoder::receiveMessage);
connect(this, &MAVLinkDecoder::finish, this, &QThread::quit); connect(this, &MAVLinkDecoder::finish, this, &QThread::quit);
start(LowPriority); start(LowestPriority);
} }
/** /**

Loading…
Cancel
Save