RC_Channel: don't panic on unsupported RCn_OPTION in SITL

This commit is contained in:
Mark Whitehorn 2019-11-04 14:24:34 -07:00 committed by Peter Barker
parent 9ffc0f5a3a
commit c5abcb5584
1 changed files with 1 additions and 4 deletions

View File

@ -476,10 +476,7 @@ void RC_Channel::init_aux_function(const aux_func_t ch_option, const aux_switch_
do_aux_function(ch_option, ch_flag);
break;
default:
gcs().send_text(MAV_SEVERITY_WARNING, "Failed to initialise RC function (%u)", (unsigned)ch_option);
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
AP_HAL::panic("RC function (%u) initialisation not handled", (unsigned)ch_option);
#endif
gcs().send_text(MAV_SEVERITY_WARNING, "Unsupported RC function (%u)", (unsigned)ch_option);
break;
}
}