speeduino/corrections.ino

25 lines
274 B
C++

byte correctionsTotal()
{
int sumCorrections = (correctionWUE() * correctionASE()) / 100;
sumCorrections = (sumCorrections * correctionAccel()) / 100;
return sumCorrections;
}
byte correctionWUE()
{
}
byte correctionASE()
{
}
byte correctionAccel()
{
}