Skip to content

Commit

Permalink
Re-revert the use of On/off fields in the datalog
Browse files Browse the repository at this point in the history
  • Loading branch information
noisymime committed Sep 6, 2019
1 parent 91f295b commit cc0d71b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions reference/speeduino.ini
Expand Up @@ -3407,7 +3407,7 @@ cmdtestspk450dc = "E\x03\x0C"
entry = iat, "IAT", int, "%d"
entry = coolant, "CLT", int, "%d"
entry = engine, "Engine", int, "%d"
entry = DFCOOn, "DFCO", int, "onOff"
entry = DFCOOn, "DFCO", int, "%d"
entry = egoCorrection, "Gego", int, "%d"
entry = airCorrection, "Gair", int, "%d"
entry = batCorrection, "Gbattery", int, "%d"
Expand All @@ -3434,18 +3434,18 @@ cmdtestspk450dc = "E\x03\x0C"
entry = map_psi, "Boost PSI", float, "%.1f"
entry = boostTarget, "Boost Target", int, "%d", { boostEnabled }
entry = boostDuty, "Boost Duty", int, "%d", { boostEnabled }
entry = boostCutOut , "Boost cut", int, "onOff"
entry = launchHard , "Hard Launch", int, "onOff"
entry = hardLimitOn , "Hard Limiter", int, "onOff"
entry = idleControlOn, "Idle Control", int, "onOff"
entry = boostCutOut , "Boost cut", int, "%d"
entry = launchHard , "Hard Launch", int, "%d"
entry = hardLimitOn , "Hard Limiter", int, "%d"
entry = idleControlOn, "Idle Control", int, "%d"
entry = idleLoad, "IAC value", int, "%d"
entry = CLIdleTarget, "Idle Target RPM", int, "%%d", { iacAlgorithm == 3 || iacAlgorithm == 5 } ;Only show for closed loop idle modes
entry = CLIdleDelta, "Idle RPM Delta", int, "%d", { iacAlgorithm == 3 || iacAlgorithm == 5 } ;Only show for closed loop idle modes
entry = baro, "Baro Pressure",int, "%d"
entry = nitrousOn, "Nitrous", int, "onOff", { n2o_enable > 0 }
entry = nitrousOn, "Nitrous", int, "%d", { n2o_enable > 0 }
entry = syncLossCounter, "Sync Loss #", int, "%d"
entry = vvtAngle, "VVT Angle", int, "%d", { vvtMode == 2 } ;;Only show when using close loop vvt
entry = vvtTarget, "VVT Target Angle", int,"%d", { vvtMode == 2 } ;;Only show when using close loop vvt
entry = vvtTarget, "VVT Target Angle", int, "%d", { vvtMode == 2 } ;;Only show when using close loop vvt
entry = vvtDuty, "VVT Duty", int, "%d", { vvtEnabled > 0 }

entry = auxin_gauge0, "AuxIn CH0", int, "%d"
Expand Down

0 comments on commit cc0d71b

Please sign in to comment.