This commit is contained in:
parent
a19ae1bdc4
commit
6e9cb638aa
|
@ -1,4 +1,4 @@
|
||||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Jul 25 20:21:45 EDT 2017
|
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon Jul 31 14:44:23 EDT 2017
|
||||||
// begin
|
// begin
|
||||||
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
|
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
|
||||||
#define ENGINE_CONFIGURATION_GENERATED_H_
|
#define ENGINE_CONFIGURATION_GENERATED_H_
|
||||||
|
@ -1583,7 +1583,15 @@ typedef struct {
|
||||||
/**
|
/**
|
||||||
* offset 2168
|
* offset 2168
|
||||||
*/
|
*/
|
||||||
float unusedalternatorControl[4];
|
int16_t afterCrankingIACtaperDuration;
|
||||||
|
/**
|
||||||
|
* offset 2170
|
||||||
|
*/
|
||||||
|
int16_t unusedShortHere;
|
||||||
|
/**
|
||||||
|
* offset 2172
|
||||||
|
*/
|
||||||
|
float unusedalternatorControl[3];
|
||||||
/**
|
/**
|
||||||
* offset 2184
|
* offset 2184
|
||||||
*/
|
*/
|
||||||
|
@ -2131,4 +2139,4 @@ typedef struct {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// end
|
// end
|
||||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Jul 25 20:21:45 EDT 2017
|
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon Jul 31 14:44:23 EDT 2017
|
||||||
|
|
|
@ -1116,8 +1116,12 @@
|
||||||
#define alternatorOffAboveTps_offset_hex 870
|
#define alternatorOffAboveTps_offset_hex 870
|
||||||
#define startOfCrankingPrimingPulse_offset 2164
|
#define startOfCrankingPrimingPulse_offset 2164
|
||||||
#define startOfCrankingPrimingPulse_offset_hex 874
|
#define startOfCrankingPrimingPulse_offset_hex 874
|
||||||
#define unusedalternatorControl_offset 2168
|
#define afterCrankingIACtaperDuration_offset 2168
|
||||||
#define unusedalternatorControl_offset_hex 878
|
#define afterCrankingIACtaperDuration_offset_hex 878
|
||||||
|
#define unusedShortHere_offset 2170
|
||||||
|
#define unusedShortHere_offset_hex 87a
|
||||||
|
#define unusedalternatorControl_offset 2172
|
||||||
|
#define unusedalternatorControl_offset_hex 87c
|
||||||
#define tpsAccelLength_offset 2184
|
#define tpsAccelLength_offset 2184
|
||||||
#define tpsAccelLength_offset_hex 888
|
#define tpsAccelLength_offset_hex 888
|
||||||
#define tpsAccelEnrichmentThreshold_offset 2188
|
#define tpsAccelEnrichmentThreshold_offset 2188
|
||||||
|
|
|
@ -721,7 +721,10 @@ custom pin_mode_e 4 bits, U32, @OFFSET@, [0:5], @@pin_mode_e_enum@@
|
||||||
float targetVBatt;set targetvbatt VOLTS;"Volts", 1, 0, 0,30, 1
|
float targetVBatt;set targetvbatt VOLTS;"Volts", 1, 0, 0,30, 1
|
||||||
float alternatorOffAboveTps;Turn off alternator output above specified TPS;"%", 1, 0, 0, 200, 2
|
float alternatorOffAboveTps;Turn off alternator output above specified TPS;"%", 1, 0, 0, 200, 2
|
||||||
float startOfCrankingPrimingPulse;;"ms", 1, 0, 0, 200, 1
|
float startOfCrankingPrimingPulse;;"ms", 1, 0, 0, 200, 1
|
||||||
float[4] unusedalternatorControl;
|
int16_t afterCrankingIACtaperDuration;;"cycles", 1, 0, 0, 5000, 0
|
||||||
|
int16_t unusedShortHere;;"seconds", 1, 0, 0, 6000, 0
|
||||||
|
|
||||||
|
float[3] unusedalternatorControl;
|
||||||
|
|
||||||
int tpsAccelLength;;"cycles", 1, 0, 1, 200, 0
|
int tpsAccelLength;;"cycles", 1, 0, 1, 200, 0
|
||||||
float tpsAccelEnrichmentThreshold;;"roc", 1, 0, 0, 200, 3
|
float tpsAccelEnrichmentThreshold;;"roc", 1, 0, 0, 200, 3
|
||||||
|
|
|
@ -1621,6 +1621,7 @@ cmd_stop_engine = "w\x00\x99\x00\x00"
|
||||||
field = ""
|
field = ""
|
||||||
field = "enable Cylinder Cleanup", isCylinderCleanupEnabled
|
field = "enable Cylinder Cleanup", isCylinderCleanupEnabled
|
||||||
field = "Startup fuel prime duration", startUpFuelPumpDuration
|
field = "Startup fuel prime duration", startUpFuelPumpDuration
|
||||||
|
field = "After cranking IAC taper duration", afterCrankingIACtaperDuration
|
||||||
|
|
||||||
|
|
||||||
dialog = EngineLoadAccelPanel, "Engine Load"
|
dialog = EngineLoadAccelPanel, "Engine Load"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package com.rusefi.config;
|
package com.rusefi.config;
|
||||||
|
|
||||||
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Jul 25 20:21:45 EDT 2017
|
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon Jul 31 14:44:23 EDT 2017
|
||||||
public class Fields {
|
public class Fields {
|
||||||
public static final int LE_COMMAND_LENGTH = 200;
|
public static final int LE_COMMAND_LENGTH = 200;
|
||||||
public static final int BLOCKING_FACTOR = 400;
|
public static final int BLOCKING_FACTOR = 400;
|
||||||
|
@ -811,8 +811,10 @@ public class Fields {
|
||||||
public static final int alternatorOffAboveTps_offset_hex = 870;
|
public static final int alternatorOffAboveTps_offset_hex = 870;
|
||||||
public static final int startOfCrankingPrimingPulse_offset = 2164;
|
public static final int startOfCrankingPrimingPulse_offset = 2164;
|
||||||
public static final int startOfCrankingPrimingPulse_offset_hex = 874;
|
public static final int startOfCrankingPrimingPulse_offset_hex = 874;
|
||||||
public static final int unusedalternatorControl_offset = 2168;
|
public static final int afterCrankingIACtaperDuration_offset = 2168;
|
||||||
public static final int unusedalternatorControl_offset_hex = 878;
|
public static final int afterCrankingIACtaperDuration_offset_hex = 878;
|
||||||
|
public static final int unusedShortHere_offset = 2170;
|
||||||
|
public static final int unusedalternatorControl_offset = 2172;
|
||||||
public static final int tpsAccelLength_offset = 2184;
|
public static final int tpsAccelLength_offset = 2184;
|
||||||
public static final int tpsAccelLength_offset_hex = 888;
|
public static final int tpsAccelLength_offset_hex = 888;
|
||||||
public static final int tpsAccelEnrichmentThreshold_offset = 2188;
|
public static final int tpsAccelEnrichmentThreshold_offset = 2188;
|
||||||
|
@ -1609,6 +1611,8 @@ public class Fields {
|
||||||
public static final Field TARGETVBATT = Field.create("TARGETVBATT", 2156, FieldType.FLOAT);
|
public static final Field TARGETVBATT = Field.create("TARGETVBATT", 2156, FieldType.FLOAT);
|
||||||
public static final Field ALTERNATOROFFABOVETPS = Field.create("ALTERNATOROFFABOVETPS", 2160, FieldType.FLOAT);
|
public static final Field ALTERNATOROFFABOVETPS = Field.create("ALTERNATOROFFABOVETPS", 2160, FieldType.FLOAT);
|
||||||
public static final Field STARTOFCRANKINGPRIMINGPULSE = Field.create("STARTOFCRANKINGPRIMINGPULSE", 2164, FieldType.FLOAT);
|
public static final Field STARTOFCRANKINGPRIMINGPULSE = Field.create("STARTOFCRANKINGPRIMINGPULSE", 2164, FieldType.FLOAT);
|
||||||
|
public static final Field AFTERCRANKINGIACTAPERDURATION = Field.create("AFTERCRANKINGIACTAPERDURATION", 2168, FieldType.INT);
|
||||||
|
public static final Field UNUSEDSHORTHERE = Field.create("UNUSEDSHORTHERE", 2170, FieldType.INT);
|
||||||
public static final Field TPSACCELLENGTH = Field.create("TPSACCELLENGTH", 2184, FieldType.INT);
|
public static final Field TPSACCELLENGTH = Field.create("TPSACCELLENGTH", 2184, FieldType.INT);
|
||||||
public static final Field TPSACCELENRICHMENTTHRESHOLD = Field.create("TPSACCELENRICHMENTTHRESHOLD", 2188, FieldType.FLOAT);
|
public static final Field TPSACCELENRICHMENTTHRESHOLD = Field.create("TPSACCELENRICHMENTTHRESHOLD", 2188, FieldType.FLOAT);
|
||||||
public static final Field VVTOFFSET = Field.create("VVTOFFSET", 2192, FieldType.FLOAT);
|
public static final Field VVTOFFSET = Field.create("VVTOFFSET", 2192, FieldType.FLOAT);
|
||||||
|
|
Loading…
Reference in New Issue