auto-sync
This commit is contained in:
parent
8949b80656
commit
4a75ca50f6
|
@ -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/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 \
|
||||||
$(PROJECT_DIR)/config/engines/mitsubishi.cpp
|
$(PROJECT_DIR)/config/engines/mitsubishi.cpp \
|
||||||
|
$(PROJECT_DIR)/config/engines/gm_2_2.cpp
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -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_ */
|
|
@ -16,6 +16,8 @@ case AUDI_AAN:
|
||||||
return "AUDI_AAN";
|
return "AUDI_AAN";
|
||||||
case SACHS:
|
case SACHS:
|
||||||
return "SACHS";
|
return "SACHS";
|
||||||
|
case GM_2_2:
|
||||||
|
return "GM_2_2";
|
||||||
case BMW_E34:
|
case BMW_E34:
|
||||||
return "BMW_E34";
|
return "BMW_E34";
|
||||||
case CITROEN_TU3JP:
|
case CITROEN_TU3JP:
|
||||||
|
|
|
@ -54,6 +54,7 @@
|
||||||
#include "subaru.h"
|
#include "subaru.h"
|
||||||
#include "test_engine.h"
|
#include "test_engine.h"
|
||||||
#include "sachs.h"
|
#include "sachs.h"
|
||||||
|
#include "gm_2_2.h"
|
||||||
|
|
||||||
EXTERN_ENGINE;
|
EXTERN_ENGINE;
|
||||||
|
|
||||||
|
@ -705,6 +706,9 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
|
||||||
case BMW_E34:
|
case BMW_E34:
|
||||||
setBmwE34(PASS_ENGINE_PARAMETER_F);
|
setBmwE34(PASS_ENGINE_PARAMETER_F);
|
||||||
break;
|
break;
|
||||||
|
case GM_2_2:
|
||||||
|
setGm2_2(PASS_ENGINE_PARAMETER_F);
|
||||||
|
break;
|
||||||
case TEST_ENGINE:
|
case TEST_ENGINE:
|
||||||
setTestEngineConfiguration(PASS_ENGINE_PARAMETER_F);
|
setTestEngineConfiguration(PASS_ENGINE_PARAMETER_F);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -95,7 +95,9 @@ typedef enum {
|
||||||
|
|
||||||
SACHS = 29,
|
SACHS = 29,
|
||||||
|
|
||||||
ET_UNUSED = 30,
|
GM_2_2 = 30,
|
||||||
|
|
||||||
|
ET_UNUSED = 31,
|
||||||
|
|
||||||
Force_4b_engine_type = ENUM_32_BITS,
|
Force_4b_engine_type = ENUM_32_BITS,
|
||||||
} engine_type_e;
|
} engine_type_e;
|
||||||
|
|
|
@ -172,6 +172,8 @@ const char* getConfigurationName(engine_type_e engineType) {
|
||||||
return "Test";
|
return "Test";
|
||||||
case SACHS:
|
case SACHS:
|
||||||
return "SACHS";
|
return "SACHS";
|
||||||
|
case GM_2_2:
|
||||||
|
return "GM_2_2";
|
||||||
case MAZDA_626:
|
case MAZDA_626:
|
||||||
return "Mazda626";
|
return "Mazda626";
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -290,5 +290,5 @@ int getRusEfiVersion(void) {
|
||||||
return 123; // this is here to make the compiler happy about the unused array
|
return 123; // this is here to make the compiler happy about the unused array
|
||||||
if (UNUSED_CCM_SIZE[0] * 0 != 0)
|
if (UNUSED_CCM_SIZE[0] * 0 != 0)
|
||||||
return 3211; // this is here to make the compiler happy about the unused array
|
return 3211; // this is here to make the compiler happy about the unused array
|
||||||
return 20150408;
|
return 20150409;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue