Browse Source

Merge pull request #6468 from DonLakeFlyer/PX4Takeoff

Don't go into Hold before takeoff
QGC4.4
Don Gagne 7 years ago committed by GitHub
parent
commit
0f630c0669
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/Vehicle/Vehicle.cc

1
src/Vehicle/Vehicle.cc

@ -2702,7 +2702,6 @@ void Vehicle::guidedModeTakeoff(double altitudeRelative) @@ -2702,7 +2702,6 @@ void Vehicle::guidedModeTakeoff(double altitudeRelative)
qgcApp()->showMessage(guided_mode_not_supported_by_vehicle);
return;
}
setGuidedMode(true);
_firmwarePlugin->guidedModeTakeoff(this, altitudeRelative);
}

Loading…
Cancel
Save