fixed typo and improved description

This commit is contained in:
alrijleh 2024-09-07 00:31:33 -04:00
parent 7361132597
commit c85b2e0d34
2 changed files with 2 additions and 2 deletions

View File

@ -1248,7 +1248,7 @@ tChargeMode_e tChargeMode;
int16_t coastingFuelCutClt;Fuel cutoff is disabled when the engine is cold.;"C", 1, 0, -100, 100, 0
int16_t pidExtraForLowRpm;Increases PID reaction for RPM<target by adding extra percent to PID-error;"%", 1, 0, 0, 100, 0
bit useTableForDfcoMap,"Table","Fixed";Use a fixed MAP value as DFCO threshold, or vary the threshold with RPM. This allows a softer cut at high RPMs where greater vaccuum is generated.
bit useTableForDfcoMap,"Table","Fixed";Fixed: MAP threshold cut fuel when conditions are met\nTable: Use a curve to vary the MAP threshold based on engine RPM
uint8_t[DFCO_RPM_MAP_TABLE] autoscale dfcoMapRpmValuesBins;;"RPM", 100, 0, 0, 17500, 0
uint8_t[DFCO_RPM_MAP_TABLE] autoscale dfcoMapRpmValues;DFCO will activate when operating below this curve. Used to allow a higher threshold at low RPM where less vaccuum is generated;"MAP", 1, 0, 0, 50, 0
int16_t coastingFuelCutMap;MAP value above which fuel injection is re-enabled.;"kPa", 1, 0, 0, 250, 0

View File

@ -4481,7 +4481,7 @@ dialog = tcuControls, "Transmission Settings"
field = "Vehicle speed restore below", coastingFuelCutVssLow, {coastingFuelCutEnabled}
field = "Cut fuel below TPS", coastingFuelCutTps, {coastingFuelCutEnabled}
field = "Cut fuel below MAP mode", useTableForDfcoMap, {coastingFuelCutEnabled}
field = "CUt fuel below MAP", coastingFuelCutMap, {coastingFuelCutEnabled && !useTableForDfcoMap}
field = "Cut fuel below MAP", coastingFuelCutMap, {coastingFuelCutEnabled && !useTableForDfcoMap}
field = "Fuel cut delay", dfcoDelay, {coastingFuelCutEnabled}
field = "Inhibit closed loop fuel after cut", noFuelTrimAfterDfcoTime, {coastingFuelCutEnabled}