From cb79f427d94ee2f730c3e192e6a173f179431a43 Mon Sep 17 00:00:00 2001 From: rusefi Date: Sat, 6 May 2017 22:37:43 -0400 Subject: [PATCH] #365 --- firmware/console/binary/tunerstudio.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/firmware/console/binary/tunerstudio.cpp b/firmware/console/binary/tunerstudio.cpp index 5a746e2541..e22a673d23 100644 --- a/firmware/console/binary/tunerstudio.cpp +++ b/firmware/console/binary/tunerstudio.cpp @@ -632,8 +632,8 @@ void handleTestCommand(ts_channel_s *tsChannel) { extern CommandHandler console_line_callback; -static void handleGetVersion(ts_channel_s *tsChannel) { - +static void handleGetVersion(ts_channel_s *tsChannel, ts_response_format_e mode) { +// tsSendResponse(tsChannel, mode, (const uint8_t *) "rusEfi v", 8 + 1); } static void handleGetText(ts_channel_s *tsChannel) { @@ -746,7 +746,7 @@ int tunerStudioHandleCrcCommand(ts_channel_s *tsChannel, char *data, int incomin tunerStudioDebug("got Query command"); handleQueryCommand(tsChannel, TS_CRC); } else if (command == TS_GET_FIRMWARE_VERSION) { - handleGetVersion(tsChannel); + handleGetVersion(tsChannel, TS_CRC); } else if (command == TS_GET_TEXT) { handleGetText(tsChannel); } else if (command == TS_EXECUTE) {