From d37b5f049451cff6b2e98b022d5410b8803e9878 Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Sun, 29 Mar 2020 04:27:36 -0700 Subject: [PATCH] Show fatal error text in TS (the right way) (#1232) * enable TS error readout * friendlier text for common errors * improve comment --- firmware/console/binary/tunerstudio.cpp | 6 +++++- firmware/console/binary/tunerstudio_io.h | 1 + firmware/hw_layer/adc_inputs.cpp | 2 +- firmware/hw_layer/pin_repository.cpp | 2 +- firmware/tunerstudio/rusefi.input | 5 +++++ 5 files changed, 13 insertions(+), 3 deletions(-) diff --git a/firmware/console/binary/tunerstudio.cpp b/firmware/console/binary/tunerstudio.cpp index 6acd8234c9..1f73b95042 100644 --- a/firmware/console/binary/tunerstudio.cpp +++ b/firmware/console/binary/tunerstudio.cpp @@ -469,7 +469,8 @@ static bool isKnownCommand(char command) { || command == TS_CRC_CHECK_COMMAND || command == TS_GET_FIRMWARE_VERSION || command == TS_PERF_TRACE_BEGIN - || command == TS_PERF_TRACE_GET_BUFFER; + || command == TS_PERF_TRACE_GET_BUFFER + || command == TS_GET_CONFIG_ERROR; } // this function runs indefinitely @@ -845,6 +846,9 @@ int tunerStudioHandleCrcCommand(ts_channel_s *tsChannel, char *data, int incomin break; #endif /* ENABLE_PERF_TRACE */ + case TS_GET_CONFIG_ERROR: + sr5SendResponse(tsChannel, TS_CRC, reinterpret_cast(getFirmwareError()), strlen(getFirmwareError())); + break; default: tunerStudioError("ERROR: ignoring unexpected command"); return false; diff --git a/firmware/console/binary/tunerstudio_io.h b/firmware/console/binary/tunerstudio_io.h index 058fb8dd64..555f19014e 100644 --- a/firmware/console/binary/tunerstudio_io.h +++ b/firmware/console/binary/tunerstudio_io.h @@ -68,6 +68,7 @@ typedef struct { #define TS_PAGE_COMMAND 'P' // 0x50 #define TS_COMMAND_F 'F' // 0x46 #define TS_GET_FIRMWARE_VERSION 'V' // versionInfo +#define TS_GET_CONFIG_ERROR 'e' // returns getFirmwareError() // High speed logger commands #define TS_SET_LOGGER_MODE 'l' diff --git a/firmware/hw_layer/adc_inputs.cpp b/firmware/hw_layer/adc_inputs.cpp index 90dafb2f21..5f1cc14371 100644 --- a/firmware/hw_layer/adc_inputs.cpp +++ b/firmware/hw_layer/adc_inputs.cpp @@ -472,7 +472,7 @@ void addChannel(const char *name, adc_channel_e setting, adc_channel_mode_e mode if (adcHwChannelEnabled[setting] != ADC_OFF) { getPinNameByAdcChannel(name, setting, errorMsgBuff); - firmwareError(CUSTOM_ERR_ADC_USED, "ADC mapping error: input %s for %s already used by %s?", errorMsgBuff, name, adcHwChannelUsage[setting]); + firmwareError(CUSTOM_ERR_ADC_USED, "Analog input error: input \"%s\" selected for %s but was already used by %s", errorMsgBuff, name, adcHwChannelUsage[setting]); } adcHwChannelUsage[setting] = name; diff --git a/firmware/hw_layer/pin_repository.cpp b/firmware/hw_layer/pin_repository.cpp index 680ea2291f..ff954bcd17 100644 --- a/firmware/hw_layer/pin_repository.cpp +++ b/firmware/hw_layer/pin_repository.cpp @@ -231,7 +231,7 @@ bool brain_pin_markUsed(brain_pin_e brainPin, const char *msg) { * connected, so the warning is never displayed on the console and that's quite a problem! */ // warning(OBD_PCM_Processor_Fault, "brain pin %d req by %s used by %s", brainPin, msg, getBrainUsedPin(index)); - firmwareError(CUSTOM_ERR_PIN_ALREADY_USED_1, "brain pin %s req by %s used by %s", hwPortname(brainPin), msg, getBrainUsedPin(index)); + firmwareError(CUSTOM_ERR_PIN_ALREADY_USED_1, "Pin \"%s\" required by %s but is used by %s", hwPortname(brainPin), msg, getBrainUsedPin(index)); return true; } diff --git a/firmware/tunerstudio/rusefi.input b/firmware/tunerstudio/rusefi.input index 14b7017028..06734b9b65 100644 --- a/firmware/tunerstudio/rusefi.input +++ b/firmware/tunerstudio/rusefi.input @@ -66,6 +66,7 @@ enable2ndByteCanID = false ; we have current pageSize or (pageSize + 8) here? ; crc32CheckCommand = "k\x00\x00\x00\x00\x36\xB8" + retrieveConfigError = "e" ;communication settings pageActivationDelay = 500 ; Milliseconds delay after burn command. See https://sourceforge.net/p/rusefi/tickets/77/ @@ -939,6 +940,10 @@ gaugeCategory = Throttle Body (incl. ETB) indicator = { ind_injection_enabled}, "no injection", "injection", red, black, green, black indicator = { ind_isTriggerError}, "ok", "trg err", green, black, red, black + ; this is required so that the "config error" feature works in TS + ; don't change this line - TS is looking for an indicator with particular text/styling + ; you don't even have to show it by default + indicator = { ind_hasFatalError }, "Config Error", "Config Error", white, black, red, black ; minor info indicator = { ind_fan}, "no fan", "fan", white, black, green, black