Custom Auto-generated Configs

[no ci]
This commit is contained in:
GitHub git update Action 2024-12-14 21:13:54 +00:00
parent 37c6c7ba63
commit 2e960e6a0d
5 changed files with 18 additions and 16 deletions

View File

@ -4971,17 +4971,17 @@ struct blend_table_s {
/** /**
* offset 0 * offset 0
*/ */
scaled_channel<int16_t, 10, 1> table[8][8]; scaled_channel<int16_t, 10, 1> table[BLEND_TABLE_COUNT][BLEND_TABLE_COUNT];
/** /**
* units: Load * units: Load
* offset 128 * offset 128
*/ */
uint16_t loadBins[8]; uint16_t loadBins[BLEND_TABLE_COUNT];
/** /**
* units: RPM * units: RPM
* offset 144 * offset 144
*/ */
uint16_t rpmBins[8]; uint16_t rpmBins[BLEND_TABLE_COUNT];
/** /**
* offset 160 * offset 160
*/ */
@ -5284,12 +5284,12 @@ struct persistent_config_s {
* units: C * units: C
* offset 13696 * offset 13696
*/ */
float cltFuelCorrBins[CLT_CURVE_SIZE]; float cltFuelCorrBins[CLT_FUEL_CURVE_SIZE];
/** /**
* units: ratio * units: ratio
* offset 13760 * offset 13760
*/ */
float cltFuelCorr[CLT_CURVE_SIZE]; float cltFuelCorr[CLT_FUEL_CURVE_SIZE];
/** /**
* units: C * units: C
* offset 13824 * offset 13824
@ -5354,17 +5354,17 @@ struct persistent_config_s {
* units: deg * units: deg
* offset 14568 * offset 14568
*/ */
scaled_channel<int8_t, 10, 1> ignitionIatCorrTable[8][8]; scaled_channel<int8_t, 10, 1> ignitionIatCorrTable[IAT_IGN_CORR_COUNT][IAT_IGN_CORR_COUNT];
/** /**
* units: C * units: C
* offset 14632 * offset 14632
*/ */
int8_t ignitionIatCorrTempBins[8]; int8_t ignitionIatCorrTempBins[IAT_IGN_CORR_COUNT];
/** /**
* units: Load * units: Load
* offset 14640 * offset 14640
*/ */
scaled_channel<uint8_t, 1, 5> ignitionIatCorrLoadBins[8]; scaled_channel<uint8_t, 1, 5> ignitionIatCorrLoadBins[IAT_IGN_CORR_COUNT];
/** /**
* units: deg * units: deg
* offset 14648 * offset 14648

View File

@ -121,6 +121,7 @@
#define bench_mode_e_HD_ACR2 29 #define bench_mode_e_HD_ACR2 29
#define BENCH_STARTER_DURATION 4000 #define BENCH_STARTER_DURATION 4000
#define BENCH_VVT_DURATION 300 #define BENCH_VVT_DURATION 300
#define BLEND_TABLE_COUNT 8
#define blend_table_s_size 188 #define blend_table_s_size 188
#define BLOCKING_FACTOR 1024 #define BLOCKING_FACTOR 1024
#define BOARD_CONFIG_FROM_FILE #define BOARD_CONFIG_FROM_FILE
@ -204,6 +205,7 @@
#define CanGpioType_NONE 0 #define CanGpioType_NONE 0
#define CLT_CRANKING_CURVE_SIZE 8 #define CLT_CRANKING_CURVE_SIZE 8
#define CLT_CURVE_SIZE 16 #define CLT_CURVE_SIZE 16
#define CLT_FUEL_CURVE_SIZE 16
#define CLT_LIMITER_CURVE_SIZE 4 #define CLT_LIMITER_CURVE_SIZE 4
#define CLT_TIMING_CURVE_SIZE 8 #define CLT_TIMING_CURVE_SIZE 8
#define CLT_UPPER_LIMIT 250 #define CLT_UPPER_LIMIT 250
@ -1080,6 +1082,7 @@
#define HPFP_TARGET_SIZE 10 #define HPFP_TARGET_SIZE 10
#define IAC_PID_MULT_SIZE 8 #define IAC_PID_MULT_SIZE 8
#define IAT_CURVE_SIZE 16 #define IAT_CURVE_SIZE 16
#define IAT_IGN_CORR_COUNT 8
#define IDLE_ADVANCE_CURVE_SIZE 8 #define IDLE_ADVANCE_CURVE_SIZE 8
#define idle_hardware_s_size 12 #define idle_hardware_s_size 12
#define idle_mode_e_auto_enum 0="IM_AUTO",1="IM_MANUAL" #define idle_mode_e_auto_enum 0="IM_AUTO",1="IM_MANUAL"
@ -1332,7 +1335,7 @@
#define SentInput_NONE 0 #define SentInput_NONE 0
#define show_tcu_gauges false #define show_tcu_gauges false
#define show_vvt_output_pin true #define show_vvt_output_pin true
#define SIGNATURE_HASH 452010027 #define SIGNATURE_HASH 2433891682
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin" #define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image" #define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin" #define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1795,7 +1798,7 @@
#define ts_show_wastegate_sensor true #define ts_show_wastegate_sensor true
#define ts_show_wbo_canbus_index true #define ts_show_wbo_canbus_index true
#define ts_show_wbo_canbus_set_index true #define ts_show_wbo_canbus_set_index true
#define TS_SIGNATURE "rusEFI master.2024.12.13.paralela.452010027" #define TS_SIGNATURE "rusEFI master.2024.12.14.paralela.2433891682"
#define TS_SIMULATE_CAN '>' #define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char > #define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W' #define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer // was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
// //
#define SIGNATURE_HASH 452010027 #define SIGNATURE_HASH 2433891682
#define TS_SIGNATURE "rusEFI master.2024.12.13.paralela.452010027" #define TS_SIGNATURE "rusEFI master.2024.12.14.paralela.2433891682"

View File

@ -38,12 +38,12 @@ enable2ndByteCanID = false
[MegaTune] [MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201 ; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI master.2024.12.13.paralela.452010027" signature = "rusEFI master.2024.12.14.paralela.2433891682"
[TunerStudio] [TunerStudio]
queryCommand = "S" queryCommand = "S"
versionInfo = "V" ; firmware version for title bar. versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI master.2024.12.13.paralela.452010027" ; signature is expected to be 7 or more characters. signature= "rusEFI master.2024.12.14.paralela.2433891682" ; signature is expected to be 7 or more characters.
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C ; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
useLegacyFTempUnits = false useLegacyFTempUnits = false
@ -4891,7 +4891,6 @@ gaugeCategory = Trigger
triggerErrorsCounterGauge = totalTriggerErrorCounter, "Trigger error count", "count", 0, 15000, 0, 0, 10, 300, 0, 0 triggerErrorsCounterGauge = totalTriggerErrorCounter, "Trigger error count", "count", 0, 15000, 0, 0, 10, 300, 0, 0
triggerSyncGapRatioGauge = triggerSyncGapRatio0,"triggerSyncGapRatio", "", -10000,10000, -10000,-10000, 10000,10000, 3,3 triggerSyncGapRatioGauge = triggerSyncGapRatio0,"triggerSyncGapRatio", "", -10000,10000, -10000,-10000, 10000,10000, 3,3
triggerStateIndexGauge = triggerStateIndex0,"triggerStateIndex", "", -10000,10000, -10000,-10000, 10000,10000, 3,3 triggerStateIndexGauge = triggerStateIndex0,"triggerStateIndex", "", -10000,10000, -10000,-10000, 10000,10000, 3,3
vvtStateIndexGauge = vvtStateIndex0,"vvtStateIndex", "", -10000,10000, -10000,-10000, 10000,10000, 3,3
triggerPrimaryFallCounterGauge = triggerPrimaryFall,"triggerPrimaryFall", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3 triggerPrimaryFallCounterGauge = triggerPrimaryFall,"triggerPrimaryFall", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3
triggerPrimaryRiseCounterGauge = triggerPrimaryRise,"triggerPrimaryRise", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3 triggerPrimaryRiseCounterGauge = triggerPrimaryRise,"triggerPrimaryRise", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3
triggerSecondaryFallCounterGauge = triggerSecondaryFall,"triggerSecondaryFall", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3 triggerSecondaryFallCounterGauge = triggerSecondaryFall,"triggerSecondaryFall", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3

View File

@ -1,4 +1,4 @@
! Generated by gen_signature.sh ! Generated by gen_signature.sh
! SIGNATURE_HASH is a built-in variable generated by config_definition-all.jar ! SIGNATURE_HASH is a built-in variable generated by config_definition-all.jar
! gen_signature.sh Using env variable branch [master] ! gen_signature.sh Using env variable branch [master]
#define TS_SIGNATURE "rusEFI master.2024.12.13.paralela.@@SIGNATURE_HASH@@" #define TS_SIGNATURE "rusEFI master.2024.12.14.paralela.@@SIGNATURE_HASH@@"