Remove unecesary (and confusing) variable

This commit is contained in:
Josh Stewart 2013-07-04 11:32:36 +10:00
parent 63485ed79f
commit 92f96291ba
1 changed files with 0 additions and 1 deletions

View File

@ -40,7 +40,6 @@ int req_fuel_uS = req_fuel * 1000; //Convert to uS and, importantly, an int. Thi
// Setup section
// These aren't really configuration options, more so a description of how the hardware is setup. These are things that will be defined in the recommended hardware setup
int triggerActualTeeth = triggerTeeth - triggerMissingTeeth; //The number of physical teeth on the wheel. Doing this here saves us a calculation each time in the interrupt
int triggerOffset = 120;
int triggerToothAngle = 360 / triggerTeeth; //The number of degrees that passes from tooth to tooth
volatile boolean hasSync = false;