Auto-generated configs and docs
This commit is contained in:
parent
651101e6bc
commit
6eedad82c1
|
@ -39,7 +39,7 @@ static constexpr LogField fields[] = {
|
|||
{engine->outputChannels.revolutionCounterSinceStart, "revolutionCounterSinceStart", "", 0},
|
||||
{engine->outputChannels.deltaTps, "fuel: TPS change", "ratio", 0},
|
||||
{engine->outputChannels.canReadCounter, "canReadCounter", "", 0},
|
||||
{engine->outputChannels.tpsAccelFuel, "fuel: TPS acceleration extra fuel ms", "ms", 3},
|
||||
{engine->outputChannels.tpsAccelFuel, "fuel: TPS acceleration add fuel ms", "ms", 3},
|
||||
{engine->outputChannels.ignitionAdvance, "timing", "deg", 1},
|
||||
{engine->outputChannels.sparkDwellValue, "dwell: coil charge time", "ms", 1},
|
||||
{engine->outputChannels.coilDutyCycle, "dwell: coil duty cycle", "%", 0},
|
||||
|
@ -265,20 +265,20 @@ static constexpr LogField fields[] = {
|
|||
{engine->engineState.tpsVoltageBoard, "tpsVoltageBoard", "", 0},
|
||||
{engine->engineState.currentBaroCorrectedVE, "currentBaroCorrectedVE", "", 0},
|
||||
{engine->engineState.injectorFlowCorrection, "injectorFlowCorrection", "", 0},
|
||||
{engine->engineState.baroCorrection, "fuel: Barometric pressure correction", "", 0},
|
||||
{engine->engineState.cranking.baseFuel, "Duration of injection, in ms. During cranking we do not account for injector flow, so if you change injectors you would need to change settings.", "", 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, "Actual injection duration based on all above coefficients.", "", 0},
|
||||
{engine->engineState.cranking.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},
|
||||
{engine->engineState.running.timeSinceCrankingInSecs, "running.timeSinceCrankingInSecs", "", 0},
|
||||
{engine->engineState.running.baseFuel, "running.baseFuel", "", 0},
|
||||
{engine->engineState.running.fuel, "Actual injection duration with CLT, IAT and TPS acceleration corrections per cycle, as squirt duration.", "", 0},
|
||||
{engine->engineState.running.fuel, "Fuel: actual", "", 0},
|
||||
{engine->engineState.sparkDwell, "ignition dwell duration in ms", "", 0},
|
||||
{engine->engineState.dwellAngle, "ignition dwell duration as crankshaft angle", "", 0},
|
||||
{engine->engineState.dwellAngle, "ignition dwell duration", "", 0},
|
||||
{engine->engineState.cltTimingCorrection, "cltTimingCorrection", "deg", 2},
|
||||
{engine->engineState.timingIatCorrection, "timingIatCorrection", "deg", 2},
|
||||
{engine->engineState.timingPidCorrection, "timingPidCorrection", "deg", 2},
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/idle_state.txt Sun Oct 30 21:54:10 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/idle_state.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -22,17 +22,19 @@ struct idle_state_s {
|
|||
*/
|
||||
percent_t baseIdlePosition = (percent_t)0;
|
||||
/**
|
||||
* idle: iacByTpsTaper portion of idle
|
||||
* idle: iacByTpsTaper portion
|
||||
* offset 12
|
||||
*/
|
||||
percent_t iacByTpsTaper = (percent_t)0;
|
||||
/**
|
||||
* idle: throttlePedalUpState
|
||||
* true in IDLE throttle pedal state, false if driver is touching the pedal
|
||||
* todo: better name for this field?
|
||||
* offset 16
|
||||
*/
|
||||
int throttlePedalUpState = (int)0;
|
||||
/**
|
||||
* idle: mightResetPid
|
||||
* The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.
|
||||
* The throttle pedal can be pressed for a long time, making the PID data obsolete (thus the reset is required).
|
||||
* We set 'mightResetPid' to true only if PID was actually used (i.e. idlePid.getOutput() was called) to save some CPU resources.
|
||||
|
@ -152,7 +154,7 @@ struct idle_state_s {
|
|||
*/
|
||||
int targetRpmAcBump = (int)0;
|
||||
/**
|
||||
* idle: iacByRpmTaper portion of idle
|
||||
* idle: iacByRpmTaper portion
|
||||
* offset 32
|
||||
*/
|
||||
percent_t iacByRpmTaper = (percent_t)0;
|
||||
|
@ -165,4 +167,4 @@ struct idle_state_s {
|
|||
static_assert(sizeof(idle_state_s) == 40);
|
||||
|
||||
// end
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/idle_state.txt Sun Oct 30 21:54:10 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/idle_state.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/engine_state.txt Fri Oct 28 08:35:47 UTC 2022
|
||||
// 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
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -134,6 +134,7 @@ static_assert(sizeof(speed_density_s) == 12);
|
|||
// start of cranking_fuel_s
|
||||
struct cranking_fuel_s {
|
||||
/**
|
||||
* Fuel: base duration
|
||||
* Duration of injection, in ms. During cranking we do not account for injector flow, so if you change injectors you would need to change settings.
|
||||
* Deprecated. Please use '1'.
|
||||
* TODO: maybe account for injector flow?
|
||||
|
@ -153,7 +154,8 @@ struct cranking_fuel_s {
|
|||
*/
|
||||
float durationCoefficient = (float)0;
|
||||
/**
|
||||
* Actual injection duration based on all above coefficients.
|
||||
* Fuel: Actual injection
|
||||
* duration based on all coefficients.
|
||||
* offset 16
|
||||
*/
|
||||
floatms_t fuel = (floatms_t)0;
|
||||
|
@ -185,6 +187,7 @@ struct running_fuel_s {
|
|||
*/
|
||||
floatms_t baseFuel = (floatms_t)0;
|
||||
/**
|
||||
* Fuel: actual
|
||||
* Actual injection duration with CLT, IAT and TPS acceleration corrections per cycle, as squirt duration.
|
||||
* Without injector lag.
|
||||
* @see baseFuel
|
||||
|
@ -253,7 +256,8 @@ struct engine_state_s {
|
|||
*/
|
||||
floatms_t sparkDwell = (floatms_t)0;
|
||||
/**
|
||||
* ignition dwell duration as crankshaft angle
|
||||
* ignition dwell duration
|
||||
* as crankshaft angle
|
||||
* NAN if engine is stopped
|
||||
* See also sparkDwell
|
||||
* offset 104
|
||||
|
@ -425,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 Fri Oct 28 08:35:47 UTC 2022
|
||||
// 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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/fuel/fuel_computer.txt Sat Sep 03 07:08:26 EDT 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/fuel/fuel_computer.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -26,6 +26,7 @@ struct fuel_computer_s {
|
|||
*/
|
||||
float sdTcharge_coff = (float)0;
|
||||
/**
|
||||
* SD cylinder mass
|
||||
* Speed-density logic: calculated air mass in one cylinder, in grams
|
||||
* offset 20
|
||||
*/
|
||||
|
@ -130,4 +131,4 @@ struct fuel_computer_s {
|
|||
static_assert(sizeof(fuel_computer_s) == 28);
|
||||
|
||||
// end
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/fuel/fuel_computer.txt Sat Sep 03 07:08:26 EDT 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/fuel/fuel_computer.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/wall_fuel_state.txt Mon Apr 18 21:50:18 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/wall_fuel_state.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -6,12 +6,14 @@
|
|||
// start of wall_fuel_state_s
|
||||
struct wall_fuel_state_s {
|
||||
/**
|
||||
* fuel injection time correction to account for wall wetting effect for current cycle
|
||||
* fuel wallwetting injection time
|
||||
* correction to account for wall wetting effect for current cycle
|
||||
* offset 0
|
||||
*/
|
||||
float wallFuelCorrection = (float)0;
|
||||
/**
|
||||
* Amount of fuel on the wall, in ms of injector open time for each injector.
|
||||
* Fuel on the wall
|
||||
* in ms of injector open time for each injector.
|
||||
* offset 4
|
||||
*/
|
||||
floatms_t wallFuel = (floatms_t)0;
|
||||
|
@ -19,4 +21,4 @@ struct wall_fuel_state_s {
|
|||
static_assert(sizeof(wall_fuel_state_s) == 8);
|
||||
|
||||
// end
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/wall_fuel_state.txt Mon Apr 18 21:50:18 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/wall_fuel_state.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/engine_cycle/knock_controller.txt Tue Aug 30 06:01:23 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/engine_cycle/knock_controller.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -6,7 +6,8 @@
|
|||
// start of knock_controller_s
|
||||
struct knock_controller_s {
|
||||
/**
|
||||
* Degrees retarded: larger number = more retard
|
||||
* Knock Degrees retarded
|
||||
* larger number = more retard
|
||||
* offset 0
|
||||
*/
|
||||
angle_t m_knockRetard = (angle_t)0;
|
||||
|
@ -26,4 +27,4 @@ struct knock_controller_s {
|
|||
static_assert(sizeof(knock_controller_s) == 16);
|
||||
|
||||
// end
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/engine_cycle/knock_controller.txt Tue Aug 30 06:01:23 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/engine_cycle/knock_controller.txt Tue Nov 01 20:59:53 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_53003
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.48way.snap_53003"
|
||||
#define SIGNATURE_HASH snap_18655
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.48way.snap_18655"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_51012
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.all.snap_51012"
|
||||
#define SIGNATURE_HASH snap_16528
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.all.snap_16528"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_23080
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.alphax-2chan.snap_23080"
|
||||
#define SIGNATURE_HASH snap_56828
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.alphax-2chan.snap_56828"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_1227
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.alphax-4chan.snap_1227"
|
||||
#define SIGNATURE_HASH snap_33567
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.alphax-4chan.snap_33567"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_12899
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.atlas.snap_12899"
|
||||
#define SIGNATURE_HASH snap_46519
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.atlas.snap_46519"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_38589
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.core8.snap_38589"
|
||||
#define SIGNATURE_HASH snap_4457
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.core8.snap_4457"
|
||||
|
|
|
@ -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_51012
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.cypress.snap_51012"
|
||||
#define SIGNATURE_HASH snap_16528
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.cypress.snap_16528"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_51012
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.f407-discovery.snap_51012"
|
||||
#define SIGNATURE_HASH snap_16528
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.f407-discovery.snap_16528"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_51012
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.f429-discovery.snap_51012"
|
||||
#define SIGNATURE_HASH snap_16528
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.f429-discovery.snap_16528"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_15232
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.frankenso_na6.snap_15232"
|
||||
#define SIGNATURE_HASH snap_48212
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.frankenso_na6.snap_48212"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_49771
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.harley81.snap_49771"
|
||||
#define SIGNATURE_HASH snap_17855
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.harley81.snap_17855"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_18245
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen-gm-e67.snap_18245"
|
||||
#define SIGNATURE_HASH snap_49297
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen-gm-e67.snap_49297"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_63112
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen-nb1.snap_63112"
|
||||
#define SIGNATURE_HASH snap_29020
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen-nb1.snap_29020"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_32686
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen121nissan.snap_32686"
|
||||
#define SIGNATURE_HASH snap_63610
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen121nissan.snap_63610"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_1086
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen121vag.snap_1086"
|
||||
#define SIGNATURE_HASH snap_33770
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen121vag.snap_33770"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_47743
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen128.snap_47743"
|
||||
#define SIGNATURE_HASH snap_15787
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen128.snap_15787"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_29036
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen154hyundai.snap_29036"
|
||||
#define SIGNATURE_HASH snap_63160
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen154hyundai.snap_63160"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_51663
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen72.snap_51663"
|
||||
#define SIGNATURE_HASH snap_19995
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen72.snap_19995"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_8014
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen81.snap_8014"
|
||||
#define SIGNATURE_HASH snap_39066
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen81.snap_39066"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_54408
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen88bmw.snap_54408"
|
||||
#define SIGNATURE_HASH snap_21340
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellen88bmw.snap_21340"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_30323
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellenNA6.snap_30323"
|
||||
#define SIGNATURE_HASH snap_61863
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellenNA6.snap_61863"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_30380
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellenNA8_96.snap_30380"
|
||||
#define SIGNATURE_HASH snap_61816
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.hellenNA8_96.snap_61816"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_25992
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.kin.snap_25992"
|
||||
#define SIGNATURE_HASH snap_57948
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.kin.snap_57948"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_41028
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.mre_f4.snap_41028"
|
||||
#define SIGNATURE_HASH snap_10128
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.mre_f4.snap_10128"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_41028
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.mre_f7.snap_41028"
|
||||
#define SIGNATURE_HASH snap_10128
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.mre_f7.snap_10128"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_7842
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.prometheus_405.snap_7842"
|
||||
#define SIGNATURE_HASH snap_39286
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.prometheus_405.snap_39286"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_7842
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.prometheus_469.snap_7842"
|
||||
#define SIGNATURE_HASH snap_39286
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.prometheus_469.snap_39286"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_50
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.proteus_f4.snap_50"
|
||||
#define SIGNATURE_HASH snap_34790
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.proteus_f4.snap_34790"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_50
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.proteus_f7.snap_50"
|
||||
#define SIGNATURE_HASH snap_34790
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.proteus_f7.snap_34790"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_50
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.proteus_h7.snap_50"
|
||||
#define SIGNATURE_HASH snap_34790
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.proteus_h7.snap_34790"
|
||||
|
|
|
@ -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_7838
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.subaru_eg33_f7.snap_7838"
|
||||
#define SIGNATURE_HASH snap_39242
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.subaru_eg33_f7.snap_39242"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_2320
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.tdg-pdm8.snap_2320"
|
||||
#define SIGNATURE_HASH snap_36548
|
||||
#define TS_SIGNATURE "rusEFI 2022.11.01.tdg-pdm8.snap_36548"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config.generated;
|
||||
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/ac_control.txt Wed Oct 26 20:53:56 UTC 2022
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/ac_control.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -150,7 +150,7 @@ public class AcControl {
|
|||
public static final String GAUGE_NAME_ETB_ERROR = "ETB position error";
|
||||
public static final String GAUGE_NAME_ETB_TARGET = "ETB position target";
|
||||
public static final String GAUGE_NAME_FLEX = "Flex Ethanol %";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure correction";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure mult";
|
||||
public static final String GAUGE_NAME_FUEL_BASE = "fuel: base mass";
|
||||
public static final String GAUGE_NAME_FUEL_CHARGE_TEMP = "fuel: Estimated charge temperature";
|
||||
public static final String GAUGE_NAME_FUEL_CLT_CORR = "fuel: CLT correction";
|
||||
|
@ -168,7 +168,7 @@ public class AcControl {
|
|||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW = "Fuel pressure (low)";
|
||||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW_UNITS = "kPa";
|
||||
public static final String GAUGE_NAME_FUEL_RUNNING = "fuel: running";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration extra fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration add fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_ROC = "fuel: TPS change";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM = "fuel: fuel trim";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM_2 = "fuel: fuel trim 2";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config.generated;
|
||||
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/boost_control.txt Wed Oct 26 20:53:56 UTC 2022
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/boost_control.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -150,7 +150,7 @@ public class BoostControl {
|
|||
public static final String GAUGE_NAME_ETB_ERROR = "ETB position error";
|
||||
public static final String GAUGE_NAME_ETB_TARGET = "ETB position target";
|
||||
public static final String GAUGE_NAME_FLEX = "Flex Ethanol %";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure correction";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure mult";
|
||||
public static final String GAUGE_NAME_FUEL_BASE = "fuel: base mass";
|
||||
public static final String GAUGE_NAME_FUEL_CHARGE_TEMP = "fuel: Estimated charge temperature";
|
||||
public static final String GAUGE_NAME_FUEL_CLT_CORR = "fuel: CLT correction";
|
||||
|
@ -168,7 +168,7 @@ public class BoostControl {
|
|||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW = "Fuel pressure (low)";
|
||||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW_UNITS = "kPa";
|
||||
public static final String GAUGE_NAME_FUEL_RUNNING = "fuel: running";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration extra fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration add fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_ROC = "fuel: TPS change";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM = "fuel: fuel trim";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM_2 = "fuel: fuel trim 2";
|
||||
|
|
|
@ -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 Wed Oct 26 20:53:56 UTC 2022
|
||||
// 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
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -150,7 +150,7 @@ public class EngineState {
|
|||
public static final String GAUGE_NAME_ETB_ERROR = "ETB position error";
|
||||
public static final String GAUGE_NAME_ETB_TARGET = "ETB position target";
|
||||
public static final String GAUGE_NAME_FLEX = "Flex Ethanol %";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure correction";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure mult";
|
||||
public static final String GAUGE_NAME_FUEL_BASE = "fuel: base mass";
|
||||
public static final String GAUGE_NAME_FUEL_CHARGE_TEMP = "fuel: Estimated charge temperature";
|
||||
public static final String GAUGE_NAME_FUEL_CLT_CORR = "fuel: CLT correction";
|
||||
|
@ -168,7 +168,7 @@ public class EngineState {
|
|||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW = "Fuel pressure (low)";
|
||||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW_UNITS = "kPa";
|
||||
public static final String GAUGE_NAME_FUEL_RUNNING = "fuel: running";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration extra fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration add fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_ROC = "fuel: TPS change";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM = "fuel: fuel trim";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM_2 = "fuel: fuel trim 2";
|
||||
|
|
|
@ -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/fuel/fuel_computer.txt Wed Oct 26 20:53:55 UTC 2022
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/fuel/fuel_computer.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -150,7 +150,7 @@ public class FuelComputer {
|
|||
public static final String GAUGE_NAME_ETB_ERROR = "ETB position error";
|
||||
public static final String GAUGE_NAME_ETB_TARGET = "ETB position target";
|
||||
public static final String GAUGE_NAME_FLEX = "Flex Ethanol %";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure correction";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure mult";
|
||||
public static final String GAUGE_NAME_FUEL_BASE = "fuel: base mass";
|
||||
public static final String GAUGE_NAME_FUEL_CHARGE_TEMP = "fuel: Estimated charge temperature";
|
||||
public static final String GAUGE_NAME_FUEL_CLT_CORR = "fuel: CLT correction";
|
||||
|
@ -168,7 +168,7 @@ public class FuelComputer {
|
|||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW = "Fuel pressure (low)";
|
||||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW_UNITS = "kPa";
|
||||
public static final String GAUGE_NAME_FUEL_RUNNING = "fuel: running";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration extra fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration add fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_ROC = "fuel: TPS change";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM = "fuel: fuel trim";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM_2 = "fuel: fuel trim 2";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config.generated;
|
||||
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/trigger/trigger_state.txt Wed Oct 26 20:53:56 UTC 2022
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/trigger/trigger_state.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -150,7 +150,7 @@ public class TriggerState {
|
|||
public static final String GAUGE_NAME_ETB_ERROR = "ETB position error";
|
||||
public static final String GAUGE_NAME_ETB_TARGET = "ETB position target";
|
||||
public static final String GAUGE_NAME_FLEX = "Flex Ethanol %";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure correction";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure mult";
|
||||
public static final String GAUGE_NAME_FUEL_BASE = "fuel: base mass";
|
||||
public static final String GAUGE_NAME_FUEL_CHARGE_TEMP = "fuel: Estimated charge temperature";
|
||||
public static final String GAUGE_NAME_FUEL_CLT_CORR = "fuel: CLT correction";
|
||||
|
@ -168,7 +168,7 @@ public class TriggerState {
|
|||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW = "Fuel pressure (low)";
|
||||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW_UNITS = "kPa";
|
||||
public static final String GAUGE_NAME_FUEL_RUNNING = "fuel: running";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration extra fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration add fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_ROC = "fuel: TPS change";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM = "fuel: fuel trim";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM_2 = "fuel: fuel trim 2";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config.generated;
|
||||
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/trigger/trigger_state_primary.txt Wed Oct 26 20:53:56 UTC 2022
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/trigger/trigger_state_primary.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -150,7 +150,7 @@ public class TriggerStatePrimary {
|
|||
public static final String GAUGE_NAME_ETB_ERROR = "ETB position error";
|
||||
public static final String GAUGE_NAME_ETB_TARGET = "ETB position target";
|
||||
public static final String GAUGE_NAME_FLEX = "Flex Ethanol %";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure correction";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure mult";
|
||||
public static final String GAUGE_NAME_FUEL_BASE = "fuel: base mass";
|
||||
public static final String GAUGE_NAME_FUEL_CHARGE_TEMP = "fuel: Estimated charge temperature";
|
||||
public static final String GAUGE_NAME_FUEL_CLT_CORR = "fuel: CLT correction";
|
||||
|
@ -168,7 +168,7 @@ public class TriggerStatePrimary {
|
|||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW = "Fuel pressure (low)";
|
||||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW_UNITS = "kPa";
|
||||
public static final String GAUGE_NAME_FUEL_RUNNING = "fuel: running";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration extra fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration add fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_ROC = "fuel: TPS change";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM = "fuel: fuel trim";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM_2 = "fuel: fuel trim 2";
|
||||
|
|
|
@ -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 Wed Oct 26 20:53:55 UTC 2022
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Tue Nov 01 20:59:53 UTC 2022
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -150,7 +150,7 @@ public class TsOutputs {
|
|||
public static final String GAUGE_NAME_ETB_ERROR = "ETB position error";
|
||||
public static final String GAUGE_NAME_ETB_TARGET = "ETB position target";
|
||||
public static final String GAUGE_NAME_FLEX = "Flex Ethanol %";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure correction";
|
||||
public static final String GAUGE_NAME_FUEL_BARO_CORR = "fuel: Barometric pressure mult";
|
||||
public static final String GAUGE_NAME_FUEL_BASE = "fuel: base mass";
|
||||
public static final String GAUGE_NAME_FUEL_CHARGE_TEMP = "fuel: Estimated charge temperature";
|
||||
public static final String GAUGE_NAME_FUEL_CLT_CORR = "fuel: CLT correction";
|
||||
|
@ -168,7 +168,7 @@ public class TsOutputs {
|
|||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW = "Fuel pressure (low)";
|
||||
public static final String GAUGE_NAME_FUEL_PRESSURE_LOW_UNITS = "kPa";
|
||||
public static final String GAUGE_NAME_FUEL_RUNNING = "fuel: running";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration extra fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_EXTRA = "fuel: TPS acceleration add fuel ms";
|
||||
public static final String GAUGE_NAME_FUEL_TPS_ROC = "fuel: TPS change";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM = "fuel: fuel trim";
|
||||
public static final String GAUGE_NAME_FUEL_TRIM_2 = "fuel: fuel trim 2";
|
||||
|
|
Loading…
Reference in New Issue