auto-sync
This commit is contained in:
parent
bc83533b99
commit
045ad6d691
|
@ -607,6 +607,8 @@ void updateTunerStudioState(TunerStudioOutputChannels *tsOutputChannels DECLARE_
|
|||
tsOutputChannels->runningFuel = ENGINE(engineState.runningFuel);
|
||||
tsOutputChannels->injectorLagMs = ENGINE(injectorLagMs);
|
||||
|
||||
tsOutputChannels->debugIntField1 = engine->tpsAccelEnrichment.cb.getSize();
|
||||
|
||||
tsOutputChannels->wallFuelAmount = wallFuel.getWallFuel(0);
|
||||
tsOutputChannels->wallFuelCorrection = engine->wallFuelCorrection;
|
||||
// TPS acceleration
|
||||
|
|
|
@ -651,7 +651,7 @@ fileVersion = { 20160122 }
|
|||
sparkDwell = scalar, F32, 60, "MAP", 1, 0.0;
|
||||
; actual total Ms time per engine cycle with all corrections
|
||||
pulseWidth = scalar, F32, 64, "ms", 1, 0.0;
|
||||
debugFloatField = scalar, F32, 68, "val", 1, 0.0;
|
||||
debugFloatField1 = scalar, F32, 68, "val", 1, 0.0;
|
||||
|
||||
hasSdCard = bits, U32, 72, [0:0], "true", "false";
|
||||
isIgnitionEnabledIndicator=bits, U32, 72, [1:1], "true", "false";
|
||||
|
@ -703,7 +703,13 @@ fileVersion = { 20160122 }
|
|||
iatCorrection = scalar, F32, 164, "%", 1, 0
|
||||
wallFuelCorrection = scalar, F32, 168, "ms", 1, 0
|
||||
curIdlePosition = scalar, F32, 172, "percent", 1, 0
|
||||
debugIntField = scalar, U32, 192, "val", 1, 0.0;
|
||||
debugIntField1 = scalar, U32, 192, "val", 1, 0.0;
|
||||
debugFloatField2 = scalar, F32, 200, "val", 1, 0.0;
|
||||
debugFloatField3 = scalar, F32, 204, "val", 1, 0.0;
|
||||
debugFloatField4 = scalar, F32, 208, "val", 1, 0.0;
|
||||
debugFloatField5 = scalar, F32, 212, "val", 1, 0.0;
|
||||
debugIntField2 = scalar, U32, 216, "val", 1, 0.0;
|
||||
debugIntField3 = scalar, U32, 220, "val", 1, 0.0;
|
||||
|
||||
egoCorrection = { 100 }
|
||||
time = { timeNow }
|
||||
|
@ -938,8 +944,14 @@ fileVersion = { 20160122 }
|
|||
|
||||
curIdlePositionGauge = curIdlePosition, "idle position", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
|
||||
debugFloatFieldGauge = debugFloatField, "debug f", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
debugIntFieldGauge = debugIntField, "debug i", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
debugFloatField1Gauge = debugFloatField1, "debug f1", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
debugFloatField2Gauge = debugFloatField2, "debug f2", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
debugFloatField3Gauge = debugFloatField3, "debug f3", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
debugFloatField4Gauge = debugFloatField4, "debug f4", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
debugFloatField5Gauge = debugFloatField5, "debug f5", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
debugIntField1Gauge = debugIntField1, "debug i1", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
debugIntField2Gauge = debugIntField2, "debug i2", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
debugIntField3Gauge = debugIntField3, "debug i3", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
|
||||
[FrontPage]
|
||||
; Gauges are numbered left to right, top to bottom.
|
||||
|
@ -1020,8 +1032,14 @@ fileVersion = { 20160122 }
|
|||
|
||||
entry = baroCorrection, "baroCorrection",float,"%.3f"
|
||||
|
||||
entry = debugFloatField, "debug f",float,"%.3f"
|
||||
entry = debugIntField, "debug i",int,"%d"
|
||||
entry = debugFloatField1, "debug f1",float,"%.3f"
|
||||
entry = debugFloatField2, "debug f2",float,"%.3f"
|
||||
entry = debugFloatField3, "debug f3",float,"%.3f"
|
||||
entry = debugFloatField4, "debug f4",float,"%.3f"
|
||||
entry = debugFloatField5, "debug f5",float,"%.3f"
|
||||
entry = debugIntField1, "debug i1",int,"%d"
|
||||
entry = debugIntField2, "debug i2",int,"%d"
|
||||
entry = debugIntField3, "debug i3",int,"%d"
|
||||
|
||||
entry = tCharge, "tCharge",float,"%.3f"
|
||||
|
||||
|
|
Loading…
Reference in New Issue