prometheus

This commit is contained in:
rusefi 2017-05-06 16:11:45 -04:00
parent 02be9e1e2d
commit ec17015342
6 changed files with 40 additions and 0 deletions

View File

@ -23,6 +23,7 @@ ENGINES_SRC_CPP = $(PROJECT_DIR)/config/engines/ford_aspire.cpp \
$(PROJECT_DIR)/config/engines/rover_v8.cpp \ $(PROJECT_DIR)/config/engines/rover_v8.cpp \
$(PROJECT_DIR)/config/engines/mazda_323.cpp \ $(PROJECT_DIR)/config/engines/mazda_323.cpp \
$(PROJECT_DIR)/config/engines/mazda_626.cpp \ $(PROJECT_DIR)/config/engines/mazda_626.cpp \
$(PROJECT_DIR)/config/engines/prometheus.cpp \
$(PROJECT_DIR)/config/engines/saturn_ion.cpp \ $(PROJECT_DIR)/config/engines/saturn_ion.cpp \
$(PROJECT_DIR)/config/engines/sachs.cpp \ $(PROJECT_DIR)/config/engines/sachs.cpp \
$(PROJECT_DIR)/config/engines/test_engine.cpp \ $(PROJECT_DIR)/config/engines/test_engine.cpp \

View File

@ -0,0 +1,17 @@
/*
* prometheus.cpp
*
* set engine_type 100
*
* @date May 6, 2017
* @author Andrey Belomutskiy, (c) 2012-2017
*/
#include "prometheus.h"
void setPrometheusDefaults(DECLARE_ENGINE_PARAMETER_F) {
}

View File

@ -0,0 +1,14 @@
/*
* prometheus.h
*
* @date May 6, 2017
* @author Andrey Belomutskiy, (c) 2012-2017
*/
#ifndef CONFIG_ENGINES_PROMETHEUS_H_
#define CONFIG_ENGINES_PROMETHEUS_H_
#include "engine.h"
void setPrometheusDefaults(DECLARE_ENGINE_PARAMETER_F);
#endif /* CONFIG_ENGINES_PROMETHEUS_H_ */

View File

@ -120,6 +120,8 @@ case MAZDA_MIATA_2003:
return "miata 2003 OLD"; return "miata 2003 OLD";
case MAZDA_MIATA_2003_BETTER: case MAZDA_MIATA_2003_BETTER:
return "miata 2003"; return "miata 2003";
case PROMETHEUS_DEFAULTS:
return "PROMETHEUS";
case TEST_ENGINE_VVT: case TEST_ENGINE_VVT:
return "TEST_ENGINE_VVT"; return "TEST_ENGINE_VVT";
case VW_ABA: case VW_ABA:

View File

@ -74,6 +74,7 @@
#include "citroenBerlingoTU3JP.h" #include "citroenBerlingoTU3JP.h"
#include "rover_v8.h" #include "rover_v8.h"
#include "mitsubishi.h" #include "mitsubishi.h"
#include "prometheus.h"
#include "subaru.h" #include "subaru.h"
#include "test_engine.h" #include "test_engine.h"
#include "sachs.h" #include "sachs.h"
@ -1044,6 +1045,9 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
case MAZDA_MIATA_2003_BETTER: case MAZDA_MIATA_2003_BETTER:
setMazdaMiata2003EngineConfigurationNewBoard(PASS_ENGINE_PARAMETER_F); setMazdaMiata2003EngineConfigurationNewBoard(PASS_ENGINE_PARAMETER_F);
break; break;
case PROMETHEUS_DEFAULTS:
setPrometheusDefaults(PASS_ENGINE_PARAMETER_F);
break;
case TEST_ENGINE_VVT: case TEST_ENGINE_VVT:
setTestVVTEngineConfiguration(PASS_ENGINE_PARAMETER_F); setTestVVTEngineConfiguration(PASS_ENGINE_PARAMETER_F);
break; break;

View File

@ -158,6 +158,8 @@ typedef enum {
MAZDA_MIATA_2003_BETTER = 54, MAZDA_MIATA_2003_BETTER = 54,
PROMETHEUS_DEFAULTS = 100,
Force_4b_engine_type = ENUM_32_BITS, Force_4b_engine_type = ENUM_32_BITS,
} engine_type_e; } engine_type_e;