Remove debug line that was left in on last commit
This commit is contained in:
parent
f75d2e444f
commit
964163d2ec
|
@ -186,7 +186,6 @@ void setFuelSchedule1(unsigned long timeout, unsigned long duration)
|
||||||
//This is required in cases of high rpm and high DC where there otherwise would not be enough time to set the schedule
|
//This is required in cases of high rpm and high DC where there otherwise would not be enough time to set the schedule
|
||||||
if( (timeout+duration) < MAX_TIMER_PERIOD )
|
if( (timeout+duration) < MAX_TIMER_PERIOD )
|
||||||
{
|
{
|
||||||
Serial.println(" Next Sched Set");
|
|
||||||
noInterrupts();
|
noInterrupts();
|
||||||
fuelSchedule1.nextStartCompare = FUEL1_COUNTER + uS_TO_TIMER_COMPARE(timeout);
|
fuelSchedule1.nextStartCompare = FUEL1_COUNTER + uS_TO_TIMER_COMPARE(timeout);
|
||||||
fuelSchedule1.nextEndCompare = fuelSchedule1.nextStartCompare + uS_TO_TIMER_COMPARE(duration);
|
fuelSchedule1.nextEndCompare = fuelSchedule1.nextStartCompare + uS_TO_TIMER_COMPARE(duration);
|
||||||
|
|
Loading…
Reference in New Issue