Merge pull request #3106 from mikeller/add_passthru_mode_for_custom_airplane

Added PASSTHRU_MODE mode for MIXER_CUSTOM_AIRPLANE.
This commit is contained in:
Martin Budden 2017-05-17 05:47:40 +01:00 committed by GitHub
commit e5ef8cdb6a
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ void initActiveBoxIds(void)
activeBoxIds[activeBoxIdCount++] = BOXFAILSAFE;
}
if (mixerConfig()->mixerMode == MIXER_FLYING_WING || mixerConfig()->mixerMode == MIXER_AIRPLANE) {
if (mixerConfig()->mixerMode == MIXER_FLYING_WING || mixerConfig()->mixerMode == MIXER_AIRPLANE || mixerConfig()->mixerMode == MIXER_CUSTOM_AIRPLANE) {
activeBoxIds[activeBoxIdCount++] = BOXPASSTHRU;
}