Auto-generated configs and docs
This commit is contained in:
parent
2c18e7745b
commit
2645f97cab
|
@ -64,7 +64,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -75,12 +75,12 @@ coilDutyCycleGauge = coilDutyCycle,"dwell: coil duty cycle", "%", 0.0,0.0, 0.0,0
|
|||
idleAirValvePositionGauge = idleAirValvePosition,"Idle Air Valve", "%", 0.0,0.0, 0.0,0.0, 0.0,0.0, 1,1
|
||||
etbTargetGauge = etbTarget,"ETB Target", "%", 0.0,0.0, 0.0,0.0, 0.0,0.0, 2,2
|
||||
etb1DutyCycleGauge = etb1DutyCycle,"ETB Duty", "%", 0.0,0.0, 0.0,0.0, 0.0,0.0, 1,1
|
||||
etb1ErrorGauge = etb1Error,"ETB Error", "%", 0.0,0.0, 0.0,0.0, 0.0,0.0, 3,3
|
||||
fuelTankLevelGauge = fuelTankLevel,"Fuel level", "%", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
|
||||
totalFuelConsumptionGauge = totalFuelConsumption,"fuel: Total consumed", "grams", 0.0,0.0, 0.0,0.0, 0.0,0.0, 1,1
|
||||
fuelFlowRateGauge = fuelFlowRate,"fuel: Flow rate", "gram/s", 0.0,0.0, 0.0,0.0, 0.0,0.0, 3,3
|
||||
TPS2ValueGauge = TPS2Value,"TPS2", "%", 0.0,0.0, 0.0,0.0, 0.0,0.0, 2,2
|
||||
tuneCrc16Gauge = tuneCrc16,"Tune CRC16", "crc16", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
|
||||
alignmentFill_at_98Gauge = alignmentFill_at_98,"need 4 byte alignment", "units", -20.0,100.0, -20.0,100.0, -20.0,100.0, 0,0
|
||||
knockLevelGauge = knockLevel,"knock: current level", "Volts", 0.0,0.0, 0.0,0.0, 0.0,0.0, 2,2
|
||||
secondsGauge = seconds,"Uptime", "sec", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
|
||||
engineModeGauge = engineMode,"Engine Mode", "em", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0
|
||||
|
|
|
@ -69,12 +69,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
|
|
@ -43,12 +43,12 @@ coilDutyCycle("dwell: coil duty cycle", SensorCategory.SENSOR_INPUTS, FieldType.
|
|||
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, "%"),
|
||||
etb1DutyCycle("ETB Duty", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 86, 0.01, 0.0, 0.0, "%"),
|
||||
etb1Error("ETB Error", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 88, 0.01, 0.0, 0.0, "%"),
|
||||
fuelTankLevel("Fuel level", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 90, 0.01, 0.0, 0.0, "%"),
|
||||
totalFuelConsumption("fuel: Total consumed", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 92, 1.0, 0.0, 0.0, "grams"),
|
||||
fuelFlowRate("fuel: Flow rate", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 94, 0.005, 0.0, 0.0, "gram/s"),
|
||||
TPS2Value("TPS2", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 96, 0.01, 0.0, 0.0, "%"),
|
||||
tuneCrc16("Tune CRC16", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 98, 1.0, 0.0, 0.0, "crc16"),
|
||||
fuelTankLevel("Fuel level", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 88, 0.01, 0.0, 0.0, "%"),
|
||||
totalFuelConsumption("fuel: Total consumed", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 90, 1.0, 0.0, 0.0, "grams"),
|
||||
fuelFlowRate("fuel: Flow rate", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 92, 0.005, 0.0, 0.0, "gram/s"),
|
||||
TPS2Value("TPS2", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 94, 0.01, 0.0, 0.0, "%"),
|
||||
tuneCrc16("Tune CRC16", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 96, 1.0, 0.0, 0.0, "crc16"),
|
||||
alignmentFill_at_98("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 98, 1.0, -20.0, 100.0, "units"),
|
||||
knockLevel("knock: current level", SensorCategory.SENSOR_INPUTS, FieldType.INT, 100, 1.0, 0.0, 0.0, "Volts"),
|
||||
seconds("Uptime", SensorCategory.SENSOR_INPUTS, FieldType.INT, 104, 1.0, 0.0, 0.0, "sec"),
|
||||
engineMode("Engine Mode", SensorCategory.SENSOR_INPUTS, FieldType.INT, 108, 1.0, 0.0, 0.0, "em"),
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Sun Nov 06 00:27:04 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Sat Nov 26 16:22:20 UTC 2022
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -392,42 +392,42 @@ struct output_channels_s {
|
|||
* offset 86
|
||||
*/
|
||||
scaled_channel<int16_t, 100, 1> etb1DutyCycle = (int16_t)0;
|
||||
/**
|
||||
* ETB Error
|
||||
%
|
||||
* offset 88
|
||||
*/
|
||||
scaled_channel<int16_t, 100, 1> etb1Error = (int16_t)0;
|
||||
/**
|
||||
* Fuel level
|
||||
%
|
||||
* offset 90
|
||||
* offset 88
|
||||
*/
|
||||
scaled_channel<int16_t, 100, 1> fuelTankLevel = (int16_t)0;
|
||||
/**
|
||||
* @@GAUGE_NAME_FUEL_CONSUMPTION@@
|
||||
grams
|
||||
* offset 92
|
||||
* offset 90
|
||||
*/
|
||||
uint16_t totalFuelConsumption = (uint16_t)0;
|
||||
/**
|
||||
* @@GAUGE_NAME_FUEL_FLOW@@
|
||||
gram/s
|
||||
* offset 94
|
||||
* offset 92
|
||||
*/
|
||||
scaled_channel<uint16_t, 200, 1> fuelFlowRate = (uint16_t)0;
|
||||
/**
|
||||
* @@GAUGE_NAME_TPS2@@
|
||||
%
|
||||
* offset 96
|
||||
* offset 94
|
||||
*/
|
||||
scaled_channel<int16_t, 100, 1> TPS2Value = (int16_t)0;
|
||||
/**
|
||||
* @@GAUGE_NAME_TUNE_CRC16@@
|
||||
crc16
|
||||
* offset 98
|
||||
* offset 96
|
||||
*/
|
||||
uint16_t tuneCrc16 = (uint16_t)0;
|
||||
/**
|
||||
* need 4 byte alignment
|
||||
units
|
||||
* offset 98
|
||||
*/
|
||||
uint8_t alignmentFill_at_98[2];
|
||||
/**
|
||||
* @@GAUGE_NAME_KNOCK_LEVEL@@
|
||||
Volts
|
||||
|
@ -1375,4 +1375,4 @@ struct output_channels_s {
|
|||
static_assert(sizeof(output_channels_s) == 748);
|
||||
|
||||
// end
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Sun Nov 06 00:27:04 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Sat Nov 26 16:22:20 UTC 2022
|
||||
|
|
|
@ -45,7 +45,6 @@ static constexpr LogField fields[] = {
|
|||
{engine->outputChannels.idleAirValvePosition, "Idle Air Valve", "%", 1},
|
||||
{engine->outputChannels.etbTarget, "ETB Target", "%", 2},
|
||||
{engine->outputChannels.etb1DutyCycle, "ETB Duty", "%", 1},
|
||||
{engine->outputChannels.etb1Error, "ETB Error", "%", 3},
|
||||
{engine->outputChannels.fuelTankLevel, "Fuel level", "%", 0},
|
||||
{engine->outputChannels.totalFuelConsumption, "fuel: Total consumed", "grams", 1},
|
||||
{engine->outputChannels.fuelFlowRate, "fuel: Flow rate", "gram/s", 3},
|
||||
|
|
|
@ -133,8 +133,6 @@ float getOutputValueByName(const char *name) {
|
|||
return engine->outputChannels.etbTarget;
|
||||
if (strEqualCaseInsensitive(name, "etb1DutyCycle"))
|
||||
return engine->outputChannels.etb1DutyCycle;
|
||||
if (strEqualCaseInsensitive(name, "etb1Error"))
|
||||
return engine->outputChannels.etb1Error;
|
||||
if (strEqualCaseInsensitive(name, "fuelTankLevel"))
|
||||
return engine->outputChannels.fuelTankLevel;
|
||||
if (strEqualCaseInsensitive(name, "totalFuelConsumption"))
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:39 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:58 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:26 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:45 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:05 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:25 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:07 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:26 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:37 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:55 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:25 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:44 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:03 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat integration/rusefi_config.txt Sat Nov 26 16:22:23 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:35 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:53 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:36 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:54 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:28 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:46 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:08 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:27 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:19 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:38 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:18 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:36 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:12 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:31 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:10 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:29 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:09 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:28 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:13 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:32 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:15 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:34 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:17 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:35 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:14 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:33 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:20 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:39 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:21 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:40 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:02 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Sat Nov 26 16:22:22 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:24 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:42 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:23 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:41 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:30 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:48 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:29 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:47 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:32 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:51 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:31 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:50 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:33 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:52 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:04 UTC 2022
|
||||
; 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 Sat Nov 26 16:22:24 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -86,7 +86,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 Sat Nov 26 02:30:38 UTC 2022
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Nov 26 16:22:57 UTC 2022
|
||||
|
||||
pageSize = 22800
|
||||
page = 1
|
||||
|
@ -2216,12 +2216,11 @@ coilDutyCycle = scalar, U16, 80, "%", 0.01, 0
|
|||
idleAirValvePosition = scalar, U16, 82, "%", 0.01, 0
|
||||
etbTarget = scalar, S16, 84, "%", 0.01, 0
|
||||
etb1DutyCycle = scalar, S16, 86, "%", 0.01, 0
|
||||
etb1Error = scalar, S16, 88, "%", 0.01, 0
|
||||
fuelTankLevel = scalar, S16, 90, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 92, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 94, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 96, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 98, "crc16", 1, 0
|
||||
fuelTankLevel = scalar, S16, 88, "%", 0.01, 0
|
||||
totalFuelConsumption = scalar, U16, 90, "grams", 1, 0
|
||||
fuelFlowRate = scalar, U16, 92, "gram/s", 0.005, 0
|
||||
TPS2Value = scalar, S16, 94, "%", 0.01, 0
|
||||
tuneCrc16 = scalar, U16, 96, "crc16", 1, 0
|
||||
knockLevel = scalar, F32, 100, "Volts", 1, 0
|
||||
seconds = scalar, U32, 104, "sec", 1, 0
|
||||
engineMode = scalar, U32, 108, "em", 1, 0
|
||||
|
@ -4239,7 +4238,6 @@ entry = coilDutyCycle, "dwell: coil duty cycle", float, "%.3f"
|
|||
entry = idleAirValvePosition, "Idle Air Valve", float, "%.3f"
|
||||
entry = etbTarget, "ETB Target", float, "%.3f"
|
||||
entry = etb1DutyCycle, "ETB Duty", float, "%.3f"
|
||||
entry = etb1Error, "ETB Error", float, "%.3f"
|
||||
entry = fuelTankLevel, "Fuel level", float, "%.3f"
|
||||
entry = totalFuelConsumption, "fuel: Total consumed", int, "%d"
|
||||
entry = fuelFlowRate, "fuel: Flow rate", float, "%.3f"
|
||||
|
|
|
@ -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 Sat Nov 26 05:37:37 UTC 2022
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Sat Nov 26 16:22:20 UTC 2022
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -461,12 +461,12 @@ public class TsOutputs {
|
|||
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);
|
||||
public static final Field ETB1DUTYCYCLE = Field.create("ETB1DUTYCYCLE", 86, FieldType.INT16).setScale(0.01).setBaseOffset(0);
|
||||
public static final Field ETB1ERROR = Field.create("ETB1ERROR", 88, FieldType.INT16).setScale(0.01).setBaseOffset(0);
|
||||
public static final Field FUELTANKLEVEL = Field.create("FUELTANKLEVEL", 90, FieldType.INT16).setScale(0.01).setBaseOffset(0);
|
||||
public static final Field TOTALFUELCONSUMPTION = Field.create("TOTALFUELCONSUMPTION", 92, FieldType.INT16).setScale(1.0).setBaseOffset(0);
|
||||
public static final Field FUELFLOWRATE = Field.create("FUELFLOWRATE", 94, FieldType.INT16).setScale(0.005).setBaseOffset(0);
|
||||
public static final Field TPS2VALUE = Field.create("TPS2VALUE", 96, FieldType.INT16).setScale(0.01).setBaseOffset(0);
|
||||
public static final Field TUNECRC16 = Field.create("TUNECRC16", 98, FieldType.INT16).setScale(1.0).setBaseOffset(0);
|
||||
public static final Field FUELTANKLEVEL = Field.create("FUELTANKLEVEL", 88, FieldType.INT16).setScale(0.01).setBaseOffset(0);
|
||||
public static final Field TOTALFUELCONSUMPTION = Field.create("TOTALFUELCONSUMPTION", 90, FieldType.INT16).setScale(1.0).setBaseOffset(0);
|
||||
public static final Field FUELFLOWRATE = Field.create("FUELFLOWRATE", 92, FieldType.INT16).setScale(0.005).setBaseOffset(0);
|
||||
public static final Field TPS2VALUE = Field.create("TPS2VALUE", 94, FieldType.INT16).setScale(0.01).setBaseOffset(0);
|
||||
public static final Field TUNECRC16 = Field.create("TUNECRC16", 96, FieldType.INT16).setScale(1.0).setBaseOffset(0);
|
||||
public static final Field ALIGNMENTFILL_AT_98 = Field.create("ALIGNMENTFILL_AT_98", 98, FieldType.INT8).setScale(1.0).setBaseOffset(0);
|
||||
public static final Field KNOCKLEVEL = Field.create("KNOCKLEVEL", 100, FieldType.FLOAT).setBaseOffset(0);
|
||||
public static final Field SECONDS = Field.create("SECONDS", 104, FieldType.INT).setScale(1.0).setBaseOffset(0);
|
||||
public static final Field ENGINEMODE = Field.create("ENGINEMODE", 108, FieldType.INT).setScale(1.0).setBaseOffset(0);
|
||||
|
@ -923,12 +923,12 @@ public class TsOutputs {
|
|||
IDLEAIRVALVEPOSITION,
|
||||
ETBTARGET,
|
||||
ETB1DUTYCYCLE,
|
||||
ETB1ERROR,
|
||||
FUELTANKLEVEL,
|
||||
TOTALFUELCONSUMPTION,
|
||||
FUELFLOWRATE,
|
||||
TPS2VALUE,
|
||||
TUNECRC16,
|
||||
ALIGNMENTFILL_AT_98,
|
||||
KNOCKLEVEL,
|
||||
SECONDS,
|
||||
ENGINEMODE,
|
||||
|
|
Loading…
Reference in New Issue