24 lines
443 B
C++
24 lines
443 B
C++
/*
|
|
* @file high_pressure_fuel_pump.cpp
|
|
*
|
|
*
|
|
* todo: there is some similarity with aux_valves.cpp and even map_averaging.cpp maybe reduce code duplication?
|
|
*
|
|
* @date Nov 5, 2020
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*/
|
|
|
|
#include "pch.h"
|
|
|
|
#include "high_pressure_fuel_pump.h"
|
|
#include "spark_logic.h"
|
|
|
|
#if EFI_HPFP
|
|
|
|
|
|
void initHPFP(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|
// Deleted to make new code diff easier
|
|
}
|
|
|
|
#endif // EFI_HPFP
|