mirror of https://github.com/rusefi/fw-example.git
parent
05e942e45c
commit
b84812c4bd
|
@ -5368,17 +5368,17 @@ struct persistent_config_s {
|
|||
* units: deg
|
||||
* offset 14648
|
||||
*/
|
||||
int16_t injectionPhase[FUEL_LOAD_COUNT][FUEL_RPM_COUNT];
|
||||
int16_t injectionPhase[INJ_PHASE_LOAD_COUNT][INJ_PHASE_RPM_COUNT];
|
||||
/**
|
||||
* units: Load
|
||||
* offset 15160
|
||||
*/
|
||||
uint16_t injPhaseLoadBins[FUEL_LOAD_COUNT];
|
||||
uint16_t injPhaseLoadBins[INJ_PHASE_LOAD_COUNT];
|
||||
/**
|
||||
* units: RPM
|
||||
* offset 15192
|
||||
*/
|
||||
uint16_t injPhaseRpmBins[FUEL_RPM_COUNT];
|
||||
uint16_t injPhaseRpmBins[INJ_PHASE_RPM_COUNT];
|
||||
/**
|
||||
* units: onoff
|
||||
* offset 15224
|
||||
|
|
|
@ -1112,6 +1112,8 @@
|
|||
#define INDICATOR_NAME_BRAKE_DOWN "Brake switch"
|
||||
#define INDICATOR_NAME_CLUTCH_DOWN "Clutch: down"
|
||||
#define INDICATOR_NAME_CLUTCH_UP "Clutch: up"
|
||||
#define INJ_PHASE_LOAD_COUNT 16
|
||||
#define INJ_PHASE_RPM_COUNT 16
|
||||
#define INJ_STAGING_COUNT 6
|
||||
#define injection_mode_e_auto_enum 0="IM_SIMULTANEOUS",2="IM_BATCH",1="IM_SEQUENTIAL",3="IM_SINGLE_POINT"
|
||||
#define injection_mode_e_IM_BATCH 2
|
||||
|
@ -1328,7 +1330,7 @@
|
|||
#define SentInput_NONE 0
|
||||
#define show_tcu_gauges false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1531275378
|
||||
#define SIGNATURE_HASH 1233756177
|
||||
#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_SUFFIX ".bin"
|
||||
|
@ -1789,7 +1791,7 @@
|
|||
#define ts_show_wastegate_sensor true
|
||||
#define ts_show_wbo_canbus_index true
|
||||
#define ts_show_wbo_canbus_set_index true
|
||||
#define TS_SIGNATURE "rusEFI main.2024.12.09.XYZ.1531275378"
|
||||
#define TS_SIGNATURE "rusEFI main.2024.12.10.XYZ.1233756177"
|
||||
#define TS_SIMULATE_CAN '>'
|
||||
#define TS_SIMULATE_CAN_char >
|
||||
#define TS_SINGLE_WRITE_COMMAND 'W'
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH 1531275378
|
||||
#define TS_SIGNATURE "rusEFI main.2024.12.09.XYZ.1531275378"
|
||||
#define SIGNATURE_HASH 1233756177
|
||||
#define TS_SIGNATURE "rusEFI main.2024.12.10.XYZ.1233756177"
|
||||
|
|
|
@ -38,12 +38,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI main.2024.12.09.XYZ.1531275378"
|
||||
signature = "rusEFI main.2024.12.10.XYZ.1233756177"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI main.2024.12.09.XYZ.1531275378" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI main.2024.12.10.XYZ.1233756177" ; 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
|
||||
useLegacyFTempUnits = false
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
! Generated by gen_signature.sh
|
||||
! SIGNATURE_HASH is a built-in variable generated by config_definition-all.jar
|
||||
! gen_signature.sh Using env variable branch [main]
|
||||
#define TS_SIGNATURE "rusEFI main.2024.12.09.XYZ.@@SIGNATURE_HASH@@"
|
||||
#define TS_SIGNATURE "rusEFI main.2024.12.10.XYZ.@@SIGNATURE_HASH@@"
|
||||
|
|
Loading…
Reference in New Issue