Remove lines that should've been cut in previous commit

This commit is contained in:
Josh Stewart 2019-08-21 17:32:15 +10:00
parent 162e1837d6
commit d4d2c4ab59
1 changed files with 0 additions and 13 deletions

View File

@ -284,19 +284,6 @@ bool integerPID::Compute(bool pOnE)
}
if(output > outMax) output = outMax;
else if(output < outMin) output = outMin;
*myOutput = output;
/*Remember some variables for next time*/
lastInput = input;
lastTime = now;
return true;
}
else return false;
}
/* SetTunings(...)*************************************************************
* This function allows the controller's dynamic performance to be adjusted.