1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 16:25:31 +03:00

Omit special case of USE_OSD_SLAVE and USE_QUAD_MIXER_ONLY

This commit is contained in:
jflyper 2017-05-29 13:30:21 +09:00
parent ba99a372a1
commit 93d554516a

View file

@ -546,7 +546,7 @@ void activateConfig(void)
void validateAndFixConfig(void)
{
#if !defined(USE_UNCOMMON_MIXERS) || defined(USE_QUADX_MIXER_ONLY)
#if !defined(USE_UNCOMMON_MIXERS) && !defined(USE_QUAD_MIXER_ONLY) && !defined(USE_OSD_SLAVE)
if (mixers[mixerConfigMutable()->mixerMode].motor == NULL) {
mixerConfigMutable()->mixerMode = MIXER_CUSTOM;
}