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

Added ITerm limit

This commit is contained in:
Martin Budden 2017-08-23 15:16:14 +01:00
parent 3bae1e78e2
commit f8faf242fa
3 changed files with 10 additions and 5 deletions

View file

@ -106,6 +106,7 @@ typedef struct pidProfile_s {
uint8_t crash_recovery_rate; // degree/second
pidCrashRecovery_e crash_recovery; // off, on, on and beeps when it is in crash recovery mode
uint16_t crash_limit_yaw; // limits yaw errorRate, so crashes don't cause huge throttle increase
uint16_t itermLimit;
} pidProfile_t;
PG_DECLARE_ARRAY(pidProfile_t, MAX_PROFILE_COUNT, pidProfiles);