Remove unused cold pulse width settings. These were legacy and replaced with WUE.
This commit is contained in:
parent
e00de31a37
commit
934bafe5a0
|
@ -121,8 +121,8 @@ struct statuses {
|
||||||
//This mostly covers off variables that are required for fuel
|
//This mostly covers off variables that are required for fuel
|
||||||
struct config1 {
|
struct config1 {
|
||||||
|
|
||||||
byte crankCold; //Cold cranking pulsewidth modifier. This is added to the fuel pulsewidth when cranking under a certain temp threshold (ms)
|
byte unused1; //Cold cranking pulsewidth modifier. This is added to the fuel pulsewidth when cranking under a certain temp threshold (ms)
|
||||||
byte crankHot; //Warm cranking pulsewidth modifier. This is added to the fuel pulsewidth when cranking (ms)
|
byte unused2; //Warm cranking pulsewidth modifier. This is added to the fuel pulsewidth when cranking (ms)
|
||||||
byte asePct; //Afterstart enrichment (%)
|
byte asePct; //Afterstart enrichment (%)
|
||||||
byte aseCount; //Afterstart enrichment cycles. This is the number of ignition cycles that the afterstart enrichment % lasts for
|
byte aseCount; //Afterstart enrichment cycles. This is the number of ignition cycles that the afterstart enrichment % lasts for
|
||||||
byte wueValues[10]; //Warm up enrichment array (10 bytes)
|
byte wueValues[10]; //Warm up enrichment array (10 bytes)
|
||||||
|
|
|
@ -93,8 +93,8 @@ page = 1
|
||||||
;Page 2 is all general settings (Previously part of page 1)
|
;Page 2 is all general settings (Previously part of page 1)
|
||||||
;--------------------------------------------------
|
;--------------------------------------------------
|
||||||
page = 2
|
page = 2
|
||||||
crankCold = scalar, U08, 0, "ms", 0.1, 0.0, 0.0, 25.5, 1
|
unused2-1 = scalar, U08, 0, "ms", 0.1, 0.0, 0.0, 25.5, 1
|
||||||
crankHot = scalar, U08, 1, "ms", 0.1, 0.0, 0.0, 25.5, 1
|
unused2-2 = scalar, U08, 1, "ms", 0.1, 0.0, 0.0, 25.5, 1
|
||||||
asePct = scalar, U08, 2, "%", 1.0, 0.0, 0.0, 95.0, 0
|
asePct = scalar, U08, 2, "%", 1.0, 0.0, 0.0, 95.0, 0
|
||||||
aseCount = scalar, U08, 3, "s", 1.0, 0.0, 0.0, 255, 0
|
aseCount = scalar, U08, 3, "s", 1.0, 0.0, 0.0, 255, 0
|
||||||
wueBins = array, U08, 4, [ 10], "%", 1.0, 0.0, 0.0, 255, 0
|
wueBins = array, U08, 4, [ 10], "%", 1.0, 0.0, 0.0, 255, 0
|
||||||
|
@ -348,7 +348,7 @@ page = 7
|
||||||
|
|
||||||
iacAlgorithm = bits , U08, 52, [0:2], "None", "On/Off", "PWM", "INVALID", "Stepper", "INVALID", "INVALID", "INVALID"
|
iacAlgorithm = bits , U08, 52, [0:2], "None", "On/Off", "PWM", "INVALID", "Stepper", "INVALID", "INVALID", "INVALID"
|
||||||
iacStepTime = bits , U08, 52, [3:5], "1", "2", "3", "4", "5", "6"
|
iacStepTime = bits , U08, 52, [3:5], "1", "2", "3", "4", "5", "6"
|
||||||
unused52 = bits , U08, 52, [6:7], "One", "INVALID", "INVALID", "INVALID"
|
unused7-52 = bits , U08, 52, [6:7], "One", "INVALID", "INVALID", "INVALID"
|
||||||
|
|
||||||
#if CELSIUS
|
#if CELSIUS
|
||||||
iacFastTemp = scalar, U08, 53, "C", 1.0, -40, -40, 215, 0
|
iacFastTemp = scalar, U08, 53, "C", 1.0, -40, -40, 215, 0
|
||||||
|
@ -653,8 +653,6 @@ page = 8
|
||||||
field = "Flood Clear level", tpsflood
|
field = "Flood Clear level", tpsflood
|
||||||
field = ""
|
field = ""
|
||||||
field = "Priming Pulsewidth", primePulse
|
field = "Priming Pulsewidth", primePulse
|
||||||
field = "Pulsewidth at -40°C", crankCold
|
|
||||||
field = "Pulsewidth at 77°C", crankHot
|
|
||||||
field = ""
|
field = ""
|
||||||
field = "Cranking Enrichment %", crankingPct
|
field = "Cranking Enrichment %", crankingPct
|
||||||
#else
|
#else
|
||||||
|
@ -662,8 +660,6 @@ page = 8
|
||||||
field = "Flood Clear level", tpsflood
|
field = "Flood Clear level", tpsflood
|
||||||
field = ""
|
field = ""
|
||||||
field = "Priming Pulsewidth", primePulse
|
field = "Priming Pulsewidth", primePulse
|
||||||
field = "Pulsewidth at -40°F", crankCold
|
|
||||||
field = "Pulsewidth at 170°F", crankHot
|
|
||||||
field = ""
|
field = ""
|
||||||
field = "Cranking Enrichment %", crankingPct
|
field = "Cranking Enrichment %", crankingPct
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue