diff --git a/firmware/controllers/algo/rusefi_generated.h b/firmware/controllers/algo/rusefi_generated.h index e7f9d6bcfd..0e2e390314 100644 --- a/firmware/controllers/algo/rusefi_generated.h +++ b/firmware/controllers/algo/rusefi_generated.h @@ -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 diff --git a/firmware/integration/rusefi_config.txt b/firmware/integration/rusefi_config.txt index 07c2d33793..59708db981 100644 --- a/firmware/integration/rusefi_config.txt +++ b/firmware/integration/rusefi_config.txt @@ -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 diff --git a/firmware/tunerstudio/rusefi.ini b/firmware/tunerstudio/rusefi.ini index e41636a2a1..5ef4ca7b6e 100644 --- a/firmware/tunerstudio/rusefi.ini +++ b/firmware/tunerstudio/rusefi.ini @@ -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 diff --git a/java_console/models/src/com/rusefi/config/Fields.java b/java_console/models/src/com/rusefi/config/Fields.java index 989b0d60a0..33495cb02d 100644 --- a/java_console/models/src/com/rusefi/config/Fields.java +++ b/java_console/models/src/com/rusefi/config/Fields.java @@ -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;