mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
Reset the altitude setpoint.
This commit is contained in:
parent
27e4139540
commit
f7e4a4852d
@ -1027,7 +1027,11 @@ bool FixedwingPositionControl::update_desired_altitude(float dt)
|
||||
_althold_epv = _global_pos.epv;
|
||||
_was_in_deadband = true;
|
||||
}
|
||||
|
||||
if (_vehicle_status.is_vtol) {
|
||||
if (_vehicle_status.is_rotary_wing || _vehicle_status.in_transition_mode) {
|
||||
_hold_alt = _global_pos.alt;
|
||||
}
|
||||
}
|
||||
return climbout_mode;
|
||||
}
|
||||
|
||||
|
||||
@ -993,9 +993,12 @@ MulticopterPositionControl::task_main()
|
||||
reset_yaw_sp = true;
|
||||
}
|
||||
|
||||
// XXX Temporary: for vtol use we need to reset the yaw setpoint when we are doing a transition
|
||||
if (_vehicle_status.in_transition_mode) {
|
||||
reset_yaw_sp = true;
|
||||
/* reset yaw and altitude setpoint for VTOL which are in fw mode */
|
||||
if (_vehicle_status.is_vtol) {
|
||||
if (!_vehicle_status.is_rotary_wing && !_vehicle_status.in_transition_mode) {
|
||||
reset_yaw_sp = true;
|
||||
_reset_alt_sp = true;
|
||||
}
|
||||
}
|
||||
|
||||
//Update previous arming state
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user