GDI Epic #1448
This commit is contained in:
parent
fa58d75364
commit
eae48cdda6
|
@ -39,6 +39,7 @@
|
|||
#include "allsensors.h"
|
||||
#include "electronic_throttle.h"
|
||||
#include "map_averaging.h"
|
||||
#include "high_pressure_fuel_pump.h"
|
||||
#include "malfunction_central.h"
|
||||
#include "malfunction_indicator.h"
|
||||
#include "speed_density.h"
|
||||
|
@ -623,6 +624,7 @@ void commonInitEngineController(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_S
|
|||
*/
|
||||
initSparkLogic(sharedLogger);
|
||||
initMainEventListener(sharedLogger PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
initHPFP(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
}
|
||||
#endif /* EFI_ENGINE_CONTROL */
|
||||
|
||||
|
|
|
@ -10,3 +10,6 @@
|
|||
|
||||
#include "high_pressure_fuel_pump.h"
|
||||
|
||||
void initHPFP(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
|
||||
}
|
||||
|
|
|
@ -8,3 +8,5 @@
|
|||
#pragma once
|
||||
|
||||
#include "engine.h"
|
||||
|
||||
void initHPFP(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
||||
|
|
Loading…
Reference in New Issue