mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-17 05:15:25 +03:00
Change min threshold for mix reduction
This commit is contained in:
parent
65e17dd957
commit
bafdbf4b2a
1 changed files with 1 additions and 1 deletions
|
@ -787,7 +787,7 @@ void mixTable(void)
|
|||
bool isFailsafeActive = failsafeIsActive(); // TODO - Find out if failsafe checks are really needed here in mixer code
|
||||
|
||||
if (motorLimitReached) {
|
||||
uint8_t pidAttenuation = constrain(qPercent(mixReduction), 20, 100);
|
||||
uint8_t pidAttenuation = constrain(qPercent(mixReduction), 30, 100);
|
||||
for (axis = 0; axis < 2; axis++) axisPID[axis] *= pidAttenuation / 100;
|
||||
if (debugMode == DEBUG_AIRMODE) debug[0] = pidAttenuation;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue