This commit is contained in:
rusefillc 2020-11-05 16:34:25 -05:00
parent 061ca7f137
commit fa58d75364
5 changed files with 26 additions and 4 deletions

View File

@ -31,6 +31,7 @@ CONTROLLERS_SRC_CPP = \
$(CONTROLLERS_DIR)/settings.cpp \
$(CONTROLLERS_DIR)/core/error_handling.cpp \
$(CONTROLLERS_DIR)/engine_cycle/map_averaging.cpp \
$(CONTROLLERS_DIR)/engine_cycle/high_pressure_fuel_pump.cpp \
$(CONTROLLERS_DIR)/engine_cycle/rpm_calculator.cpp \
$(CONTROLLERS_DIR)/engine_cycle/spark_logic.cpp \
$(CONTROLLERS_DIR)/engine_cycle/main_trigger_callback.cpp \

View File

@ -1,5 +1,5 @@
/*
* aux_valves.cpp
* @file aux_valves.cpp
*
*
* Here we have two auxilary digital on/off outputs which would open once per each 360 degrees of engine crank revolution.

View File

@ -0,0 +1,12 @@
/*
* @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 "high_pressure_fuel_pump.h"

View File

@ -0,0 +1,10 @@
/*
* @file high_pressure_fuel_pump.h
*
* @date Nov 5, 2020
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#pragma once
#include "engine.h"

View File

@ -22,12 +22,11 @@
*/
#include "global.h"
#include "os_access.h"
#include "map.h"
#if EFI_MAP_AVERAGING
#include "os_access.h"
#include "map.h"
#include "map_averaging.h"
#include "trigger_central.h"
#include "adc_inputs.h"