Browse Source

Merge pull request #5518 from mavlink/pr-reduce-mavlink-decoder-prio

MAVLink decoder: Run at lowest priority
QGC4.4
Don Gagne 8 years ago committed by GitHub
parent
commit
8d403ddf1c
  1. 2
      src/ui/MAVLinkDecoder.cc

2
src/ui/MAVLinkDecoder.cc

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

Loading…
Cancel
Save