- hot fix for using RX_PARALLEL_PWM and RX_MSP crash problem, choose this 2 options will go back to RX_PPM
This commit is contained in:
parent
4859d098ff
commit
36aee11cd8
|
@ -889,6 +889,11 @@ void validateAndFixConfig(void)
|
|||
|
||||
#if defined(COLIBRI_RACE)
|
||||
masterConfig.serialConfig.portConfigs[0].functionMask = FUNCTION_MSP;
|
||||
if(featureConfigured(FEATURE_RX_PARALLEL_PWM) || featureConfigured(FEATURE_RX_MSP)) {
|
||||
featureClear(FEATURE_RX_PARALLEL_PWM);
|
||||
featureClear(FEATURE_RX_MSP);
|
||||
featureSet(FEATURE_RX_PPM);
|
||||
}
|
||||
if(featureConfigured(FEATURE_RX_SERIAL)) {
|
||||
masterConfig.serialConfig.portConfigs[2].functionMask = FUNCTION_RX_SERIAL;
|
||||
masterConfig.rxConfig.serialrx_provider = SERIALRX_SBUS;
|
||||
|
|
Loading…
Reference in New Issue