enable verbose_etb
This commit is contained in:
parent
2cc3946169
commit
faafbead72
|
@ -1,4 +1,4 @@
|
||||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon May 29 22:21:18 EDT 2017
|
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon May 29 23:12:19 EDT 2017
|
||||||
// begin
|
// begin
|
||||||
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
|
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
|
||||||
#define ENGINE_CONFIGURATION_GENERATED_H_
|
#define ENGINE_CONFIGURATION_GENERATED_H_
|
||||||
|
@ -1204,6 +1204,7 @@ typedef struct {
|
||||||
offset 1488 bit 2 */
|
offset 1488 bit 2 */
|
||||||
bool isVerboseIAC : 1;
|
bool isVerboseIAC : 1;
|
||||||
/**
|
/**
|
||||||
|
* enable verbose_etb
|
||||||
offset 1488 bit 3 */
|
offset 1488 bit 3 */
|
||||||
bool isVerboseETB : 1;
|
bool isVerboseETB : 1;
|
||||||
/**
|
/**
|
||||||
|
@ -2112,4 +2113,4 @@ typedef struct {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// end
|
// end
|
||||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon May 29 22:21:18 EDT 2017
|
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon May 29 23:12:19 EDT 2017
|
||||||
|
|
|
@ -882,6 +882,8 @@ static void enableOrDisable(const char *param, bool isEnabled) {
|
||||||
incrementGlobalConfigurationVersion(PASS_ENGINE_PARAMETER_SIGNATURE);
|
incrementGlobalConfigurationVersion(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||||
} else if (strEqualCaseInsensitive(param, "HIP9011")) {
|
} else if (strEqualCaseInsensitive(param, "HIP9011")) {
|
||||||
boardConfiguration->isHip9011Enabled = isEnabled;
|
boardConfiguration->isHip9011Enabled = isEnabled;
|
||||||
|
} else if (strEqualCaseInsensitive(param, "verbose_etb")) {
|
||||||
|
engineConfiguration->isVerboseETB = isEnabled;
|
||||||
} else if (strEqualCaseInsensitive(param, "verbose_idle")) {
|
} else if (strEqualCaseInsensitive(param, "verbose_idle")) {
|
||||||
engineConfiguration->isVerboseIAC = isEnabled;
|
engineConfiguration->isVerboseIAC = isEnabled;
|
||||||
} else if (strEqualCaseInsensitive(param, "auxdebug1")) {
|
} else if (strEqualCaseInsensitive(param, "auxdebug1")) {
|
||||||
|
|
|
@ -589,7 +589,7 @@ board_configuration_s bc;
|
||||||
bit vvtDisplayInverted
|
bit vvtDisplayInverted
|
||||||
bit fuelClosedLoopCorrectionEnabled
|
bit fuelClosedLoopCorrectionEnabled
|
||||||
bit isVerboseIAC
|
bit isVerboseIAC
|
||||||
bit isVerboseETB
|
bit isVerboseETB;enable verbose_etb
|
||||||
bit useConstantDwellDuringCranking
|
bit useConstantDwellDuringCranking
|
||||||
bit isEngineChartEnabled;This options enables data for 'engine sniffer' tab in console, which comes at some CPU price
|
bit isEngineChartEnabled;This options enables data for 'engine sniffer' tab in console, which comes at some CPU price
|
||||||
bit silentTriggerError
|
bit silentTriggerError
|
||||||
|
|
Loading…
Reference in New Issue