Remove engine load acceleration enrichment fix #3357
This commit is contained in:
parent
07dc45cc57
commit
f1d3010c15
|
@ -199,16 +199,6 @@ void setTpsDecelMult(float value) {
|
||||||
accelInfo();
|
accelInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
void setDecelThr(float value) {
|
|
||||||
engineConfiguration->engineLoadDecelEnleanmentThreshold = value;
|
|
||||||
accelInfo();
|
|
||||||
}
|
|
||||||
|
|
||||||
void setDecelMult(float value) {
|
|
||||||
engineConfiguration->engineLoadDecelEnleanmentMultiplier = value;
|
|
||||||
accelInfo();
|
|
||||||
}
|
|
||||||
|
|
||||||
void setTpsAccelLen(int length) {
|
void setTpsAccelLen(int length) {
|
||||||
if (length < 1) {
|
if (length < 1) {
|
||||||
efiPrintf("Length should be positive");
|
efiPrintf("Length should be positive");
|
||||||
|
|
|
@ -58,7 +58,4 @@ void setTpsDecelThr(float value);
|
||||||
void setTpsDecelMult(float value);
|
void setTpsDecelMult(float value);
|
||||||
void setTpsAccelLen(int length);
|
void setTpsAccelLen(int length);
|
||||||
|
|
||||||
void setDecelThr(float value);
|
|
||||||
void setDecelMult(float value);
|
|
||||||
|
|
||||||
void updateAccelParameters();
|
void updateAccelParameters();
|
||||||
|
|
|
@ -1038,8 +1038,6 @@ const command_f_s commandsF[] = {
|
||||||
{"tps_decel_threshold", setTpsDecelThr},
|
{"tps_decel_threshold", setTpsDecelThr},
|
||||||
{"tps_decel_multiplier", setTpsDecelMult},
|
{"tps_decel_multiplier", setTpsDecelMult},
|
||||||
{"cranking_priming_pulse", setCrankingPrimingPulse},
|
{"cranking_priming_pulse", setCrankingPrimingPulse},
|
||||||
{"engine_decel_threshold", setDecelThr},
|
|
||||||
{"engine_decel_multiplier", setDecelMult},
|
|
||||||
{"flat_injector_lag", setFlatInjectorLag},
|
{"flat_injector_lag", setFlatInjectorLag},
|
||||||
#endif // EFI_ENGINE_CONTROL
|
#endif // EFI_ENGINE_CONTROL
|
||||||
{"fsio_curve_1_value", setFsioCurve1Value},
|
{"fsio_curve_1_value", setFsioCurve1Value},
|
||||||
|
|
Loading…
Reference in New Issue