Browse Source

Merge pull request #3094 from DonLakeFlyer/MavlinkChannel

Don't use channel 0 to avoid sequence number problems
QGC4.4
Don Gagne 9 years ago
parent
commit
fd9e128e0b
  1. 2
      src/comm/LinkManager.cc

2
src/comm/LinkManager.cc

@ -69,7 +69,7 @@ LinkManager::LinkManager(QGCApplication* app) @@ -69,7 +69,7 @@ LinkManager::LinkManager(QGCApplication* app)
, _configUpdateSuspended(false)
, _configurationsLoaded(false)
, _connectionsSuspended(false)
, _mavlinkChannelsUsedBitMask(0)
, _mavlinkChannelsUsedBitMask(1) // We never use channel 0 to avoid sequence numbering problems
, _mavlinkProtocol(NULL)
, _autoconnectUDP(true)
, _autoconnectPixhawk(true)

Loading…
Cancel
Save