2014-01-07 00:02:00 -08:00
|
|
|
/*
|
|
|
|
All functions in the gamma file return
|
|
|
|
|
|
|
|
*/
|
2015-02-14 05:11:43 -08:00
|
|
|
#ifndef CORRECTIONS_H
|
|
|
|
#define CORRECTIONS_H
|
|
|
|
|
2016-10-25 07:04:37 -07:00
|
|
|
void initialiseCorrections();
|
|
|
|
|
2016-12-11 03:51:04 -08:00
|
|
|
byte correctionsFuel();
|
|
|
|
static inline byte correctionWUE(); //Warmup enrichment
|
|
|
|
static inline byte correctionASE(); //After Start Enrichment
|
|
|
|
static inline byte correctionAccel(); //Acceleration Enrichment
|
|
|
|
static inline byte correctionsFloodClear(); //Check for flood clear on cranking
|
|
|
|
static inline byte correctionsAFRClosedLoop(); //Closed loop AFR adjustment
|
|
|
|
static inline byte correctionsFlex(); //Flex fuel adjustment
|
|
|
|
|
|
|
|
byte correctionsIgn();
|
|
|
|
static inline byte correctionsFixedTiming(byte);
|
|
|
|
static inline byte correctionsCrankingFixedTiming(byte);
|
|
|
|
static inline byte correctionsFlexTiming(byte);
|
|
|
|
static inline byte correctionsIATretard(byte);
|
|
|
|
static inline byte correctionsSoftRevLimit(byte);
|
|
|
|
static inline byte correctionsSoftLaunch(byte);
|
|
|
|
|
2015-02-14 05:11:43 -08:00
|
|
|
|
|
|
|
#endif // CORRECTIONS_H
|