removing unused
This commit is contained in:
parent
e5d39f82e6
commit
10b6ec29be
|
@ -192,7 +192,6 @@ static char * prepareInfoLine(engine_configuration_s *engineConfiguration, char
|
|||
//}
|
||||
|
||||
static char buffer[MAX_LCD_WIDTH + 4];
|
||||
static char dateBuffer[30];
|
||||
|
||||
static void lcdPrintf(const char *fmt, ...) {
|
||||
va_list ap;
|
||||
|
|
|
@ -270,7 +270,7 @@ static void initializeIgnitionActions(IgnitionEventList *list DECLARE_ENGINE_PAR
|
|||
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();
|
||||
/**
|
||||
|
@ -310,7 +310,7 @@ void handleSpark(bool limitedSpark, uint32_t trgEventIndex, int rpm
|
|||
}
|
||||
|
||||
if (!engine->ignitionEvents.isReady) {
|
||||
prepareIgnitionSchedule(rpm PASS_ENGINE_PARAMETER);
|
||||
prepareIgnitionSchedule(PASS_ENGINE_PARAMETER_F);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue