Skip to content

Commit

Permalink
Copter: Remove tradheli arming check for inverted flight
Browse files Browse the repository at this point in the history
  • Loading branch information
bnsgeyer committed Mar 1, 2024
1 parent 6ea06ac commit d4a58e8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions ArduCopter/AP_Arming.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,12 +231,6 @@ bool AP_Arming_Copter::parameter_checks(bool display_failure)
return false;
}

// Inverted flight feature disabled for Heli Single and Dual frames
if (copter.g2.frame_class.get() != AP_Motors::MOTOR_FRAME_HELI_QUAD &&
rc().find_channel_for_option(RC_Channel::AUX_FUNC::INVERTED) != nullptr) {
check_failed(ARMING_CHECK_PARAMETERS, display_failure, "Inverted flight option not supported");
return false;
}
// Ensure an Aux Channel is configured for motor interlock
if (rc().find_channel_for_option(RC_Channel::AUX_FUNC::MOTOR_INTERLOCK) == nullptr) {
check_failed(ARMING_CHECK_PARAMETERS, display_failure, "Motor Interlock not configured");
Expand Down

0 comments on commit d4a58e8

Please sign in to comment.