Auto-generated configs and docs

This commit is contained in:
GitHub gen-configs Action 2023-03-30 14:47:59 +00:00
parent eed184b5c2
commit a3e9683246
44 changed files with 158 additions and 80 deletions

View File

@ -61,6 +61,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -1,4 +1,5 @@
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0

View File

@ -64,7 +64,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0

View File

@ -38,7 +38,7 @@ deltaTpsValue("fuel: TPS change", SensorCategory.SENSOR_INPUTS, FieldType.INT16,
canReadCounter("canReadCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 72, 1.0, 0.0, 0.0, ""),
tpsAccelFuel("fuel: TPS acceleration add fuel ms", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 74, 0.0033333333333333335, 0.0, 0.0, "ms"),
ignitionAdvance("timing", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 76, 0.02, 0.0, 0.0, "deg"),
unusedDwellWasHere("unusedDwellWasHere", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 78, 1.0, -1.0, -1.0, ""),
globalFrequencyInputCounter("globalFrequencyInputCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 78, 1.0, 0.0, 65000.0, ""),
coilDutyCycle("Ignition: coil duty cycle", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 80, 0.01, 0.0, 0.0, "%"),
idleAirValvePosition("Idle Air Valve", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 82, 0.01, 0.0, 0.0, "%"),
etbTarget("ETB Target", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 84, 0.01, 0.0, 0.0, "%"),

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Wed Mar 29 00:34:22 UTC 2023
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Thu Mar 30 14:47:04 UTC 2023
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -365,7 +365,7 @@ struct output_channels_s {
/**
* offset 78
*/
uint16_t unusedDwellWasHere = (uint16_t)0;
uint16_t globalFrequencyInputCounter = (uint16_t)0;
/**
* @@GAUGE_NAME_DWELL_DUTY@@
%
@ -1391,4 +1391,4 @@ struct output_channels_s {
static_assert(sizeof(output_channels_s) == 780);
// end
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Wed Mar 29 00:34:22 UTC 2023
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Thu Mar 30 14:47:04 UTC 2023

View File

@ -40,6 +40,7 @@ static constexpr LogField fields[] = {
{engine->outputChannels.canReadCounter, "canReadCounter", "", 0},
{engine->outputChannels.tpsAccelFuel, "fuel: TPS acceleration add fuel ms", "ms", 3},
{engine->outputChannels.ignitionAdvance, "timing", "deg", 1},
{engine->outputChannels.globalFrequencyInputCounter, "globalFrequencyInputCounter", "", 0, "Sync"},
{engine->outputChannels.coilDutyCycle, "Ignition: coil duty cycle", "%", 0},
{engine->outputChannels.idleAirValvePosition, "Idle Air Valve", "%", 1},
{engine->outputChannels.etbTarget, "ETB Target", "%", 2},

View File

@ -193,6 +193,9 @@ float getOutputValueByName(const char *name) {
// ignitionAdvance
case -802608648:
return engine->outputChannels.ignitionAdvance;
// globalFrequencyInputCounter
case -83594920:
return engine->outputChannels.globalFrequencyInputCounter;
// coilDutyCycle
case 1029096098:
return engine->outputChannels.coilDutyCycle;

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:43 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:55 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:23 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:37 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:02:53 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:10 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:02:54 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:11 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:02:56 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:12 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:40 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:52 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:21 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:36 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat integration/rusefi_config.txt Thu Mar 30 14:02:50 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat integration/rusefi_config.txt Thu Mar 30 14:47:07 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:37 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:50 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:38 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:51 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:27 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:41 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:02:57 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:14 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:13 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:28 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:41:03 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:20 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:11 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:27 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:02 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:18 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:00 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:17 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:02:59 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:15 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:05 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:21 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:08 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:24 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:10 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:25 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:07 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:23 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:15 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:30 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:16 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:31 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Thu Mar 30 14:02:48 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Thu Mar 30 14:47:06 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:24 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:39 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:19 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:34 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:18 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:33 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:30 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:44 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:29 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:43 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:33 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:47 UTC 2023
pageSize = 26432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:32 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:46 UTC 2023
pageSize = 26432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:35 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:48 UTC 2023
pageSize = 26432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:26 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:40 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on config/boards/subaru_eg33/config/gen_subaru_config.sh integration/rusefi_config.txt Thu Mar 30 14:02:51 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on config/boards/subaru_eg33/config/gen_subaru_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:08 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -87,7 +87,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:03:41 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 30 14:47:54 UTC 2023
pageSize = 22432
page = 1
@ -2297,7 +2297,7 @@ deltaTpsValue = scalar, S16, 70, "ratio", 0.01, 0
canReadCounter = scalar, U16, 72, "", 1, 0
tpsAccelFuel = scalar, S16, 74, "ms", 0.0033333333333333335, 0
ignitionAdvance = scalar, S16, 76, "deg", 0.02, 0
unusedDwellWasHere = scalar, U16, 78, "", 1, 0
globalFrequencyInputCounter = scalar, U16, 78, "", 1, 0
coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
etbTarget = scalar, S16, 84, "%", 0.01, 0
@ -3976,6 +3976,7 @@ curve = 32Curve, "3-2 Shift Solenoid Percent by Speed"
[GaugeConfigurations]
gaugeCategory = "Sync"
globalFrequencyInputCounterGauge = globalFrequencyInputCounter,"globalFrequencyInputCounter", "", 0.0,65000.0, 0.0,65000.0, 0.0,65000.0, 0,0
triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0
currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
@ -4465,6 +4466,7 @@ entry = deltaTpsValue, "fuel: TPS change", float, "%.3f"
entry = canReadCounter, "canReadCounter", int, "%d"
entry = tpsAccelFuel, "fuel: TPS acceleration add fuel ms", float, "%.3f"
entry = ignitionAdvance, "timing", float, "%.3f"
entry = globalFrequencyInputCounter, "globalFrequencyInputCounter", int, "%d"
entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f"
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
entry = etbTarget, "ETB Target", float, "%.3f"

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Thu Mar 30 14:02:47 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Thu Mar 30 14:47:04 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -471,7 +471,7 @@ public class TsOutputs {
public static final Field CANREADCOUNTER = Field.create("CANREADCOUNTER", 72, FieldType.INT16).setScale(1.0).setBaseOffset(0);
public static final Field TPSACCELFUEL = Field.create("TPSACCELFUEL", 74, FieldType.INT16).setScale(0.0033333333333333335).setBaseOffset(0);
public static final Field IGNITIONADVANCE = Field.create("IGNITIONADVANCE", 76, FieldType.INT16).setScale(0.02).setBaseOffset(0);
public static final Field UNUSEDDWELLWASHERE = Field.create("UNUSEDDWELLWASHERE", 78, FieldType.INT16).setScale(1.0).setBaseOffset(0);
public static final Field GLOBALFREQUENCYINPUTCOUNTER = Field.create("GLOBALFREQUENCYINPUTCOUNTER", 78, FieldType.INT16).setScale(1.0).setBaseOffset(0);
public static final Field COILDUTYCYCLE = Field.create("COILDUTYCYCLE", 80, FieldType.INT16).setScale(0.01).setBaseOffset(0);
public static final Field IDLEAIRVALVEPOSITION = Field.create("IDLEAIRVALVEPOSITION", 82, FieldType.INT16).setScale(0.01).setBaseOffset(0);
public static final Field ETBTARGET = Field.create("ETBTARGET", 84, FieldType.INT16).setScale(0.01).setBaseOffset(0);
@ -952,7 +952,7 @@ public class TsOutputs {
CANREADCOUNTER,
TPSACCELFUEL,
IGNITIONADVANCE,
UNUSEDDWELLWASHERE,
GLOBALFREQUENCYINPUTCOUNTER,
COILDUTYCYCLE,
IDLEAIRVALVEPOSITION,
ETBTARGET,