1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 00:05:33 +03:00

Optimise / fix new transition calculations // Dont use accelerator during anti windup

This commit is contained in:
borisbstyle 2017-01-29 13:45:54 +01:00
parent ad892400e5
commit ff8be19b8f
2 changed files with 10 additions and 7 deletions

View file

@ -183,7 +183,7 @@ static void resetPidProfile(pidProfile_t *pidProfile)
pidProfile->yawRateAccelLimit = 10.0f;
pidProfile->rateAccelLimit = 0.0f;
pidProfile->itermThrottleThreshold = 300;
pidProfile->itermAcceleratorGain = 4.0f;
pidProfile->itermAcceleratorGain = 3.0f;
}
void resetProfile(profile_t *profile)