fw pos ctrl: remove vtol condition from manual takeoff completion

This commit is contained in:
Thomas Stastny 2022-07-12 14:20:00 +02:00 committed by Daniel Agar
parent a12e40b1d8
commit ec02413387
1 changed files with 1 additions and 2 deletions

View File

@ -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;
}
}