Skip to content

Commit

Permalink
Remove old EZLANDING entries in mixerType enum
Browse files Browse the repository at this point in the history
  • Loading branch information
tbolin committed Dec 6, 2023
1 parent aa33149 commit 6d6fa13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/flight/mixer.c
Expand Up @@ -726,7 +726,7 @@ FAST_CODE_NOINLINE void mixTable(timeUs_t currentTimeUs)
case MIXER_DYNAMIC:
applyMixerAdjustmentLinear(motorMix, airmodeEnabled);
break;
case MIXER_EZLANDING_THROTTLE:
case MIXER_EZLANDING:
applyMixerAdjustmentEzLand(motorMix, motorMixMin, motorMixMax);
break;
default:
Expand Down
3 changes: 1 addition & 2 deletions src/main/flight/mixer.h
Expand Up @@ -71,8 +71,7 @@ typedef enum mixerType
MIXER_LEGACY = 0,
MIXER_LINEAR = 1,
MIXER_DYNAMIC = 2,
MIXER_EZLANDING_THROTTLE = 3,
MIXER_EZLANDING_CLIP = 4,
MIXER_EZLANDING = 3,
} mixerType_e;

// Custom mixer data per motor
Expand Down

0 comments on commit 6d6fa13

Please sign in to comment.