Merge remote-tracking branch 'origin/master' into master

This commit is contained in:
rusefillc 2020-12-05 01:03:58 -05:00
commit 2fb3767ae7
25 changed files with 97 additions and 72 deletions

View File

@ -78,6 +78,7 @@ typedef struct {
unsigned int isPedalError : 1; // bit 26
unsigned int isKnockChipOk : 1; // bit 27
unsigned int launchTriggered : 1; // bit 28
unsigned int isTps2Error : 1; // bit 29
// RPM, vss
scaled_channel<uint16_t> rpm; // 4

View File

@ -491,6 +491,8 @@ void updateTunerStudioState(TunerStudioOutputChannels *tsOutputChannels DECLARE_
SensorResult tps2 = Sensor::get(SensorType::Tps2);
tsOutputChannels->throttle2Position = tps2.Value;
// If we don't have a TPS2 at all, don't turn on the failure light
tsOutputChannels->isTps2Error = !tps2.Valid && Sensor::hasSensor(SensorType::Tps2);
SensorResult pedal = Sensor::get(SensorType::AcceleratorPedal);
tsOutputChannels->pedalPosition = pedal.Value;

View File

@ -3,6 +3,6 @@
//
#define SIGNATURE_BOARD all
#define SIGNATURE_DATE 2020.12.04
#define SIGNATURE_HASH 768848914
#define TS_SIGNATURE "rusEFI 2020.12.04.all.768848914"
#define SIGNATURE_DATE 2020.12.05
#define SIGNATURE_HASH 8640608
#define TS_SIGNATURE "rusEFI 2020.12.05.all.8640608"

View File

@ -3,6 +3,6 @@
//
#define SIGNATURE_BOARD frankenso_na6
#define SIGNATURE_DATE 2020.12.04
#define SIGNATURE_HASH 3148023273
#define TS_SIGNATURE "rusEFI 2020.12.04.frankenso_na6.3148023273"
#define SIGNATURE_DATE 2020.12.05
#define SIGNATURE_HASH 2532534683
#define TS_SIGNATURE "rusEFI 2020.12.05.frankenso_na6.2532534683"

View File

@ -3,6 +3,6 @@
//
#define SIGNATURE_BOARD hellen_cypress
#define SIGNATURE_DATE 2020.12.04
#define SIGNATURE_HASH 3827438289
#define TS_SIGNATURE "rusEFI 2020.12.04.hellen_cypress.3827438289"
#define SIGNATURE_DATE 2020.12.05
#define SIGNATURE_HASH 3379723939
#define TS_SIGNATURE "rusEFI 2020.12.05.hellen_cypress.3379723939"

View File

@ -3,6 +3,6 @@
//
#define SIGNATURE_BOARD kin
#define SIGNATURE_DATE 2020.12.04
#define SIGNATURE_HASH 3040749611
#define TS_SIGNATURE "rusEFI 2020.12.04.kin.3040749611"
#define SIGNATURE_DATE 2020.12.05
#define SIGNATURE_HASH 2557363289
#define TS_SIGNATURE "rusEFI 2020.12.05.kin.2557363289"

View File

@ -3,6 +3,6 @@
//
#define SIGNATURE_BOARD mre_f4
#define SIGNATURE_DATE 2020.12.04
#define SIGNATURE_HASH 973302379
#define TS_SIGNATURE "rusEFI 2020.12.04.mre_f4.973302379"
#define SIGNATURE_DATE 2020.12.05
#define SIGNATURE_HASH 391317017
#define TS_SIGNATURE "rusEFI 2020.12.05.mre_f4.391317017"

View File

@ -3,6 +3,6 @@
//
#define SIGNATURE_BOARD mre_f7
#define SIGNATURE_DATE 2020.12.04
#define SIGNATURE_HASH 973302379
#define TS_SIGNATURE "rusEFI 2020.12.04.mre_f7.973302379"
#define SIGNATURE_DATE 2020.12.05
#define SIGNATURE_HASH 391317017
#define TS_SIGNATURE "rusEFI 2020.12.05.mre_f7.391317017"

View File

@ -3,6 +3,6 @@
//
#define SIGNATURE_BOARD prometheus_405
#define SIGNATURE_DATE 2020.12.04
#define SIGNATURE_HASH 1863037507
#define TS_SIGNATURE "rusEFI 2020.12.04.prometheus_405.1863037507"
#define SIGNATURE_DATE 2020.12.05
#define SIGNATURE_HASH 1113316913
#define TS_SIGNATURE "rusEFI 2020.12.05.prometheus_405.1113316913"

View File

@ -3,6 +3,6 @@
//
#define SIGNATURE_BOARD prometheus_469
#define SIGNATURE_DATE 2020.12.04
#define SIGNATURE_HASH 1863037507
#define TS_SIGNATURE "rusEFI 2020.12.04.prometheus_469.1863037507"
#define SIGNATURE_DATE 2020.12.05
#define SIGNATURE_HASH 1113316913
#define TS_SIGNATURE "rusEFI 2020.12.05.prometheus_469.1113316913"

View File

@ -3,6 +3,6 @@
//
#define SIGNATURE_BOARD proteus_f4
#define SIGNATURE_DATE 2020.12.04
#define SIGNATURE_HASH 3833200332
#define TS_SIGNATURE "rusEFI 2020.12.04.proteus_f4.3833200332"
#define SIGNATURE_DATE 2020.12.05
#define SIGNATURE_HASH 3374944958
#define TS_SIGNATURE "rusEFI 2020.12.05.proteus_f4.3374944958"

View File

@ -3,6 +3,6 @@
//
#define SIGNATURE_BOARD proteus_f7
#define SIGNATURE_DATE 2020.12.04
#define SIGNATURE_HASH 3833200332
#define TS_SIGNATURE "rusEFI 2020.12.04.proteus_f7.3833200332"
#define SIGNATURE_DATE 2020.12.05
#define SIGNATURE_HASH 3374944958
#define TS_SIGNATURE "rusEFI 2020.12.05.proteus_f7.3374944958"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2020.12.04.all.768848914"
signature = "rusEFI 2020.12.05.all.8640608"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmwave version for title bar.
signature = "rusEFI 2020.12.04.all.768848914" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2020.12.05.all.8640608" ; signature is expected to be 7 or more characters.
[Constants]
; new packet serial format with CRC
@ -74,7 +74,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Dec 04 16:38:29 UTC 2020
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Dec 05 05:04:28 UTC 2020
pageSize = 20000
page = 1
@ -1588,6 +1588,7 @@ page = 1
ind_hasFatalError=bits, U32, 0, [24:24], "true", "false";
ind_isWarnNow =bits, U32, 0, [25:25], "true", "false";
ind_pedal_error =bits, U32, 0, [26:26], "true", "false";
isTps2Error = bits, U32, 0, [29:29], "true", "false";
; RPM, vss
RPMValue = scalar, U16, 4, "RPM", 1, 0.00000
@ -2527,6 +2528,7 @@ gaugeCategory = DynoView
; error codes
indicator = { isTpsError}, "tps", "tps error", white, black, red, black
indicator = { isTps2Error}, "tps 2", "tps 2 error", white, black, red, black
indicator = { ind_clt_error}, "clt", "clt error", white, black, red, black
indicator = { ind_iat_error}, "iat", "iat error", white, black, red, black

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2020.12.04.frankenso_na6.3148023273"
signature = "rusEFI 2020.12.05.frankenso_na6.2532534683"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmwave version for title bar.
signature = "rusEFI 2020.12.04.frankenso_na6.3148023273" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2020.12.05.frankenso_na6.2532534683" ; signature is expected to be 7 or more characters.
[Constants]
; new packet serial format with CRC
@ -74,7 +74,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Dec 04 16:38:34 UTC 2020
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Dec 05 05:04:34 UTC 2020
pageSize = 20000
page = 1
@ -1588,6 +1588,7 @@ page = 1
ind_hasFatalError=bits, U32, 0, [24:24], "true", "false";
ind_isWarnNow =bits, U32, 0, [25:25], "true", "false";
ind_pedal_error =bits, U32, 0, [26:26], "true", "false";
isTps2Error = bits, U32, 0, [29:29], "true", "false";
; RPM, vss
RPMValue = scalar, U16, 4, "RPM", 1, 0.00000
@ -2527,6 +2528,7 @@ gaugeCategory = DynoView
; error codes
indicator = { isTpsError}, "tps", "tps error", white, black, red, black
indicator = { isTps2Error}, "tps 2", "tps 2 error", white, black, red, black
indicator = { ind_clt_error}, "clt", "clt error", white, black, red, black
indicator = { ind_iat_error}, "iat", "iat error", white, black, red, black

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2020.12.04.hellen_cypress.3827438289"
signature = "rusEFI 2020.12.05.hellen_cypress.3379723939"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmwave version for title bar.
signature = "rusEFI 2020.12.04.hellen_cypress.3827438289" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2020.12.05.hellen_cypress.3379723939" ; signature is expected to be 7 or more characters.
[Constants]
; new packet serial format with CRC
@ -74,7 +74,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat integration/rusefi_config.txt Fri Dec 04 16:38:43 UTC 2020
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat integration/rusefi_config.txt Sat Dec 05 05:04:45 UTC 2020
pageSize = 20000
page = 1
@ -1588,6 +1588,7 @@ page = 1
ind_hasFatalError=bits, U32, 0, [24:24], "true", "false";
ind_isWarnNow =bits, U32, 0, [25:25], "true", "false";
ind_pedal_error =bits, U32, 0, [26:26], "true", "false";
isTps2Error = bits, U32, 0, [29:29], "true", "false";
; RPM, vss
RPMValue = scalar, U16, 4, "RPM", 1, 0.00000
@ -2527,6 +2528,7 @@ gaugeCategory = DynoView
; error codes
indicator = { isTpsError}, "tps", "tps error", white, black, red, black
indicator = { isTps2Error}, "tps 2", "tps 2 error", white, black, red, black
indicator = { ind_clt_error}, "clt", "clt error", white, black, red, black
indicator = { ind_iat_error}, "iat", "iat error", white, black, red, black

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2020.12.04.kin.3040749611"
signature = "rusEFI 2020.12.05.kin.2557363289"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmwave version for title bar.
signature = "rusEFI 2020.12.04.kin.3040749611" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2020.12.05.kin.2557363289" ; signature is expected to be 7 or more characters.
[Constants]
; new packet serial format with CRC
@ -74,7 +74,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Fri Dec 04 16:38:41 UTC 2020
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Sat Dec 05 05:04:43 UTC 2020
pageSize = 20000
page = 1
@ -1588,6 +1588,7 @@ page = 1
ind_hasFatalError=bits, U32, 0, [24:24], "true", "false";
ind_isWarnNow =bits, U32, 0, [25:25], "true", "false";
ind_pedal_error =bits, U32, 0, [26:26], "true", "false";
isTps2Error = bits, U32, 0, [29:29], "true", "false";
; RPM, vss
RPMValue = scalar, U16, 4, "RPM", 1, 0.00000
@ -2527,6 +2528,7 @@ gaugeCategory = DynoView
; error codes
indicator = { isTpsError}, "tps", "tps error", white, black, red, black
indicator = { isTps2Error}, "tps 2", "tps 2 error", white, black, red, black
indicator = { ind_clt_error}, "clt", "clt error", white, black, red, black
indicator = { ind_iat_error}, "iat", "iat error", white, black, red, black

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2020.12.04.mre_f4.973302379"
signature = "rusEFI 2020.12.05.mre_f4.391317017"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmwave version for title bar.
signature = "rusEFI 2020.12.04.mre_f4.973302379" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2020.12.05.mre_f4.391317017" ; signature is expected to be 7 or more characters.
[Constants]
; new packet serial format with CRC
@ -74,7 +74,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Dec 04 16:38:32 UTC 2020
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Dec 05 05:04:32 UTC 2020
pageSize = 20000
page = 1
@ -1588,6 +1588,7 @@ page = 1
ind_hasFatalError=bits, U32, 0, [24:24], "true", "false";
ind_isWarnNow =bits, U32, 0, [25:25], "true", "false";
ind_pedal_error =bits, U32, 0, [26:26], "true", "false";
isTps2Error = bits, U32, 0, [29:29], "true", "false";
; RPM, vss
RPMValue = scalar, U16, 4, "RPM", 1, 0.00000
@ -2527,6 +2528,7 @@ gaugeCategory = DynoView
; error codes
indicator = { isTpsError}, "tps", "tps error", white, black, red, black
indicator = { isTps2Error}, "tps 2", "tps 2 error", white, black, red, black
indicator = { ind_clt_error}, "clt", "clt error", white, black, red, black
indicator = { ind_iat_error}, "iat", "iat error", white, black, red, black

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2020.12.04.mre_f7.973302379"
signature = "rusEFI 2020.12.05.mre_f7.391317017"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmwave version for title bar.
signature = "rusEFI 2020.12.04.mre_f7.973302379" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2020.12.05.mre_f7.391317017" ; signature is expected to be 7 or more characters.
[Constants]
; new packet serial format with CRC
@ -74,7 +74,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Dec 04 16:38:31 UTC 2020
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Dec 05 05:04:30 UTC 2020
pageSize = 20000
page = 1
@ -1588,6 +1588,7 @@ page = 1
ind_hasFatalError=bits, U32, 0, [24:24], "true", "false";
ind_isWarnNow =bits, U32, 0, [25:25], "true", "false";
ind_pedal_error =bits, U32, 0, [26:26], "true", "false";
isTps2Error = bits, U32, 0, [29:29], "true", "false";
; RPM, vss
RPMValue = scalar, U16, 4, "RPM", 1, 0.00000
@ -2527,6 +2528,7 @@ gaugeCategory = DynoView
; error codes
indicator = { isTpsError}, "tps", "tps error", white, black, red, black
indicator = { isTps2Error}, "tps 2", "tps 2 error", white, black, red, black
indicator = { ind_clt_error}, "clt", "clt error", white, black, red, black
indicator = { ind_iat_error}, "iat", "iat error", white, black, red, black

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2020.12.04.prometheus_405.1863037507"
signature = "rusEFI 2020.12.05.prometheus_405.1113316913"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmwave version for title bar.
signature = "rusEFI 2020.12.04.prometheus_405.1863037507" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2020.12.05.prometheus_405.1113316913" ; signature is expected to be 7 or more characters.
[Constants]
; new packet serial format with CRC
@ -74,7 +74,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Dec 04 16:38:37 UTC 2020
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Dec 05 05:04:38 UTC 2020
pageSize = 20000
page = 1
@ -1588,6 +1588,7 @@ page = 1
ind_hasFatalError=bits, U32, 0, [24:24], "true", "false";
ind_isWarnNow =bits, U32, 0, [25:25], "true", "false";
ind_pedal_error =bits, U32, 0, [26:26], "true", "false";
isTps2Error = bits, U32, 0, [29:29], "true", "false";
; RPM, vss
RPMValue = scalar, U16, 4, "RPM", 1, 0.00000
@ -2527,6 +2528,7 @@ gaugeCategory = DynoView
; error codes
indicator = { isTpsError}, "tps", "tps error", white, black, red, black
indicator = { isTps2Error}, "tps 2", "tps 2 error", white, black, red, black
indicator = { ind_clt_error}, "clt", "clt error", white, black, red, black
indicator = { ind_iat_error}, "iat", "iat error", white, black, red, black

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2020.12.04.prometheus_469.1863037507"
signature = "rusEFI 2020.12.05.prometheus_469.1113316913"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmwave version for title bar.
signature = "rusEFI 2020.12.04.prometheus_469.1863037507" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2020.12.05.prometheus_469.1113316913" ; signature is expected to be 7 or more characters.
[Constants]
; new packet serial format with CRC
@ -74,7 +74,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Dec 04 16:38:35 UTC 2020
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Dec 05 05:04:36 UTC 2020
pageSize = 20000
page = 1
@ -1588,6 +1588,7 @@ page = 1
ind_hasFatalError=bits, U32, 0, [24:24], "true", "false";
ind_isWarnNow =bits, U32, 0, [25:25], "true", "false";
ind_pedal_error =bits, U32, 0, [26:26], "true", "false";
isTps2Error = bits, U32, 0, [29:29], "true", "false";
; RPM, vss
RPMValue = scalar, U16, 4, "RPM", 1, 0.00000
@ -2527,6 +2528,7 @@ gaugeCategory = DynoView
; error codes
indicator = { isTpsError}, "tps", "tps error", white, black, red, black
indicator = { isTps2Error}, "tps 2", "tps 2 error", white, black, red, black
indicator = { ind_clt_error}, "clt", "clt error", white, black, red, black
indicator = { ind_iat_error}, "iat", "iat error", white, black, red, black

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2020.12.04.proteus_f4.3833200332"
signature = "rusEFI 2020.12.05.proteus_f4.3374944958"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmwave version for title bar.
signature = "rusEFI 2020.12.04.proteus_f4.3833200332" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2020.12.05.proteus_f4.3374944958" ; signature is expected to be 7 or more characters.
[Constants]
; new packet serial format with CRC
@ -74,7 +74,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Dec 04 16:38:40 UTC 2020
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Dec 05 05:04:41 UTC 2020
pageSize = 20000
page = 1
@ -1588,6 +1588,7 @@ page = 1
ind_hasFatalError=bits, U32, 0, [24:24], "true", "false";
ind_isWarnNow =bits, U32, 0, [25:25], "true", "false";
ind_pedal_error =bits, U32, 0, [26:26], "true", "false";
isTps2Error = bits, U32, 0, [29:29], "true", "false";
; RPM, vss
RPMValue = scalar, U16, 4, "RPM", 1, 0.00000
@ -2527,6 +2528,7 @@ gaugeCategory = DynoView
; error codes
indicator = { isTpsError}, "tps", "tps error", white, black, red, black
indicator = { isTps2Error}, "tps 2", "tps 2 error", white, black, red, black
indicator = { ind_clt_error}, "clt", "clt error", white, black, red, black
indicator = { ind_iat_error}, "iat", "iat error", white, black, red, black

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2020.12.04.proteus_f7.3833200332"
signature = "rusEFI 2020.12.05.proteus_f7.3374944958"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmwave version for title bar.
signature = "rusEFI 2020.12.04.proteus_f7.3833200332" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2020.12.05.proteus_f7.3374944958" ; signature is expected to be 7 or more characters.
[Constants]
; new packet serial format with CRC
@ -74,7 +74,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Dec 04 16:38:38 UTC 2020
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Sat Dec 05 05:04:39 UTC 2020
pageSize = 20000
page = 1
@ -1588,6 +1588,7 @@ page = 1
ind_hasFatalError=bits, U32, 0, [24:24], "true", "false";
ind_isWarnNow =bits, U32, 0, [25:25], "true", "false";
ind_pedal_error =bits, U32, 0, [26:26], "true", "false";
isTps2Error = bits, U32, 0, [29:29], "true", "false";
; RPM, vss
RPMValue = scalar, U16, 4, "RPM", 1, 0.00000
@ -2527,6 +2528,7 @@ gaugeCategory = DynoView
; error codes
indicator = { isTpsError}, "tps", "tps error", white, black, red, black
indicator = { isTps2Error}, "tps 2", "tps 2 error", white, black, red, black
indicator = { ind_clt_error}, "clt", "clt error", white, black, red, black
indicator = { ind_iat_error}, "iat", "iat error", white, black, red, black

View File

@ -204,6 +204,7 @@ enable2ndByteCanID = false
ind_hasFatalError=bits, U32, 0, [24:24], "true", "false";
ind_isWarnNow =bits, U32, 0, [25:25], "true", "false";
ind_pedal_error =bits, U32, 0, [26:26], "true", "false";
isTps2Error = bits, U32, 0, [29:29], "true", "false";
; RPM, vss
RPMValue = scalar, U16, 4, "RPM", 1, 0.00000
@ -1143,6 +1144,7 @@ gaugeCategory = DynoView
; error codes
indicator = { isTpsError}, "tps", "tps error", white, black, red, black
indicator = { isTps2Error}, "tps 2", "tps 2 error", white, black, red, black
indicator = { ind_clt_error}, "clt", "clt error", white, black, red, black
indicator = { ind_iat_error}, "iat", "iat error", white, black, red, black

View File

@ -186,32 +186,32 @@
<td class='oddrow'><i class="fa fa-check-circle-o fa-2x" aria-hidden="true"></i></td>
</tr>
<tr>
<td class='oddrow'><a href='https://github.com/rusefi/rusefi/wiki/All-Supported-Triggers'>20+ OEM triggers supported</a></td>
<td class='oddrow'><i class="fa fa-check-circle-o fa-2x" aria-hidden="true"></i></td>
<td class='evenrow'><a href='https://github.com/rusefi/rusefi/wiki/All-Supported-Triggers'>20+ OEM triggers supported</a></td>
<td class='evenrow'><i class="fa fa-check-circle-o fa-2x" aria-hidden="true"></i></td>
</tr>
<tr>
<td class='evenrow'>Automatic Transmission Control</td>
<td class='evenrow'><i class="fa fa-circle-o fa-2x" aria-hidden="true"></i></td>
<td class='oddrow'>Automatic Transmission Control</td>
<td class='oddrow'><i class="fa fa-check-circle-o fa-2x" aria-hidden="true" style="color:rgba(0, 0, 0, 0.3);"></i></td>
</tr>
<tr>
<td class='oddrow'><a href='https://github.com/rusefi/rusefi/wiki/GDI-status'>Direct Injection</a></td>
<td class='oddrow'><i class="fa fa-circle-o fa-2x" aria-hidden="true"></i></td>
<td class='evenrow'><a href='https://github.com/rusefi/rusefi/wiki/GDI-status'>Direct Injection</a></td>
<td class='evenrow'><i class="fa fa-check-circle-o fa-2x" aria-hidden="true" style="color:rgba(0, 0, 0, 0.3);"></i></td>
</tr>
<tr>
<td class='evenrow'>Flat Shifting</td>
<td class='evenrow'><i class="fa fa-times fa-2x" aria-hidden="true"></i></td>
</tr>
<tr>
<td class='oddrow'>Rotary Engines</td>
<td class='oddrow'>Flat Shifting</td>
<td class='oddrow'><i class="fa fa-times fa-2x" aria-hidden="true"></i></td>
</tr>
<tr>
<td class='evenrow'>Rotary Engines</td>
<td class='evenrow'><i class="fa fa-times fa-2x" aria-hidden="true"></i></td>
</tr>
</tbody>
</table>
<p>
<div class=glossary>
<i class="fa fa-check-circle-o" aria-hidden="true"></i> Supported
<i class="fa fa-circle-o" aria-hidden="true"></i> In Development
<i class="fa fa-check-circle-o" aria-hidden="true" style="color:rgba(0, 0, 0, 0.3);"></i> In Development
<i class="fa fa-times" aria-hidden="true"></i> Currently not supported
</div>
</p>