diff --git a/firmware/console/tunerstudio/tunerstudio.cpp b/firmware/console/tunerstudio/tunerstudio.cpp index 99b3b47a67..77aad09a5a 100644 --- a/firmware/console/tunerstudio/tunerstudio.cpp +++ b/firmware/console/tunerstudio/tunerstudio.cpp @@ -318,7 +318,7 @@ static TunerStudioReadRequest readRequest; static short int pageIn; static bool handlePlainCommand(uint8_t command) { - if (command == TS_HELLO_COMMAND) { + if (command == TS_HELLO_COMMAND || command == TS_HELLO_COMMAND_DEPRECATED) { scheduleMsg(logger, "Got naked Query command"); handleQueryCommand(TS_PLAIN); return true; diff --git a/firmware/console/tunerstudio/tunerstudio_algo.cpp b/firmware/console/tunerstudio/tunerstudio_algo.cpp index 804c9db9b0..8d439d8e90 100644 --- a/firmware/console/tunerstudio/tunerstudio_algo.cpp +++ b/firmware/console/tunerstudio/tunerstudio_algo.cpp @@ -139,7 +139,7 @@ void tsSendResponse(ts_response_format_e mode, const uint8_t * buffer, int size) */ void handleQueryCommand(ts_response_format_e mode) { tsState.queryCommandCounter++; - tunerStudioDebug("got H (queryCommand)"); + tunerStudioDebug("got S/H (queryCommand) mode=%d", mode); tsSendResponse(mode, (const uint8_t *) TS_SIGNATURE, strlen(TS_SIGNATURE) + 1); } diff --git a/firmware/rusefi.cpp b/firmware/rusefi.cpp index 6a6bbd7060..71c39400f5 100644 --- a/firmware/rusefi.cpp +++ b/firmware/rusefi.cpp @@ -260,5 +260,5 @@ int getRusEfiVersion(void) { return 1; // this is here to make the compiler happy about the unused array if (UNUSED_CCM_SIZE == 0) return 1; // this is here to make the compiler happy about the unused array - return 20150127; + return 20150128; }