Fix incorrect part designation on the MX5 PNP B2 BOM
This commit is contained in:
parent
883ba4a25f
commit
eead290bc6
Binary file not shown.
|
@ -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()****************************************************************
|
||||
|
|
Loading…
Reference in New Issue