auto-sync

This commit is contained in:
rusEfi 2015-09-06 15:02:55 -04:00
parent 71953d6efb
commit afa7b9000b
2 changed files with 5 additions and 5 deletions

View File

@ -669,7 +669,7 @@ fileVersion = { 20150625 }
; knockLevel 152
; totalTriggerErrorCounter 156
wallFuelAmount = scalar, F32, 160, "ms", 1, 0
totalFuelCorrection = scalar, F32, 164, "%", 1, 0
tempFuelCorrection = scalar, F32, 164, "%", 1, 0
wallFuelCorrection = scalar, F32, 168, "ms", 1, 0
egoCorrection = { 100 }
time = { timeNow }
@ -889,7 +889,7 @@ fileVersion = { 20150625 }
triggerErrorsCounterGauge = triggerErrorsCounter, "trg err", "count", 0, 15000, 0, 0, 6000, 6000, 0, 0
wallFuelAmountGauge = wallFuelAmount, "wall fuel", "ms", 0, 100, 0, 0, 100, 100, 0, 0
totalFuelCorrectionGauge = totalFuelCorrection, "fuel corr", "mult", 0, 10, 0, 0, 10, 10, 0, 0
tempFuelCorrectionGauge = tempFuelCorrection, "temp fuel corr", "mult", 0, 10, 0, 0, 10, 10, 0, 0
wallFuelCorrectionGauge = wallFuelCorrection, "extra fuel", "ms", 0, 100, 0, 0, 100, 100, 0, 0
[FrontPage]
@ -964,8 +964,8 @@ fileVersion = { 20150625 }
entry = pedalPosition, "pedal", float, "%.3f"
; entry
entry = triggerErrorsCounter, "trg err",int, "%d"
entry = totalFuelCorrection, "fuel corr", float, "%.3f"
entry = wallFuelCorrection, "wall fuel ms", float, "%.3f"
entry = tempFuelCorrection, "temp fuel corr", float, "%.3f"
entry = wallFuelCorrection, "wall fuel corr ms", float, "%.3f"
; tpsADC = U16, "ADC",

View File

@ -92,7 +92,7 @@ public enum Sensor {
MAP_ACCEL_DELTA(SensorCategory.OPERATIONS, FieldType.FLOAT, 124, BackgroundColor.MUD),
TPS_ACCEL_FUEL(SensorCategory.OPERATIONS, FieldType.FLOAT, 128, BackgroundColor.MUD),
WALL_FUEL(SensorCategory.OPERATIONS, FieldType.FLOAT, 160, BackgroundColor.MUD),
temperatureFuelCorrection(SensorCategory.OPERATIONS, FieldType.FLOAT, 164, BackgroundColor.MUD),
temperatureFuelCorrection(SensorCategory.OPERATIONS, FieldType.FLOAT, 164, BackgroundColor.MUD, 0, 5),
wallFuelCorrection(SensorCategory.OPERATIONS, FieldType.FLOAT, 168, BackgroundColor.MUD),
INJ_1_2_DELTA("inj 1-2 delta", SensorCategory.SNIFFING),