We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35aaa13 commit aabbe50Copy full SHA for aabbe50
libraries/AP_Motors/AP_MotorsHeli_RSC.cpp
@@ -457,7 +457,7 @@ void AP_MotorsHeli_RSC::update_rotor_runup(float dt)
457
}
458
459
// if rotor ramp and runup are both at full speed, then run-up has been completed
460
- if (!_runup_complete && (_rotor_ramp_output >= 1.0f) && (_rotor_runup_output >= 1.0f)) {
+ if (!_runup_complete && (_rotor_ramp_output >= 1.0f) && (_rotor_runup_output >= 1.0f) && (_control_mode == ROTOR_CONTROL_MODE_AUTOTHROTTLE ? _governor_engage : true)) {
461
_runup_complete = true;
462
463
// if rotor speed is less than critical speed, then run-up is not complete
0 commit comments