speeduino/corrections.ino

29 lines
368 B
Arduino
Raw Normal View History

2014-01-07 00:02:00 -08:00
byte correctionsTotal()
{
int sumCorrections = (correctionWUE() * correctionASE()) / 100;
sumCorrections = (sumCorrections * correctionAccel()) / 100;
return sumCorrections;
}
byte correctionWUE()
{
}
byte correctionASE()
{
if (currentStatus.runSecs < configPage1.aseCount)
{
return configPage1.asePct;
}
2014-01-07 00:02:00 -08:00
}
byte correctionAccel()
{
}