verboseVVTDecoding
This commit is contained in:
parent
93c98f34cc
commit
4322f78591
|
@ -19,7 +19,5 @@ void setVwPassatB6(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
|
|||
engineConfiguration->trigger.type = TT_TOOTHED_WHEEL_60_2;
|
||||
engineConfiguration->vvtMode = VVT_BOSCH_QUICK_START;
|
||||
|
||||
|
||||
engineConfiguration->verboseVVTDecoding = true;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -326,5 +326,5 @@ bool VvtTriggerConfiguration::isSilentTriggerError() const {
|
|||
}
|
||||
|
||||
bool VvtTriggerConfiguration::isVerboseTriggerSynchDetails() const {
|
||||
return engine->engineConfigurationPtr->verboseTriggerSynchDetails;
|
||||
return engine->engineConfigurationPtr->verboseVVTDecoding;
|
||||
}
|
||||
|
|
|
@ -893,6 +893,8 @@ static void enableOrDisable(const char *param, bool isEnabled) {
|
|||
engineConfiguration->isInjectionEnabled = isEnabled;
|
||||
} else if (strEqualCaseInsensitive(param, "trigger_details")) {
|
||||
engineConfiguration->verboseTriggerSynchDetails = isEnabled;
|
||||
} else if (strEqualCaseInsensitive(param, "vvt_details")) {
|
||||
engineConfiguration->verboseVVTDecoding = isEnabled;
|
||||
} else if (strEqualCaseInsensitive(param, CMD_IGNITION)) {
|
||||
engineConfiguration->isIgnitionEnabled = isEnabled;
|
||||
} else if (strEqualCaseInsensitive(param, CMD_SELF_STIMULATION)) {
|
||||
|
|
|
@ -1595,7 +1595,7 @@ cmd_set_engine_type_default = "@@TS_IO_TEST_COMMAND_char@@\x00\x31\x00\x00"
|
|||
field = "VVT mode", vvtMode, {trigger_type != 80}
|
||||
field = "VVT use rise front", vvtCamSensorUseRise, {trigger_type != 80}
|
||||
field = "VVT position display offset", vvtOffset
|
||||
field = "print verbose sync details to console",verboseTriggerSynchDetails
|
||||
field = "print verbose VVT sync details to console",verboseVVTDecoding
|
||||
field = "Do not print messages in case of sync error", silentTriggerError
|
||||
field = "Enable noise filtering", useNoiselessTriggerDecoder, {trigger_type == @@TRIGGER_TYPE_60_2@@ || trigger_type == @@TRIGGER_TYPE_36_1@@}
|
||||
|
||||
|
|
Loading…
Reference in New Issue