removing unused

This commit is contained in:
rusefi 2017-05-15 21:23:44 -04:00
parent e5d39f82e6
commit 10b6ec29be
2 changed files with 2 additions and 3 deletions

View File

@ -192,7 +192,6 @@ static char * prepareInfoLine(engine_configuration_s *engineConfiguration, char
//} //}
static char buffer[MAX_LCD_WIDTH + 4]; static char buffer[MAX_LCD_WIDTH + 4];
static char dateBuffer[30];
static void lcdPrintf(const char *fmt, ...) { static void lcdPrintf(const char *fmt, ...) {
va_list ap; va_list ap;

View File

@ -270,7 +270,7 @@ static void initializeIgnitionActions(IgnitionEventList *list DECLARE_ENGINE_PAR
list->isReady = true; list->isReady = true;
} }
static ALWAYS_INLINE void prepareIgnitionSchedule(int rpm DECLARE_ENGINE_PARAMETER_S) { static ALWAYS_INLINE void prepareIgnitionSchedule(DECLARE_ENGINE_PARAMETER_F) {
engine->m.beforeIgnitionSch = GET_TIMESTAMP(); engine->m.beforeIgnitionSch = GET_TIMESTAMP();
/** /**
@ -310,7 +310,7 @@ void handleSpark(bool limitedSpark, uint32_t trgEventIndex, int rpm
} }
if (!engine->ignitionEvents.isReady) { if (!engine->ignitionEvents.isReady) {
prepareIgnitionSchedule(rpm PASS_ENGINE_PARAMETER); prepareIgnitionSchedule(PASS_ENGINE_PARAMETER_F);
} }
/** /**