diff --git a/firmware/controllers/settings.cpp b/firmware/controllers/settings.cpp index ec71af2916..28128f79e5 100644 --- a/firmware/controllers/settings.cpp +++ b/firmware/controllers/settings.cpp @@ -829,6 +829,8 @@ static void enableOrDisable(const char *param, bool isEnabled) { boardConfiguration->isFastAdcEnabled = isEnabled; } else if (strEqualCaseInsensitive(param, "constant_dwell")) { engineConfiguration->useConstantDwellDuringCranking = isEnabled; + } else if (strEqualCaseInsensitive(param, "binary_mode_console")) { + boardConfiguration->startConsoleInBinaryMode = isEnabled; } else if (strEqualCaseInsensitive(param, "cj125")) { boardConfiguration->isCJ125Enabled = isEnabled; } else if (strEqualCaseInsensitive(param, "engine_sniffer")) { diff --git a/firmware/rusefi.cpp b/firmware/rusefi.cpp index 7fc6b93ad8..aba44b1e1f 100644 --- a/firmware/rusefi.cpp +++ b/firmware/rusefi.cpp @@ -290,5 +290,5 @@ int getRusEfiVersion(void) { return 123; // this is here to make the compiler happy about the unused array if (UNUSED_CCM_SIZE[0] * 0 != 0) return 3211; // this is here to make the compiler happy about the unused array - return 20161213; + return 20161215; }