mirror of https://github.com/ArduPilot/ardupilot
Removed debugging code from APM_PI
This commit is contained in:
parent
d375de8424
commit
0ca427bdd9
|
@ -10,7 +10,7 @@
|
|||
long
|
||||
APM_PI::get_pi(int32_t error, float dt, bool calc_i)
|
||||
{
|
||||
if(true)
|
||||
if(calc_i){
|
||||
_integrator += ((float)error * _ki) * dt;
|
||||
|
||||
if (_integrator < -_imax) {
|
||||
|
@ -18,7 +18,7 @@ APM_PI::get_pi(int32_t error, float dt, bool calc_i)
|
|||
} else if (_integrator > _imax) {
|
||||
_integrator = _imax;
|
||||
}
|
||||
|
||||
}
|
||||
return (float)error * _kp + _integrator;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue