Browse Source

Merge pull request #8761 from spearuav/spearuav_master_fixes

Add return in CustomFirmwarePlugin::hasGimbal
QGC4.4
Don Gagne 5 years ago committed by GitHub
parent
commit
63cc00146e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      custom-example/src/FirmwarePlugin/CustomFirmwarePlugin.cc

2
custom-example/src/FirmwarePlugin/CustomFirmwarePlugin.cc

@ -52,4 +52,6 @@ bool CustomFirmwarePlugin::hasGimbal(Vehicle* /*vehicle*/, bool& rollSupported, @@ -52,4 +52,6 @@ bool CustomFirmwarePlugin::hasGimbal(Vehicle* /*vehicle*/, bool& rollSupported,
rollSupported = false;
pitchSupported = true;
yawSupported = true;
return true;
}

Loading…
Cancel
Save