Browse Source

TradHeli: Cause DDVP Tail Motor to stop immediately when Ch8 is 0.

master
Robert Lefebvre 11 years ago committed by Randy Mackay
parent
commit
979abb9fbd
  1. 6
      libraries/AP_Motors/AP_MotorsHeli.cpp

6
libraries/AP_Motors/AP_MotorsHeli.cpp

@ -658,10 +658,8 @@ void AP_MotorsHeli::rsc_control() @@ -658,10 +658,8 @@ void AP_MotorsHeli::rsc_control()
}else{
// shutting down main rotor
rotor_ramp(0);
// if completed shutting down main motor then shut-down tail rotor. Note: this does nothing if not using direct drive vairable pitch tail
if (_rotor_speed_estimate <= 0) {
tail_ramp(0);
}
// shut-down tail rotor. Note: this does nothing if not using direct drive vairable pitch tail
tail_ramp(0);
}
// direct drive fixed pitch tail servo gets copy of yaw servo out (ch4) while main rotor is running

Loading…
Cancel
Save