This commit is contained in:
parent
f5d23b1f50
commit
cae82c1062
|
@ -21,6 +21,7 @@
|
|||
#define WARMUP_TARGET_AFR_SIZE 4
|
||||
#define MAP_ANGLE_SIZE 8
|
||||
#define MAP_WINDOW_SIZE 8
|
||||
#define NARROW_BAND_WIDE_BAND_CONVERSION_SIZE 8
|
||||
#define CLT_CURVE_SIZE 16
|
||||
#define ENGINE_NOISE_CURVE_SIZE 8
|
||||
#define CLT_TIMING_CURVE_SIZE 8
|
||||
|
|
|
@ -48,6 +48,8 @@ struct_no_prefix engine_configuration_s
|
|||
#define MAP_ANGLE_SIZE 8
|
||||
#define MAP_WINDOW_SIZE 8
|
||||
|
||||
#define NARROW_BAND_WIDE_BAND_CONVERSION_SIZE 8
|
||||
|
||||
#define CLT_CURVE_SIZE 16
|
||||
#define ENGINE_NOISE_CURVE_SIZE 8
|
||||
#define CLT_TIMING_CURVE_SIZE 8
|
||||
|
@ -789,7 +791,7 @@ float[MAP_ACCEL_TAPER] mapAccelTaperMult;;"mult", 1, 0, 0.0, 300,
|
|||
float autoTuneCltThreshold;
|
||||
float autoTuneTpsRocThreshold;
|
||||
float autoTuneTpsQuietPeriod;
|
||||
float postCrankingTargetClt;;"Ñ", 1, 0, 0, 100, 0
|
||||
float postCrankingTargetClt;;"C", 1, 0, 0, 100, 0
|
||||
float postCrankingFactor;;"mult", 1, 0, 0, 100, 4
|
||||
float postCrankingDurationSec;;"seconds", 1, 0, 0, 100, 2
|
||||
ThermistorConf auxTempSensor1;todo: finish implementation #332
|
||||
|
|
|
@ -63,7 +63,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 Mon Oct 16 14:44:28 EDT 2017
|
||||
; this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Oct 29 15:48:05 EDT 2017
|
||||
|
||||
pageSize = 16376
|
||||
page = 1
|
||||
|
@ -648,7 +648,7 @@ page = 1
|
|||
;skipping autoTuneCltThreshold offset 2644
|
||||
;skipping autoTuneTpsRocThreshold offset 2648
|
||||
;skipping autoTuneTpsQuietPeriod offset 2652
|
||||
postCrankingTargetClt = scalar, F32, 2656, "Ñ", 1, 0, 0, 100, 0
|
||||
postCrankingTargetClt = scalar, F32, 2656, "C", 1, 0, 0, 100, 0
|
||||
postCrankingFactor = scalar, F32, 2660, "mult", 1, 0, 0, 100, 4
|
||||
postCrankingDurationSec = scalar, F32, 2664, "seconds", 1, 0, 0, 100, 2
|
||||
auxTempSensor1_tempC_1 = scalar, F32, 2668, "*C", 1, 0, -40, 200, 1
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config;
|
||||
|
||||
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon Oct 16 14:44:28 EDT 2017
|
||||
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Oct 29 15:48:05 EDT 2017
|
||||
public class Fields {
|
||||
public static final int LE_COMMAND_LENGTH = 200;
|
||||
public static final int BLOCKING_FACTOR = 400;
|
||||
|
@ -10,6 +10,7 @@ public class Fields {
|
|||
public static final int WARMUP_TARGET_AFR_SIZE = 4;
|
||||
public static final int MAP_ANGLE_SIZE = 8;
|
||||
public static final int MAP_WINDOW_SIZE = 8;
|
||||
public static final int NARROW_BAND_WIDE_BAND_CONVERSION_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;
|
||||
|
|
Loading…
Reference in New Issue