forked from Archive/PX4-Autopilot
mc_pos_control: ignore maybe_landed and ground_contact for takeoff setpoint
This commit is contained in:
parent
03d86054a4
commit
4692ccf287
|
@ -1828,7 +1828,8 @@ MulticopterPositionControl::calculate_thrust_setpoint(float dt)
|
|||
thrust_sp = _R * thrust_sp_body;
|
||||
}
|
||||
|
||||
if (_vehicle_land_detected.maybe_landed) {
|
||||
if (_vehicle_land_detected.maybe_landed
|
||||
&& !(_pos_sp_triplet.current.type == position_setpoint_s::SETPOINT_TYPE_TAKEOFF)) {
|
||||
/* we set thrust to zero
|
||||
* this will help to decide if we are actually landed or not
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue