only:proteus_f7
This commit is contained in:
rusefi 2023-05-15 16:40:03 -04:00
parent 041b404c6b
commit 4c26f77aad
1 changed files with 12 additions and 0 deletions

View File

@ -888,6 +888,18 @@ static void setValue(const char *paramStr, const char *valueStr) {
} else if (strEqualCaseInsensitive(paramStr, CMD_RPM)) {
setTriggerEmulatorRPM(valueI);
#endif // EFI_EMULATE_POSITION_SENSORS
#if EFI_MC33816
} else if (strEqualCaseInsensitive(paramStr, "mc33_hvolt")) {
engineConfiguration->mc33_hvolt = valueI;
} else if (strEqualCaseInsensitive(paramStr, "mc33_i_peak")) {
engineConfiguration->mc33_i_peak = valueI;
} else if (strEqualCaseInsensitive(paramStr, "mc33_i_hold")) {
engineConfiguration->mc33_i_hold = valueI;
} else if (strEqualCaseInsensitive(paramStr, "mc33_t_max_boost")) {
engineConfiguration->mc33_t_max_boost = valueI;
} else if (strEqualCaseInsensitive(paramStr, "mc33_t_peak_off")) {
engineConfiguration->mc33_t_peak_off = valueI;
#endif // EFI_MC33816
} else if (strEqualCaseInsensitive(paramStr, "vvt_offset")) {
engineConfiguration->vvtOffsets[0] = valueF;
} else if (strEqualCaseInsensitive(paramStr, "vvt_mode")) {