Remove debug line that was left in on last commit

This commit is contained in:
Josh Stewart 2019-11-07 15:11:01 +11:00
parent f75d2e444f
commit 964163d2ec
1 changed files with 0 additions and 1 deletions

View File

@ -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);