auto-sync
This commit is contained in:
parent
89b0affe91
commit
4b74ebe7e2
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Feb 28 00:51:58 EST 2016
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Feb 28 00:56:56 EST 2016
|
||||
// begin
|
||||
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
|
||||
#define ENGINE_CONFIGURATION_GENERATED_H_
|
||||
|
@ -1491,9 +1491,14 @@ typedef struct {
|
|||
*/
|
||||
float warmupAfrThreshold;
|
||||
/**
|
||||
* kPa value at which we need to cut fuel and spark, 0 if not enabled
|
||||
* offset 2300
|
||||
*/
|
||||
int unused[179];
|
||||
float boostCutPressure;
|
||||
/**
|
||||
* offset 2304
|
||||
*/
|
||||
int unused[178];
|
||||
/** total size 3016*/
|
||||
} engine_configuration_s;
|
||||
|
||||
|
@ -1643,4 +1648,4 @@ typedef struct {
|
|||
|
||||
#endif
|
||||
// end
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Feb 28 00:51:58 EST 2016
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Feb 28 00:56:56 EST 2016
|
||||
|
|
|
@ -743,7 +743,9 @@
|
|||
#define warmupTargetAfrBins_offset 2264
|
||||
#define warmupTargetAfr_offset 2280
|
||||
#define warmupAfrThreshold_offset 2296
|
||||
#define unused_offset 2300
|
||||
#define boostCutPressure_offset 2300
|
||||
#define unused_offset 2304
|
||||
#define unused_offset_hex 900
|
||||
#define le_formulas1_offset 3016
|
||||
#define le_formulas2_offset 3216
|
||||
#define le_formulas3_offset 3416
|
||||
|
|
|
@ -644,7 +644,8 @@ baro_corr_table_t baroCorrTable;
|
|||
float[WARMUP_TARGET_AFR_SIZE] warmupTargetAfr;;"AFR", 1, 0, 0.0, 20.0, 2
|
||||
float warmupAfrThreshold;;"tempterature", 1, 0, 0, 200, 3
|
||||
|
||||
int[179] unused;
|
||||
float boostCutPressure;kPa value at which we need to cut fuel and spark, 0 if not enabled;"kPa", 1, 0, 0, 500, 0
|
||||
int[178] unused;
|
||||
|
||||
|
||||
end_struct
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config;
|
||||
|
||||
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Feb 28 00:51:58 EST 2016
|
||||
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Feb 28 00:56:56 EST 2016
|
||||
public class Fields {
|
||||
public static final int LE_COMMAND_LENGTH = 200;
|
||||
public static final int TS_FILE_VERSION = 20160122;
|
||||
|
@ -747,7 +747,9 @@ public class Fields {
|
|||
public static final int warmupTargetAfrBins_offset = 2264;
|
||||
public static final int warmupTargetAfr_offset = 2280;
|
||||
public static final int warmupAfrThreshold_offset = 2296;
|
||||
public static final int unused_offset = 2300;
|
||||
public static final int boostCutPressure_offset = 2300;
|
||||
public static final int unused_offset = 2304;
|
||||
public static final int unused_offset_hex = 900;
|
||||
public static final int le_formulas1_offset = 3016;
|
||||
public static final int le_formulas2_offset = 3216;
|
||||
public static final int le_formulas3_offset = 3416;
|
||||
|
@ -1284,6 +1286,7 @@ public class Fields {
|
|||
public static final Field WARMUPAFRPID_DFACTOR = Field.create("WARMUPAFRPID_DFACTOR", 2256, FieldType.FLOAT);
|
||||
public static final Field WARMUPAFRPID_OFFSET = Field.create("WARMUPAFRPID_OFFSET", 2260, FieldType.FLOAT);
|
||||
public static final Field WARMUPAFRTHRESHOLD = Field.create("WARMUPAFRTHRESHOLD", 2296, FieldType.FLOAT);
|
||||
public static final Field BOOSTCUTPRESSURE = Field.create("BOOSTCUTPRESSURE", 2300, FieldType.FLOAT);
|
||||
public static final Field LE_FORMULAS1 = Field.create("LE_FORMULAS1", 3016, FieldType.INT);
|
||||
public static final Field LE_FORMULAS2 = Field.create("LE_FORMULAS2", 3216, FieldType.INT);
|
||||
public static final Field LE_FORMULAS3 = Field.create("LE_FORMULAS3", 3416, FieldType.INT);
|
||||
|
|
Loading…
Reference in New Issue