GDI Epic #1448
This commit is contained in:
parent
061ca7f137
commit
fa58d75364
|
@ -31,6 +31,7 @@ CONTROLLERS_SRC_CPP = \
|
||||||
$(CONTROLLERS_DIR)/settings.cpp \
|
$(CONTROLLERS_DIR)/settings.cpp \
|
||||||
$(CONTROLLERS_DIR)/core/error_handling.cpp \
|
$(CONTROLLERS_DIR)/core/error_handling.cpp \
|
||||||
$(CONTROLLERS_DIR)/engine_cycle/map_averaging.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/rpm_calculator.cpp \
|
||||||
$(CONTROLLERS_DIR)/engine_cycle/spark_logic.cpp \
|
$(CONTROLLERS_DIR)/engine_cycle/spark_logic.cpp \
|
||||||
$(CONTROLLERS_DIR)/engine_cycle/main_trigger_callback.cpp \
|
$(CONTROLLERS_DIR)/engine_cycle/main_trigger_callback.cpp \
|
||||||
|
|
|
@ -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.
|
* Here we have two auxilary digital on/off outputs which would open once per each 360 degrees of engine crank revolution.
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
|
@ -22,12 +22,11 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include "os_access.h"
|
|
||||||
|
|
||||||
#include "map.h"
|
|
||||||
|
|
||||||
#if EFI_MAP_AVERAGING
|
#if EFI_MAP_AVERAGING
|
||||||
|
|
||||||
|
#include "os_access.h"
|
||||||
|
#include "map.h"
|
||||||
#include "map_averaging.h"
|
#include "map_averaging.h"
|
||||||
#include "trigger_central.h"
|
#include "trigger_central.h"
|
||||||
#include "adc_inputs.h"
|
#include "adc_inputs.h"
|
||||||
|
|
Loading…
Reference in New Issue