removing dead text protocol support

This commit is contained in:
rusefi 2019-06-16 17:13:11 -04:00
parent 8c74bfa2a3
commit 5a0d2413f5
2 changed files with 11 additions and 13 deletions

View File

@ -122,8 +122,10 @@ static Logging fileLogger("file logger", FILE_LOGGER, sizeof(FILE_LOGGER));
static int logFileLineIndex = 0;
#define TAB "\t"
static void reportSensorF(Logging *log, bool isLogFileFormatting, const char *caption, const char *units, float value,
static void reportSensorF(Logging *log, bool unused_isLogFileFormatting, const char *caption, const char *units, float value,
int precision) {
bool isLogFileFormatting = true;
if (!isLogFileFormatting) {
#if EFI_PROD_CODE || EFI_SIMULATOR
debugFloat(log, caption, value, precision);
@ -181,7 +183,8 @@ static int packEngineMode(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
engineConfiguration->ignitionMode;
}
static void printSensors(Logging *log, bool fileFormat) {
static void printSensors(Logging *log) {
bool fileFormat = true; // todo:remove this unused variable
// current time, in milliseconds
int nowMs = currentTimeMillis();
float sec = ((float) nowMs) / 1000;
@ -353,7 +356,7 @@ void writeLogLine(void) {
if (!main_loop_started)
return;
resetLogging(&fileLogger);
printSensors(&fileLogger, true);
printSensors(&fileLogger);
if (isSdCardAlive()) {
appendPrintf(&fileLogger, "\r\n");
@ -445,11 +448,6 @@ void updateDevConsoleState(void) {
return;
}
/**
* this should go before the firmware error so that console can detect connection
*/
printSensors(&logger, false);
#if EFI_PROD_CODE
// todo: unify with simulator!
if (hasFirmwareError()) {
@ -458,11 +456,11 @@ void updateDevConsoleState(void) {
scheduleLogging(&logger);
return;
}
#endif
#endif /* EFI_PROD_CODE */
#if EFI_PROD_CODE && HAL_USE_ADC
#if HAL_USE_ADC
printFullAdcReportIfNeeded(&logger);
#endif
#endif /* HAL_USE_ADC */
if (!fullLog) {
return;
@ -484,7 +482,7 @@ void updateDevConsoleState(void) {
#if EFI_WAVE_ANALYZER
printWave(&logger);
#endif
#endif /* EFI_WAVE_ANALYZER */
scheduleLogging(&logger);
}

View File

@ -810,6 +810,6 @@ int getRusEfiVersion(void) {
if (initBootloader() != 0)
return 123;
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
return 20190615;
return 20190616;
}
#endif /* EFI_UNIT_TEST */