Fix improper log entries (#920)

Format typos that cause the data to not be logged
This commit is contained in:
Dave Smith 2022-08-28 12:53:03 +01:00 committed by Josh Stewart
parent 9a49e059ef
commit 9ad5825408
1 changed files with 2 additions and 2 deletions

View File

@ -5315,7 +5315,7 @@ cmdVSSratio6 = "E\x99\x06"
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 || iacAlgorithm == 6 || iacAlgorithm == 7 || idleAdvEnabled >= 1 } ;Only show for closed loop idle modes and if idle advance is enabled
entry = CLIdleTarget, "Idle Target RPM", int, "%d", { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || iacAlgorithm == 7 || idleAdvEnabled >= 1 } ;Only show for closed loop idle modes and if idle advance is enabled
entry = CLIdleDelta, "Idle RPM Delta", int, "%d", { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || iacAlgorithm == 7 || idleAdvEnabled >= 1 } ;Only show for closed loop idle modes and if idle advance is enabled
entry = baro, "Baro Pressure", int, "%d"
entry = nitrousOn, "Nitrous", int, "%d", { n2o_enable > 0 }
@ -5332,7 +5332,7 @@ cmdVSSratio6 = "E\x99\x06"
entry = vvt2Angle, "VVT2 Angle", int, "%.1f", { vvt2Enabled > 0 }
entry = vvt2Target, "VVT2 Target Angle",int, "%.1f", { vvt2Enabled > 0 && vvtMode == 2 } ;;Only show when using close loop vvt
entry = vvt2Duty, "VVT2 Duty", int, "%.1f", { vvt2Enabled > 0 && vvtMode == 2 }
entry = fanDuty, "FAN Duty", int, "%%.1f", { fanEnable == 2 }
entry = fanDuty, "FAN Duty", int, "%.1f", { fanEnable == 2 }
entry = loopsPerSecond, "Loops/s", int, "%d"
entry = loopsPerRev, "Loops/rev", int, "%.2f"
entry = wmiPW, "WMI Duty Cycle", int, "%d", { wmiEnabled == 1 }