Skip to content

Commit

Permalink
Fix incorrect part designation on the MX5 PNP B2 BOM
Browse files Browse the repository at this point in the history
  • Loading branch information
noisymime committed Nov 8, 2017
1 parent 883ba4a commit eead290
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Binary file modified reference/hardware/Pro/BOMs/Bom-template-MX5-PNP_ITEAD Beta 2.xls
Binary file not shown.
10 changes: 0 additions & 10 deletions speeduino/src/PID_v1/PID_v1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()****************************************************************
Expand Down

0 comments on commit eead290

Please sign in to comment.