removing unused
This commit is contained in:
parent
69fe8d0625
commit
f49f87e66a
|
@ -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;
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue