20 lines
698 B
C
20 lines
698 B
C
/**
|
|
* file defaults.h
|
|
*/
|
|
|
|
void setLeftRightBanksNeedBetterName();
|
|
void setDefaultBaseEngine();
|
|
void setDefaultFuel();
|
|
void setDefaultIgnition();
|
|
void setDefaultCranking();
|
|
|
|
void setPPSInputs(adc_channel_e pps1, adc_channel_e pps2);
|
|
void setPPSCalibration(float primaryUp, float primaryDown, float secondaryUp, float secondaryDown);
|
|
|
|
void setTPS1Inputs(adc_channel_e tps1, adc_channel_e tps2);
|
|
// legacy since channel TPS still exists
|
|
void setTPS1Calibration(uint16_t tpsMin, uint16_t tpsMax);
|
|
// Most ETB require redundant dual channel TPS
|
|
void setTPS1Calibration(uint16_t tpsMin, uint16_t tpsMax, uint16_t tps1SecondaryMin, uint16_t tps1SecondaryMax);
|
|
|
|
void setEtbPID(float p, float i, float d); |