auto-sync

This commit is contained in:
rusEfi 2015-10-18 11:01:34 -04:00
parent f591bd29db
commit 59ba9b974e
2 changed files with 3 additions and 1 deletions

View File

@ -203,6 +203,7 @@ static void showLine(lcd_line_e line, int screenY) {
return; return;
case LL_RPM: case LL_RPM:
lcdPrintf("RPM %d", getRpmE(engine)); lcdPrintf("RPM %d", getRpmE(engine));
#if EFI_FILE_LOGGING || defined(__DOXYGEN__)
{ {
char sdState; char sdState;
if (boardConfiguration->isSdCardEnabled) { if (boardConfiguration->isSdCardEnabled) {
@ -215,6 +216,7 @@ static void showLine(lcd_line_e line, int screenY) {
lcdPrintf(" %d%c", seconds, sdState); lcdPrintf(" %d%c", seconds, sdState);
} }
} }
#endif
return; return;
case LL_CLT_TEMPERATURE: case LL_CLT_TEMPERATURE:
lcdPrintf("Coolant %f", getCoolantTemperature(PASS_ENGINE_PARAMETER_F)); lcdPrintf("Coolant %f", getCoolantTemperature(PASS_ENGINE_PARAMETER_F));

View File

@ -275,5 +275,5 @@ int getRusEfiVersion(void) {
return 123; // this is here to make the compiler happy about the unused array return 123; // this is here to make the compiler happy about the unused array
if (UNUSED_CCM_SIZE[0] * 0 != 0) if (UNUSED_CCM_SIZE[0] * 0 != 0)
return 3211; // this is here to make the compiler happy about the unused array return 3211; // this is here to make the compiler happy about the unused array
return 20151017; return 20151018;
} }