mirror of https://github.com/ArduPilot/ardupilot
RC_Channel: disable FFT notch tune feature
See https://github.com/ArduPilot/ardupilot/pull/22686
This commit is contained in:
parent
93ec74350c
commit
50b823142e
|
@ -1100,9 +1100,12 @@ bool RC_Channel::do_aux_function(const aux_func_t ch_option, const AuxSwitchPos
|
||||||
do_aux_function_avoid_adsb(ch_flag);
|
do_aux_function_avoid_adsb(ch_flag);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
// feature disabled for 4.3.4 due to https://github.com/ArduPilot/ardupilot/pull/22686
|
||||||
case AUX_FUNC::FFT_NOTCH_TUNE:
|
case AUX_FUNC::FFT_NOTCH_TUNE:
|
||||||
do_aux_function_fft_notch_tune(ch_flag);
|
do_aux_function_fft_notch_tune(ch_flag);
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
#if HAL_GENERATOR_ENABLED
|
#if HAL_GENERATOR_ENABLED
|
||||||
case AUX_FUNC::GENERATOR:
|
case AUX_FUNC::GENERATOR:
|
||||||
|
|
Loading…
Reference in New Issue