Browse Source

AP_Arming: rename 'enum aux_switch_pos_t' to 'enum class AuxSwitchPos'

zr-v5.1
Peter Barker 5 years ago committed by Peter Barker
parent
commit
8fd50dd66e
  1. 2
      libraries/AP_Arming/AP_Arming.cpp

2
libraries/AP_Arming/AP_Arming.cpp

@ -1241,7 +1241,7 @@ bool AP_Arming::disarm_switch_checks(bool display_failure) const @@ -1241,7 +1241,7 @@ bool AP_Arming::disarm_switch_checks(bool display_failure) const
{
const RC_Channel *chan = rc().find_channel_for_option(RC_Channel::AUX_FUNC::DISARM);
if (chan != nullptr &&
chan->get_aux_switch_pos() == RC_Channel::aux_switch_pos_t::HIGH &&
chan->get_aux_switch_pos() == RC_Channel::AuxSwitchPos::HIGH &&
(checks_to_perform & ARMING_CHECK_ALL)) {
check_failed(display_failure, "Disarm Switch on");
return false;

Loading…
Cancel
Save