forked from Archive/PX4-Autopilot
fw pos ctrl: remove vtol condition from manual takeoff completion
This commit is contained in:
parent
a12e40b1d8
commit
ec02413387
|
@ -738,8 +738,7 @@ FixedwingPositionControl::updateManualTakeoffStatus()
|
|||
const bool at_controllable_airspeed = _airspeed > _param_fw_airspd_min.get()
|
||||
|| !_airspeed_valid;
|
||||
_completed_manual_takeoff = !_landed
|
||||
&& at_controllable_airspeed
|
||||
&& !_vehicle_status.is_vtol;
|
||||
&& at_controllable_airspeed;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue