Set appropriate type for fixed cranking additional dwell

This commit is contained in:
Josh Stewart 2017-05-04 13:47:50 +10:00
parent fca0a7ecbd
commit 7c909f021e
1 changed files with 5 additions and 5 deletions

View File

@ -95,7 +95,7 @@ volatile int mainLoopCount;
byte deltaToothCount = 0; //The last tooth that was used with the deltaV calc
int rpmDelta;
byte ignitionCount;
byte fixedCrankingOverride = 0;
uint16_t fixedCrankingOverride = 0;
bool clutchTrigger;
bool previousClutchTrigger;
@ -948,13 +948,13 @@ void loop()
if (currentStatus.current_caninchannel <= 6)
{
currentStatus.current_caninchannel++; //step to next input channel if under 9
}
else
}
else
{
currentStatus.current_caninchannel = 0; //reset input channel back to 1
}
}
}
}
}
}
#endif
vvtControl();