2020-11-05 13:34:25 -08:00
|
|
|
/*
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2021-08-03 19:05:01 -07:00
|
|
|
#include "pch.h"
|
|
|
|
|
2020-11-05 13:34:25 -08:00
|
|
|
#include "high_pressure_fuel_pump.h"
|
2020-11-09 19:21:38 -08:00
|
|
|
#include "spark_logic.h"
|
|
|
|
|
2020-11-09 19:53:23 -08:00
|
|
|
#if EFI_HPFP
|
|
|
|
|
2020-11-05 13:34:25 -08:00
|
|
|
|
2021-11-16 01:15:29 -08:00
|
|
|
void initHPFP() {
|
2021-11-05 20:15:35 -07:00
|
|
|
// Deleted to make new code diff easier
|
2020-11-05 13:42:56 -08:00
|
|
|
}
|
2020-11-09 19:53:23 -08:00
|
|
|
|
|
|
|
#endif // EFI_HPFP
|