Auto-generated configs and docs
This commit is contained in:
parent
955a90327d
commit
e4291ae90b
File diff suppressed because it is too large
Load Diff
|
@ -35,9 +35,9 @@ static constexpr LogField fields[] = {
|
|||
{engine->outputChannels.injectorLagMs, "fuel: injector lag", "ms", 3},
|
||||
{engine->outputChannels.engineMakeCodeNameCrc16, "Engine CRC16", "crc16", 0},
|
||||
{engine->outputChannels.wallFuelAmount, "fuel: wall amount", "mg", 3},
|
||||
{engine->outputChannels.wallFuelCorrection, "fuel: wall correction", "mg", 3},
|
||||
{engine->outputChannels.wallFuelCorrectionValue, "fuel: wall correction", "mg", 3},
|
||||
{engine->outputChannels.revolutionCounterSinceStart, "revolutionCounterSinceStart", "", 0},
|
||||
{engine->outputChannels.deltaTps, "fuel: TPS change", "ratio", 0},
|
||||
{engine->outputChannels.deltaTpsValue, "fuel: TPS change", "ratio", 0},
|
||||
{engine->outputChannels.canReadCounter, "canReadCounter", "", 0},
|
||||
{engine->outputChannels.tpsAccelFuel, "fuel: TPS acceleration add fuel ms", "ms", 3},
|
||||
{engine->outputChannels.ignitionAdvance, "timing", "deg", 1},
|
||||
|
@ -126,7 +126,6 @@ static constexpr LogField fields[] = {
|
|||
{engine->outputChannels.rawHighFuelPressure, "rawHighFuelPressure", "V", 3},
|
||||
{engine->outputChannels.lowFuelPressure, "Fuel pressure (low)", "kpa", 0},
|
||||
{engine->outputChannels.highFuelPressure, "Fuel pressure (high)", "bar", 0},
|
||||
{engine->outputChannels.targetLambda, "fuel: target lambda", "", 3},
|
||||
{engine->outputChannels.AFRValue, "Air/Fuel Ratio", "AFR", 2},
|
||||
{engine->outputChannels.VssAcceleration, "Vss Accel", "m/s2", 2},
|
||||
{engine->outputChannels.lambdaValue2, "Lambda 2", "", 3},
|
||||
|
@ -266,11 +265,11 @@ static constexpr LogField fields[] = {
|
|||
{engine->engineState.currentBaroCorrectedVE, "currentBaroCorrectedVE", "", 0},
|
||||
{engine->engineState.injectorFlowCorrection, "injectorFlowCorrection", "", 0},
|
||||
{engine->engineState.baroCorrection, "fuel: Barometric pressure mult", "", 0},
|
||||
{engine->engineState.cranking.baseFuel, "Fuel: base duration", "", 0},
|
||||
{engine->engineState.cranking.coolantTemperatureCoefficient, "cranking.coolantTemperatureCoefficient", "", 0},
|
||||
{engine->engineState.cranking.tpsCoefficient, "cranking.tpsCoefficient", "", 0},
|
||||
{engine->engineState.cranking.durationCoefficient, "cranking.durationCoefficient", "", 0},
|
||||
{engine->engineState.cranking.fuel, "Fuel: Actual injection", "", 0},
|
||||
{engine->engineState.crankingFuel.baseFuel, "Fuel: base duration", "", 0},
|
||||
{engine->engineState.crankingFuel.coolantTemperatureCoefficient, "crankingFuel.coolantTemperatureCoefficient", "", 0},
|
||||
{engine->engineState.crankingFuel.tpsCoefficient, "crankingFuel.tpsCoefficient", "", 0},
|
||||
{engine->engineState.crankingFuel.durationCoefficient, "crankingFuel.durationCoefficient", "", 0},
|
||||
{engine->engineState.crankingFuel.fuel, "Fuel: Actual injection", "", 0},
|
||||
{engine->engineState.running.postCrankingFuelCorrection, "running.postCrankingFuelCorrection", "", 0},
|
||||
{engine->engineState.running.intakeTemperatureCoefficient, "fuel: IAT correction", "", 0},
|
||||
{engine->engineState.running.coolantTemperatureCoefficient, "fuel: CLT correction", "", 0},
|
||||
|
@ -284,8 +283,8 @@ static constexpr LogField fields[] = {
|
|||
{engine->engineState.timingPidCorrection, "timingPidCorrection", "deg", 2},
|
||||
{engine->engineState.hellenBoardId, "Detected Board ID", "id", 0},
|
||||
{engine->engineState.startStopStateToggleCounter, "startStopStateToggleCounter", "", 0},
|
||||
{engine->engineState.egt1, "egt1", "", 0},
|
||||
{engine->engineState.egt2, "egt2", "", 0},
|
||||
{engine->engineState.egtValue1, "egtValue1", "", 0},
|
||||
{engine->engineState.egtValue2, "egtValue2", "", 0},
|
||||
{engine->engineState.desiredRpmLimit, "User-defined RPM hard limit", "rpm", 0},
|
||||
{engine->engineState.fuelInjectionCounter, "fuelInjectionCounter", "", 0},
|
||||
{engine->engineState.sparkCounter, "sparkCounter", "", 0},
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/engine_state.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/engine_state.txt Thu Nov 03 02:20:45 UTC 2022
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -244,7 +244,7 @@ struct engine_state_s {
|
|||
/**
|
||||
* offset 56
|
||||
*/
|
||||
cranking_fuel_s cranking;
|
||||
cranking_fuel_s crankingFuel;
|
||||
/**
|
||||
* offset 76
|
||||
*/
|
||||
|
@ -390,11 +390,11 @@ struct engine_state_s {
|
|||
/**
|
||||
* offset 124
|
||||
*/
|
||||
float egt1 = (float)0;
|
||||
float egtValue1 = (float)0;
|
||||
/**
|
||||
* offset 128
|
||||
*/
|
||||
float egt2 = (float)0;
|
||||
float egtValue2 = (float)0;
|
||||
/**
|
||||
* User-defined RPM hard limit
|
||||
rpm
|
||||
|
@ -429,4 +429,4 @@ struct engine_state_s {
|
|||
static_assert(sizeof(engine_state_s) == 152);
|
||||
|
||||
// end
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/engine_state.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/engine_state.txt Thu Nov 03 02:20:45 UTC 2022
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_41877
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.48way.snap_41877"
|
||||
#define SIGNATURE_HASH snap_6767
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.48way.snap_6767"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_43994
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.all.snap_43994"
|
||||
#define SIGNATURE_HASH snap_4640
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.all.snap_4640"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_14006
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.alphax-2chan.snap_14006"
|
||||
#define SIGNATURE_HASH snap_36684
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.alphax-2chan.snap_36684"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_26709
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.alphax-4chan.snap_26709"
|
||||
#define SIGNATURE_HASH snap_53679
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.alphax-4chan.snap_53679"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_24317
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.atlas.snap_24317"
|
||||
#define SIGNATURE_HASH snap_59143
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.atlas.snap_59143"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_64035
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.core8.snap_64035"
|
||||
#define SIGNATURE_HASH snap_17369
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.core8.snap_17369"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_43994
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.cypress.snap_43994"
|
||||
#define SIGNATURE_HASH snap_4640
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.cypress.snap_4640"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_43994
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.f407-discovery.snap_43994"
|
||||
#define SIGNATURE_HASH snap_4640
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.f407-discovery.snap_4640"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_43994
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.f429-discovery.snap_43994"
|
||||
#define SIGNATURE_HASH snap_4640
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.f429-discovery.snap_4640"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_22302
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.frankenso_na6.snap_22302"
|
||||
#define SIGNATURE_HASH snap_61156
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.frankenso_na6.snap_61156"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_44789
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.harley81.snap_44789"
|
||||
#define SIGNATURE_HASH snap_5903
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.harley81.snap_5903"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_11227
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen-gm-e67.snap_11227"
|
||||
#define SIGNATURE_HASH snap_37409
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen-gm-e67.snap_37409"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_39446
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen-nb1.snap_39446"
|
||||
#define SIGNATURE_HASH snap_9196
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen-nb1.snap_9196"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_2830
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen121nissan.snap_2830"
|
||||
#define SIGNATURE_HASH snap_45812
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen121nissan.snap_45812"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_26784
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen121vag.snap_26784"
|
||||
#define SIGNATURE_HASH snap_53594
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen121vag.snap_53594"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_55009
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen128.snap_55009"
|
||||
#define SIGNATURE_HASH snap_28443
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen128.snap_28443"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_7666
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen154hyundai.snap_7666"
|
||||
#define SIGNATURE_HASH snap_41992
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen154hyundai.snap_41992"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_42321
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen72.snap_42321"
|
||||
#define SIGNATURE_HASH snap_7339
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen72.snap_7339"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_29648
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen81.snap_29648"
|
||||
#define SIGNATURE_HASH snap_51754
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen81.snap_51754"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_47126
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen88bmw.snap_47126"
|
||||
#define SIGNATURE_HASH snap_492
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellen88bmw.snap_492"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_6893
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellenNA6.snap_6893"
|
||||
#define SIGNATURE_HASH snap_41751
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellenNA6.snap_41751"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_6706
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellenNA8_96.snap_6706"
|
||||
#define SIGNATURE_HASH snap_41928
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.hellenNA8_96.snap_41928"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_2326
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.kin.snap_2326"
|
||||
#define SIGNATURE_HASH snap_45292
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.kin.snap_45292"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_52442
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.mre_f4.snap_52442"
|
||||
#define SIGNATURE_HASH snap_29984
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.mre_f4.snap_29984"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_52442
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.mre_f7.snap_52442"
|
||||
#define SIGNATURE_HASH snap_29984
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.mre_f7.snap_29984"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_29244
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.prometheus_405.snap_29244"
|
||||
#define SIGNATURE_HASH snap_52166
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.prometheus_405.snap_52166"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_29244
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.prometheus_469.snap_29244"
|
||||
#define SIGNATURE_HASH snap_52166
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.prometheus_469.snap_52166"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_27820
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.proteus_f4.snap_27820"
|
||||
#define SIGNATURE_HASH snap_54614
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.proteus_f4.snap_54614"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_27820
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.proteus_f7.snap_27820"
|
||||
#define SIGNATURE_HASH snap_54614
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.proteus_f7.snap_54614"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_27820
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.proteus_h7.snap_27820"
|
||||
#define SIGNATURE_HASH snap_54614
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.proteus_h7.snap_54614"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on config/boards/subaru_eg33/config/gen_subaru_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_29184
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.subaru_eg33_f7.snap_29184"
|
||||
#define SIGNATURE_HASH snap_52218
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.subaru_eg33_f7.snap_52218"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_25998
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.tdg-pdm8.snap_25998"
|
||||
#define SIGNATURE_HASH snap_56436
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.03.tdg-pdm8.snap_56436"
|
||||
|
|
|
@ -113,12 +113,12 @@ float getOutputValueByName(const char *name) {
|
|||
return engine->outputChannels.engineMakeCodeNameCrc16;
|
||||
if (strEqualCaseInsensitive(name, "wallFuelAmount"))
|
||||
return engine->outputChannels.wallFuelAmount;
|
||||
if (strEqualCaseInsensitive(name, "wallFuelCorrection"))
|
||||
return engine->outputChannels.wallFuelCorrection;
|
||||
if (strEqualCaseInsensitive(name, "wallFuelCorrectionValue"))
|
||||
return engine->outputChannels.wallFuelCorrectionValue;
|
||||
if (strEqualCaseInsensitive(name, "revolutionCounterSinceStart"))
|
||||
return engine->outputChannels.revolutionCounterSinceStart;
|
||||
if (strEqualCaseInsensitive(name, "deltaTps"))
|
||||
return engine->outputChannels.deltaTps;
|
||||
if (strEqualCaseInsensitive(name, "deltaTpsValue"))
|
||||
return engine->outputChannels.deltaTpsValue;
|
||||
if (strEqualCaseInsensitive(name, "canReadCounter"))
|
||||
return engine->outputChannels.canReadCounter;
|
||||
if (strEqualCaseInsensitive(name, "tpsAccelFuel"))
|
||||
|
@ -239,8 +239,6 @@ float getOutputValueByName(const char *name) {
|
|||
return engine->outputChannels.lowFuelPressure;
|
||||
if (strEqualCaseInsensitive(name, "highFuelPressure"))
|
||||
return engine->outputChannels.highFuelPressure;
|
||||
if (strEqualCaseInsensitive(name, "targetLambda"))
|
||||
return engine->outputChannels.targetLambda;
|
||||
if (strEqualCaseInsensitive(name, "AFRValue"))
|
||||
return engine->outputChannels.AFRValue;
|
||||
if (strEqualCaseInsensitive(name, "VssAcceleration"))
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config.generated;
|
||||
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/engine_state.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/engine_state.txt Thu Nov 03 02:20:45 UTC 2022
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -438,11 +438,11 @@ public class EngineState {
|
|||
public static final Field CURRENTBAROCORRECTEDVE = Field.create("CURRENTBAROCORRECTEDVE", 44, FieldType.FLOAT);
|
||||
public static final Field INJECTORFLOWCORRECTION = Field.create("INJECTORFLOWCORRECTION", 48, FieldType.FLOAT);
|
||||
public static final Field BAROCORRECTION = Field.create("BAROCORRECTION", 52, FieldType.FLOAT);
|
||||
public static final Field CRANKING_BASEFUEL = Field.create("CRANKING_BASEFUEL", 56, FieldType.FLOAT);
|
||||
public static final Field CRANKING_COOLANTTEMPERATURECOEFFICIENT = Field.create("CRANKING_COOLANTTEMPERATURECOEFFICIENT", 60, FieldType.FLOAT);
|
||||
public static final Field CRANKING_TPSCOEFFICIENT = Field.create("CRANKING_TPSCOEFFICIENT", 64, FieldType.FLOAT);
|
||||
public static final Field CRANKING_DURATIONCOEFFICIENT = Field.create("CRANKING_DURATIONCOEFFICIENT", 68, FieldType.FLOAT);
|
||||
public static final Field CRANKING_FUEL = Field.create("CRANKING_FUEL", 72, FieldType.FLOAT);
|
||||
public static final Field CRANKINGFUEL_BASEFUEL = Field.create("CRANKINGFUEL_BASEFUEL", 56, FieldType.FLOAT);
|
||||
public static final Field CRANKINGFUEL_COOLANTTEMPERATURECOEFFICIENT = Field.create("CRANKINGFUEL_COOLANTTEMPERATURECOEFFICIENT", 60, FieldType.FLOAT);
|
||||
public static final Field CRANKINGFUEL_TPSCOEFFICIENT = Field.create("CRANKINGFUEL_TPSCOEFFICIENT", 64, FieldType.FLOAT);
|
||||
public static final Field CRANKINGFUEL_DURATIONCOEFFICIENT = Field.create("CRANKINGFUEL_DURATIONCOEFFICIENT", 68, FieldType.FLOAT);
|
||||
public static final Field CRANKINGFUEL_FUEL = Field.create("CRANKINGFUEL_FUEL", 72, FieldType.FLOAT);
|
||||
public static final Field RUNNING_POSTCRANKINGFUELCORRECTION = Field.create("RUNNING_POSTCRANKINGFUELCORRECTION", 76, FieldType.FLOAT);
|
||||
public static final Field RUNNING_INTAKETEMPERATURECOEFFICIENT = Field.create("RUNNING_INTAKETEMPERATURECOEFFICIENT", 80, FieldType.FLOAT);
|
||||
public static final Field RUNNING_COOLANTTEMPERATURECOEFFICIENT = Field.create("RUNNING_COOLANTTEMPERATURECOEFFICIENT", 84, FieldType.FLOAT);
|
||||
|
@ -488,8 +488,8 @@ public class EngineState {
|
|||
public static final Field UNUSEDBIT_22_30 = Field.create("UNUSEDBIT_22_30", 116, FieldType.BIT, 30);
|
||||
public static final Field UNUSEDBIT_22_31 = Field.create("UNUSEDBIT_22_31", 116, FieldType.BIT, 31);
|
||||
public static final Field STARTSTOPSTATETOGGLECOUNTER = Field.create("STARTSTOPSTATETOGGLECOUNTER", 120, FieldType.INT).setScale(1.0);
|
||||
public static final Field EGT1 = Field.create("EGT1", 124, FieldType.FLOAT);
|
||||
public static final Field EGT2 = Field.create("EGT2", 128, FieldType.FLOAT);
|
||||
public static final Field EGTVALUE1 = Field.create("EGTVALUE1", 124, FieldType.FLOAT);
|
||||
public static final Field EGTVALUE2 = Field.create("EGTVALUE2", 128, FieldType.FLOAT);
|
||||
public static final Field DESIREDRPMLIMIT = Field.create("DESIREDRPMLIMIT", 132, FieldType.INT16).setScale(1.0);
|
||||
public static final Field ALIGNMENTFILL_AT_134 = Field.create("ALIGNMENTFILL_AT_134", 134, FieldType.INT8).setScale(1.0);
|
||||
public static final Field FUELINJECTIONCOUNTER = Field.create("FUELINJECTIONCOUNTER", 136, FieldType.INT).setScale(1.0);
|
||||
|
@ -542,11 +542,11 @@ public class EngineState {
|
|||
CURRENTBAROCORRECTEDVE,
|
||||
INJECTORFLOWCORRECTION,
|
||||
BAROCORRECTION,
|
||||
CRANKING_BASEFUEL,
|
||||
CRANKING_COOLANTTEMPERATURECOEFFICIENT,
|
||||
CRANKING_TPSCOEFFICIENT,
|
||||
CRANKING_DURATIONCOEFFICIENT,
|
||||
CRANKING_FUEL,
|
||||
CRANKINGFUEL_BASEFUEL,
|
||||
CRANKINGFUEL_COOLANTTEMPERATURECOEFFICIENT,
|
||||
CRANKINGFUEL_TPSCOEFFICIENT,
|
||||
CRANKINGFUEL_DURATIONCOEFFICIENT,
|
||||
CRANKINGFUEL_FUEL,
|
||||
RUNNING_POSTCRANKINGFUELCORRECTION,
|
||||
RUNNING_INTAKETEMPERATURECOEFFICIENT,
|
||||
RUNNING_COOLANTTEMPERATURECOEFFICIENT,
|
||||
|
@ -592,8 +592,8 @@ public class EngineState {
|
|||
UNUSEDBIT_22_30,
|
||||
UNUSEDBIT_22_31,
|
||||
STARTSTOPSTATETOGGLECOUNTER,
|
||||
EGT1,
|
||||
EGT2,
|
||||
EGTVALUE1,
|
||||
EGTVALUE2,
|
||||
DESIREDRPMLIMIT,
|
||||
ALIGNMENTFILL_AT_134,
|
||||
FUELINJECTIONCOUNTER,
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue