This commit is contained in:
Matthew Kennedy 2023-03-06 01:04:00 -08:00
parent d2da4ba2dc
commit e6e16e80b6
4 changed files with 1 additions and 9 deletions

View File

@ -90,11 +90,6 @@ expected<percent_t> VvtController::getClosedLoop(angle_t target, angle_t observa
float retVal = m_pid.getOutput(target, observation);
if (engineConfiguration->isVerboseAuxPid1) {
efiPrintf("aux duty: %.2f/value=%.2f/p=%.2f/i=%.2f/d=%.2f int=%.2f", retVal, observation,
m_pid.getP(), m_pid.getI(), m_pid.getD(), m_pid.getIntegration());
}
#if EFI_TUNER_STUDIO
m_pid.postState(engine->outputChannels.vvtStatus[index]);
#endif /* EFI_TUNER_STUDIO */

View File

@ -454,8 +454,6 @@ static void enableOrDisable(const char *param, bool isEnabled) {
incrementGlobalConfigurationVersion();
} else if (strEqualCaseInsensitive(param, "verbose_idle")) {
engineConfiguration->isVerboseIAC = isEnabled;
} else if (strEqualCaseInsensitive(param, "auxdebug1")) {
engineConfiguration->isVerboseAuxPid1 = isEnabled;
} else if (strEqualCaseInsensitive(param, "altdebug")) {
engineConfiguration->isVerboseAlternator = isEnabled;
} else if (strEqualCaseInsensitive(param, "altcontrol")) {

View File

@ -417,7 +417,7 @@ injector_s injector
bit isForcedInduction;Does the vehicle have a turbo or supercharger?
bit useFordRedundantTps;On some Ford and Toyota vehicles one of the throttle sensors is not linear on the full range, i.e. in the specific range of the positions we effectively have only one sensor.
bit isVerboseAuxPid1
bit unused88b2
bit overrideTriggerGaps
bit enableFan1WithAc;Turn on this fan when AC is on.
bit enableFan2WithAc;Turn on this fan when AC is on.

View File

@ -3348,7 +3348,6 @@ cmd_set_engine_type_default = "@@TS_IO_TEST_COMMAND_char@@@@ts_command_e_TS_
field = "VVT solenoid bank 2 intake", vvtPins3
field = "VVT solenoid bank 2 exhaust", vvtPins4
field = "PWM frequency", vvtOutputFrequency1, {vvtPins1 != 0 || vvtPins2 != 0}
field = "Detailed status in console", isVerboseAuxPid1, {vvtPins1 != 0 || vvtPins2 != 0}
field = "VVT solenoid intake cams control direction", invertVvtControlIntake, { vvtPins1 != 0 || vvtPins3 != 0 }
field = "VVT solenoid exhaust cams control direction", invertVvtControlExhaust, { vvtPins2 != 0 || vvtPins4 != 0 }