1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-23 08:15:26 +03:00

Remove PID iterm constrain for NAV PID controller

This commit is contained in:
Pawel Spychalski (DzikuVx) 2020-03-22 14:21:00 +01:00
parent 0cb3ce4ede
commit d7fa48b2e6
3 changed files with 2 additions and 7 deletions

View file

@ -1863,11 +1863,6 @@ float navPidApply3(pidController_t *pid, const float setpoint, const float measu
}
}
/*
* Limit both output and Iterm to limit windup
*/
pid->integrator = constrain(pid->integrator, outMin, outMax);
return outValConstrained;
}