auto-sync

This commit is contained in:
rusEfi 2015-04-09 21:13:56 -05:00
parent 8949b80656
commit 4a75ca50f6
8 changed files with 44 additions and 3 deletions

View File

@ -24,4 +24,6 @@ ENGINES_SRC_CPP = $(PROJECT_DIR)/config/engines/ford_aspire.cpp \
$(PROJECT_DIR)/config/engines/saturn_ion.cpp \
$(PROJECT_DIR)/config/engines/sachs.cpp \
$(PROJECT_DIR)/config/engines/test_engine.cpp \
$(PROJECT_DIR)/config/engines/mitsubishi.cpp
$(PROJECT_DIR)/config/engines/mitsubishi.cpp \
$(PROJECT_DIR)/config/engines/gm_2_2.cpp

View File

@ -0,0 +1,14 @@
/*
* @file gm_2_2.cpp
*
* @date Apr 9, 2015
* @author Andrey Belomutskiy, (c) 2012-2015
*/
#include "global.h"
#include "gm_2_2.h"
void setGm2_2(DECLARE_ENGINE_PARAMETER_F) {
}

View File

@ -0,0 +1,15 @@
/*
* @file gm_2_2.h
*
* @date Apr 9, 2015
* @author Andrey Belomutskiy, (c) 2012-2015
*/
#ifndef CONFIG_ENGINES_GM_2_2_H_
#define CONFIG_ENGINES_GM_2_2_H_
#include "engine.h"
void setGm2_2(DECLARE_ENGINE_PARAMETER_F);
#endif /* CONFIG_ENGINES_GM_2_2_H_ */

View File

@ -16,6 +16,8 @@ case AUDI_AAN:
return "AUDI_AAN";
case SACHS:
return "SACHS";
case GM_2_2:
return "GM_2_2";
case BMW_E34:
return "BMW_E34";
case CITROEN_TU3JP:

View File

@ -54,6 +54,7 @@
#include "subaru.h"
#include "test_engine.h"
#include "sachs.h"
#include "gm_2_2.h"
EXTERN_ENGINE;
@ -705,6 +706,9 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
case BMW_E34:
setBmwE34(PASS_ENGINE_PARAMETER_F);
break;
case GM_2_2:
setGm2_2(PASS_ENGINE_PARAMETER_F);
break;
case TEST_ENGINE:
setTestEngineConfiguration(PASS_ENGINE_PARAMETER_F);
break;

View File

@ -95,7 +95,9 @@ typedef enum {
SACHS = 29,
ET_UNUSED = 30,
GM_2_2 = 30,
ET_UNUSED = 31,
Force_4b_engine_type = ENUM_32_BITS,
} engine_type_e;

View File

@ -172,6 +172,8 @@ const char* getConfigurationName(engine_type_e engineType) {
return "Test";
case SACHS:
return "SACHS";
case GM_2_2:
return "GM_2_2";
case MAZDA_626:
return "Mazda626";
default:

View File

@ -290,5 +290,5 @@ int getRusEfiVersion(void) {
return 123; // this is here to make the compiler happy about the unused array
if (UNUSED_CCM_SIZE[0] * 0 != 0)
return 3211; // this is here to make the compiler happy about the unused array
return 20150408;
return 20150409;
}