We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c1dc36 + 7835e13 commit 74ebc46Copy full SHA for 74ebc46
src/mixer.c
@@ -607,7 +607,7 @@ void mixTable(void)
607
if (motor[i] > maxMotor)
608
maxMotor = motor[i];
609
for (i = 0; i < numberMotor; i++) {
610
- if (maxMotor > mcfg.maxthrottle) // this is a way to still have good gyro corrections if at least one motor reaches its max.
+ if (maxMotor > mcfg.maxthrottle && !f.FIXED_WING) // this is a way to still have good gyro corrections if at least one motor reaches its max.
611
motor[i] -= maxMotor - mcfg.maxthrottle;
612
613
if (feature(FEATURE_3D)) {
0 commit comments