auto-sync
This commit is contained in:
parent
dbb8de8b55
commit
385a2b42db
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Oct 11 20:15:08 EDT 2016
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Oct 11 21:20:18 EDT 2016
|
||||
// begin
|
||||
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
|
||||
#define ENGINE_CONFIGURATION_GENERATED_H_
|
||||
|
@ -1742,9 +1742,18 @@ typedef struct {
|
|||
*/
|
||||
bi_quard_s biQuad;
|
||||
/**
|
||||
* CLT-based timing correction
|
||||
* offset 2576
|
||||
*/
|
||||
int unused[118];
|
||||
float cltTimingBins[CLT_TIMING_CURVE_SIZE];
|
||||
/**
|
||||
* offset 2608
|
||||
*/
|
||||
float cltTimingExtra[CLT_TIMING_CURVE_SIZE];
|
||||
/**
|
||||
* offset 2640
|
||||
*/
|
||||
int unused[102];
|
||||
/** total size 3048*/
|
||||
} engine_configuration_s;
|
||||
|
||||
|
@ -1959,4 +1968,4 @@ typedef struct {
|
|||
|
||||
#endif
|
||||
// end
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Oct 11 20:15:08 EDT 2016
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Oct 11 21:20:18 EDT 2016
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#define MAP_WINDOW_SIZE 8
|
||||
#define CLT_CURVE_SIZE 16
|
||||
#define ENGINE_NOISE_CURVE_SIZE 8
|
||||
#define CLT_TIMING_CURVE_SIZE 8
|
||||
#define IAT_CURVE_SIZE 16
|
||||
#define VBAT_INJECTOR_CURVE_SIZE 8
|
||||
#define DWELL_CURVE_SIZE 8
|
||||
|
@ -883,7 +884,9 @@
|
|||
#define biQuad_a2_offset 2564
|
||||
#define biQuad_b1_offset 2568
|
||||
#define biQuad_b2_offset 2572
|
||||
#define unused_offset 2576
|
||||
#define cltTimingBins_offset 2576
|
||||
#define cltTimingExtra_offset 2608
|
||||
#define unused_offset 2640
|
||||
#define le_formulas1_offset 3048
|
||||
#define le_formulas2_offset 3248
|
||||
#define le_formulas3_offset 3448
|
||||
|
|
|
@ -43,6 +43,7 @@ struct_no_prefix engine_configuration_s
|
|||
|
||||
#define CLT_CURVE_SIZE 16
|
||||
#define ENGINE_NOISE_CURVE_SIZE 8
|
||||
#define CLT_TIMING_CURVE_SIZE 8
|
||||
|
||||
#define IAT_CURVE_SIZE 16
|
||||
|
||||
|
@ -745,7 +746,9 @@ float[MAP_ACCEL_TAPER] mapAccelTaperMult;;"mult", 1, 0, 0.0, 300,
|
|||
pid_s[AUX_PID_COUNT iterate] auxPid;
|
||||
vvt_mode_e vvtMode;
|
||||
bi_quard_s biQuad;
|
||||
int[118] unused;
|
||||
float[CLT_TIMING_CURVE_SIZE] cltTimingBins;CLT-based timing correction;"C", 1, 0, -100.0, 250.0, 1
|
||||
float[CLT_TIMING_CURVE_SIZE] cltTimingExtra;;"degree", 1, 0, -400.0, 400.0, 0
|
||||
int[102] unused;
|
||||
|
||||
|
||||
end_struct
|
||||
|
|
|
@ -42,7 +42,7 @@ enable2ndByteCanID = false
|
|||
|
||||
; see PAGE_0_SIZE in C source code
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Oct 11 20:15:08 EDT 2016
|
||||
; this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Oct 11 21:20:18 EDT 2016
|
||||
|
||||
pageSize = 16376
|
||||
page = 1
|
||||
|
@ -615,7 +615,9 @@ page = 1
|
|||
biQuad_a2 = scalar, F32, 2564, "v", 1, 0, -1000, 1000, 9
|
||||
biQuad_b1 = scalar, F32, 2568, "v", 1, 0, -1000, 1000, 9
|
||||
biQuad_b2 = scalar, F32, 2572, "v", 1, 0, -1000, 1000, 9
|
||||
;skipping unused offset 2576
|
||||
cltTimingBins = array, F32, 2576, [8], "C", 1, 0, -100.0, 250.0, 1
|
||||
cltTimingExtra = array, F32, 2608, [8], "degree", 1, 0, -400.0, 400.0, 0
|
||||
;skipping unused offset 2640
|
||||
le_formulas1 = array, U08, 3048, [200],"char", 1, 0, 0.0, 3.0, 2
|
||||
le_formulas2 = array, U08, 3248, [200],"char", 1, 0, 0.0, 3.0, 2
|
||||
le_formulas3 = array, U08, 3448, [200],"char", 1, 0, 0.0, 3.0, 2
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config;
|
||||
|
||||
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Oct 02 13:12:05 EDT 2016
|
||||
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Tue Oct 11 21:20:18 EDT 2016
|
||||
public class Fields {
|
||||
public static final int LE_COMMAND_LENGTH = 200;
|
||||
public static final int FSIO_ADC_COUNT = 4;
|
||||
|
@ -10,6 +10,7 @@ public class Fields {
|
|||
public static final int MAP_WINDOW_SIZE = 8;
|
||||
public static final int CLT_CURVE_SIZE = 16;
|
||||
public static final int ENGINE_NOISE_CURVE_SIZE = 8;
|
||||
public static final int CLT_TIMING_CURVE_SIZE = 8;
|
||||
public static final int IAT_CURVE_SIZE = 16;
|
||||
public static final int VBAT_INJECTOR_CURVE_SIZE = 8;
|
||||
public static final int DWELL_CURVE_SIZE = 8;
|
||||
|
@ -887,7 +888,9 @@ public class Fields {
|
|||
public static final int biQuad_a2_offset = 2564;
|
||||
public static final int biQuad_b1_offset = 2568;
|
||||
public static final int biQuad_b2_offset = 2572;
|
||||
public static final int unused_offset = 2576;
|
||||
public static final int cltTimingBins_offset = 2576;
|
||||
public static final int cltTimingExtra_offset = 2608;
|
||||
public static final int unused_offset = 2640;
|
||||
public static final int le_formulas1_offset = 3048;
|
||||
public static final int le_formulas2_offset = 3248;
|
||||
public static final int le_formulas3_offset = 3448;
|
||||
|
|
Loading…
Reference in New Issue