19 lines
487 B
C
19 lines
487 B
C
/*
|
|
All functions in the gamma file return
|
|
|
|
*/
|
|
#ifndef CORRECTIONS_H
|
|
#define CORRECTIONS_H
|
|
|
|
void initialiseCorrections();
|
|
|
|
byte correctionsTotal();
|
|
byte correctionWUE(); //Warmup enrichment
|
|
byte correctionASE(); //After Start Enrichment
|
|
byte correctionAccel(); //Acceleration Enrichment
|
|
byte correctionsFloodClear(); //Check for flood clear on cranking
|
|
byte correctionsAFRClosedLoop(); //Closed loop AFR adjustment
|
|
byte correctionsFlex(); //Flex fuel adjustment
|
|
|
|
#endif // CORRECTIONS_H
|