forked from Archive/PX4-Autopilot
use new method for instant transition in tailsitter
This commit is contained in:
parent
05f1da8c4a
commit
1a66155d8a
|
@ -180,7 +180,7 @@ void Tailsitter::update_vtol_state()
|
||||||
|
|
||||||
// check if we have reached airspeed and pitch angle to switch to TRANSITION P2 mode
|
// check if we have reached airspeed and pitch angle to switch to TRANSITION P2 mode
|
||||||
if ((_airspeed->indicated_airspeed_m_s >= _params_tailsitter.airspeed_trans
|
if ((_airspeed->indicated_airspeed_m_s >= _params_tailsitter.airspeed_trans
|
||||||
&& _v_att->pitch <= PITCH_TRANSITION_FRONT_P1) || !_armed->armed) {
|
&& _v_att->pitch <= PITCH_TRANSITION_FRONT_P1) || can_transition_on_ground()) {
|
||||||
_vtol_schedule.flight_mode = FW_MODE;
|
_vtol_schedule.flight_mode = FW_MODE;
|
||||||
//_vtol_schedule.transition_start = hrt_absolute_time();
|
//_vtol_schedule.transition_start = hrt_absolute_time();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue