FlightTasks: remove updateFinalize() concept because it got obsolete

This commit is contained in:
Matthias Grob
2021-11-17 09:25:44 +01:00
committed by Daniel Agar
parent 9eac0edbc0
commit 35d4986ea7
4 changed files with 4 additions and 17 deletions
@@ -214,17 +214,13 @@ bool FlightTaskAuto::update()
// update previous type
_type_previous = _type;
return ret;
}
bool FlightTaskAuto::updateFinalize()
{
// All the auto FlightTasks have to comply with defined maximum yaw rate
// If the FlightTask generates a yaw or a yawrate setpoint that exceeds this value
// it will see its setpoint constrained here
_limitYawRate();
_constraints.want_takeoff = _checkTakeoff();
return true;
return ret;
}
void FlightTaskAuto::_prepareLandSetpoints()