diff --git a/src/main/flight/mixer.c b/src/main/flight/mixer.c index e581725e8..e3680a2c3 100644 --- a/src/main/flight/mixer.c +++ b/src/main/flight/mixer.c @@ -840,8 +840,7 @@ FAST_CODE_NOINLINE void mixTable(timeUs_t currentTimeUs, uint8_t vbatPidCompensa } } else { if (isAirmodeActive() || throttle > 0.5f) { // Only automatically adjust throttle when airmode enabled. Airmode logic is always active on high throttle - const float throttleLimitOffset = motorMixRange / 2.0f; - throttle = constrainf(throttle, 0.0f + throttleLimitOffset, 1.0f - throttleLimitOffset); + throttle = constrainf(throttle, -motorMixMin, 1.0f - motorMixMax); } }