Fix incorrect part designation on the MX5 PNP B2 BOM

This commit is contained in:
Josh Stewart 2017-11-09 10:07:10 +11:00
parent 883ba4a25f
commit eead290bc6
2 changed files with 0 additions and 10 deletions

View File

@ -510,16 +510,6 @@ void integerPID_ideal::SetOutputLimits(long Min, long Max)
outMin = Min;
outMax = Max;
}
/*
long outMax_resized = outMax * limitMultiplier;
long outMin_resized = outMin * limitMultiplier;
if(*myOutput > outMax_resized) { *myOutput = outMax_resized; }
else if(*myOutput < outMin_resized) { *myOutput = outMin_resized; }
if(ITerm > outMax_resized) ITerm = outMax_resized;
else if(ITerm < outMin_resized) ITerm = outMin_resized;
*/
}
/* Initialize()****************************************************************