From 59ba9b974e5af3b5dc307419cf99c0dc3ca6c276 Mon Sep 17 00:00:00 2001 From: rusEfi Date: Sun, 18 Oct 2015 11:01:34 -0400 Subject: [PATCH] auto-sync --- firmware/controllers/lcd_controller.cpp | 2 ++ firmware/rusefi.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/firmware/controllers/lcd_controller.cpp b/firmware/controllers/lcd_controller.cpp index 7be3bb7322..3045d9d8d8 100644 --- a/firmware/controllers/lcd_controller.cpp +++ b/firmware/controllers/lcd_controller.cpp @@ -203,6 +203,7 @@ static void showLine(lcd_line_e line, int screenY) { return; case LL_RPM: lcdPrintf("RPM %d", getRpmE(engine)); +#if EFI_FILE_LOGGING || defined(__DOXYGEN__) { char sdState; if (boardConfiguration->isSdCardEnabled) { @@ -215,6 +216,7 @@ static void showLine(lcd_line_e line, int screenY) { lcdPrintf(" %d%c", seconds, sdState); } } +#endif return; case LL_CLT_TEMPERATURE: lcdPrintf("Coolant %f", getCoolantTemperature(PASS_ENGINE_PARAMETER_F)); diff --git a/firmware/rusefi.cpp b/firmware/rusefi.cpp index a99505ad37..0853d43bbc 100644 --- a/firmware/rusefi.cpp +++ b/firmware/rusefi.cpp @@ -275,5 +275,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 20151017; + return 20151018; }