diff --git a/firmware/config/boards/hellen/cypress/config/controllers/algo/rusefi_generated.h b/firmware/config/boards/hellen/cypress/config/controllers/algo/rusefi_generated.h index fd2953211b..9ce1d253b0 100644 --- a/firmware/config/boards/hellen/cypress/config/controllers/algo/rusefi_generated.h +++ b/firmware/config/boards/hellen/cypress/config/controllers/algo/rusefi_generated.h @@ -2430,6 +2430,8 @@ #define TsCalMode_EtbKi 4 #define TsCalMode_EtbKp 3 #define TsCalMode_None 0 +#define TsCalMode_PedalMax 13 +#define TsCalMode_PedalMin 12 #define TsCalMode_Tps1Max 1 #define TsCalMode_Tps1Min 2 #define TsCalMode_Tps1SecondaryMax 6 diff --git a/firmware/config/boards/kinetis/config/controllers/algo/rusefi_generated.h b/firmware/config/boards/kinetis/config/controllers/algo/rusefi_generated.h index f27a0fcdcb..04fe633cbe 100644 --- a/firmware/config/boards/kinetis/config/controllers/algo/rusefi_generated.h +++ b/firmware/config/boards/kinetis/config/controllers/algo/rusefi_generated.h @@ -2415,6 +2415,8 @@ #define TsCalMode_EtbKi 4 #define TsCalMode_EtbKp 3 #define TsCalMode_None 0 +#define TsCalMode_PedalMax 13 +#define TsCalMode_PedalMin 12 #define TsCalMode_Tps1Max 1 #define TsCalMode_Tps1Min 2 #define TsCalMode_Tps1SecondaryMax 6 diff --git a/firmware/config/boards/subaru_eg33/config/controllers/algo/rusefi_generated.h b/firmware/config/boards/subaru_eg33/config/controllers/algo/rusefi_generated.h index 732afca7c9..934c7014d7 100644 --- a/firmware/config/boards/subaru_eg33/config/controllers/algo/rusefi_generated.h +++ b/firmware/config/boards/subaru_eg33/config/controllers/algo/rusefi_generated.h @@ -2443,6 +2443,8 @@ #define TsCalMode_EtbKi 4 #define TsCalMode_EtbKp 3 #define TsCalMode_None 0 +#define TsCalMode_PedalMax 13 +#define TsCalMode_PedalMin 12 #define TsCalMode_Tps1Max 1 #define TsCalMode_Tps1Min 2 #define TsCalMode_Tps1SecondaryMax 6 diff --git a/firmware/controllers/algo/auto_generated_commonenum.cpp b/firmware/controllers/algo/auto_generated_commonenum.cpp index cc2d042c63..23f40d580b 100644 --- a/firmware/controllers/algo/auto_generated_commonenum.cpp +++ b/firmware/controllers/algo/auto_generated_commonenum.cpp @@ -1,6 +1,6 @@ #include "global.h" #include "rusefi_enums.h" -// was generated automatically by rusEFI tool from rusefi_enums.h // by enum2string.jar tool on Thu Jan 27 22:57:18 UTC 2022 +// was generated automatically by rusEFI tool from rusefi_enums.h // by enum2string.jar tool on Thu Jan 27 23:42:26 UTC 2022 // see also gen_config_and_enums.bat @@ -54,6 +54,10 @@ case TsCalMode::EtbKp: return "EtbKp"; case TsCalMode::None: return "None"; +case TsCalMode::PedalMax: + return "PedalMax"; +case TsCalMode::PedalMin: + return "PedalMin"; case TsCalMode::Tps1Max: return "Tps1Max"; case TsCalMode::Tps1Min: diff --git a/firmware/controllers/generated/rusefi_generated.h b/firmware/controllers/generated/rusefi_generated.h index 9c0ca18fed..c22739a8fb 100644 --- a/firmware/controllers/generated/rusefi_generated.h +++ b/firmware/controllers/generated/rusefi_generated.h @@ -2430,6 +2430,8 @@ #define TsCalMode_EtbKi 4 #define TsCalMode_EtbKp 3 #define TsCalMode_None 0 +#define TsCalMode_PedalMax 13 +#define TsCalMode_PedalMin 12 #define TsCalMode_Tps1Max 1 #define TsCalMode_Tps1Min 2 #define TsCalMode_Tps1SecondaryMax 6 diff --git a/java_console/models/src/main/java/com/rusefi/config/generated/Fields.java b/java_console/models/src/main/java/com/rusefi/config/generated/Fields.java index 05c4d1bac1..31e569e321 100644 --- a/java_console/models/src/main/java/com/rusefi/config/generated/Fields.java +++ b/java_console/models/src/main/java/com/rusefi/config/generated/Fields.java @@ -1,6 +1,6 @@ package com.rusefi.config.generated; -// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) integration/rusefi_config.txt Thu Jan 27 22:58:12 UTC 2022 +// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) integration/rusefi_config.txt Thu Jan 27 23:43:13 UTC 2022 // by class com.rusefi.output.FileJavaFieldsConsumer import com.rusefi.config.*; @@ -2300,6 +2300,8 @@ public class Fields { public static final int TsCalMode_EtbKi = 4; public static final int TsCalMode_EtbKp = 3; public static final int TsCalMode_None = 0; + public static final int TsCalMode_PedalMax = 13; + public static final int TsCalMode_PedalMin = 12; public static final int TsCalMode_Tps1Max = 1; public static final int TsCalMode_Tps1Min = 2; public static final int TsCalMode_Tps1SecondaryMax = 6;