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
|
||||
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
|
||||
#define ENGINE_CONFIGURATION_GENERATED_H_
|
||||
|
@ -1204,6 +1204,7 @@ typedef struct {
|
|||
offset 1488 bit 2 */
|
||||
bool isVerboseIAC : 1;
|
||||
/**
|
||||
* enable verbose_etb
|
||||
offset 1488 bit 3 */
|
||||
bool isVerboseETB : 1;
|
||||
/**
|
||||
|
@ -2112,4 +2113,4 @@ typedef struct {
|
|||
|
||||
#endif
|
||||
// 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);
|
||||
} else if (strEqualCaseInsensitive(param, "HIP9011")) {
|
||||
boardConfiguration->isHip9011Enabled = isEnabled;
|
||||
} else if (strEqualCaseInsensitive(param, "verbose_etb")) {
|
||||
engineConfiguration->isVerboseETB = isEnabled;
|
||||
} else if (strEqualCaseInsensitive(param, "verbose_idle")) {
|
||||
engineConfiguration->isVerboseIAC = isEnabled;
|
||||
} else if (strEqualCaseInsensitive(param, "auxdebug1")) {
|
||||
|
|
|
@ -589,7 +589,7 @@ board_configuration_s bc;
|
|||
bit vvtDisplayInverted
|
||||
bit fuelClosedLoopCorrectionEnabled
|
||||
bit isVerboseIAC
|
||||
bit isVerboseETB
|
||||
bit isVerboseETB;enable verbose_etb
|
||||
bit useConstantDwellDuringCranking
|
||||
bit isEngineChartEnabled;This options enables data for 'engine sniffer' tab in console, which comes at some CPU price
|
||||
bit silentTriggerError
|
||||
|
|
Loading…
Reference in New Issue