auto-sync
This commit is contained in:
parent
2dba2ae9c2
commit
7da1573262
|
@ -1,6 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* @file chevrolet_camaro_4.cpp
|
* @file chevrolet_camaro_4.cpp
|
||||||
*
|
*
|
||||||
|
*
|
||||||
|
* set_engine_type 35
|
||||||
|
*
|
||||||
* @date Oct 16, 2015
|
* @date Oct 16, 2015
|
||||||
* @author Andrey Belomutskiy, (c) 2012-2015
|
* @author Andrey Belomutskiy, (c) 2012-2015
|
||||||
*/
|
*/
|
||||||
|
@ -12,6 +15,9 @@ EXTERN_ENGINE
|
||||||
|
|
||||||
void setCamaro4(DECLARE_ENGINE_PARAMETER_F) {
|
void setCamaro4(DECLARE_ENGINE_PARAMETER_F) {
|
||||||
|
|
||||||
|
engineConfiguration->specs.displacement = 5.7;
|
||||||
|
engineConfiguration->specs.cylindersCount = 8;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,8 @@ case SACHS:
|
||||||
return "SACHS";
|
return "SACHS";
|
||||||
case DAIHATSU:
|
case DAIHATSU:
|
||||||
return "DAIHATSU";
|
return "DAIHATSU";
|
||||||
|
case CAMARO_4:
|
||||||
|
return "CAMARO_4";
|
||||||
case GM_2_2:
|
case GM_2_2:
|
||||||
return "GM_2_2";
|
return "GM_2_2";
|
||||||
case DODGE_RAM:
|
case DODGE_RAM:
|
||||||
|
|
|
@ -63,6 +63,7 @@
|
||||||
#include "vw.h"
|
#include "vw.h"
|
||||||
#include "dodge_stratus.h"
|
#include "dodge_stratus.h"
|
||||||
#include "daihatsu.h"
|
#include "daihatsu.h"
|
||||||
|
#include "chevrolet_camaro_4.h"
|
||||||
|
|
||||||
EXTERN_ENGINE;
|
EXTERN_ENGINE;
|
||||||
|
|
||||||
|
@ -751,6 +752,9 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
|
||||||
case DAIHATSU:
|
case DAIHATSU:
|
||||||
setDaihatsu(PASS_ENGINE_PARAMETER_F);
|
setDaihatsu(PASS_ENGINE_PARAMETER_F);
|
||||||
break;
|
break;
|
||||||
|
case CAMARO_4:
|
||||||
|
setCamaro4(PASS_ENGINE_PARAMETER_F);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
warning(OBD_PCM_Processor_Fault, "Unexpected engine type: %d", engineType);
|
warning(OBD_PCM_Processor_Fault, "Unexpected engine type: %d", engineType);
|
||||||
|
|
|
@ -105,7 +105,9 @@ typedef enum {
|
||||||
|
|
||||||
DAIHATSU = 34,
|
DAIHATSU = 34,
|
||||||
|
|
||||||
ET_UNUSED = 35,
|
CAMARO_4 = 35,
|
||||||
|
|
||||||
|
ET_UNUSED = 36,
|
||||||
|
|
||||||
Force_4b_engine_type = ENUM_32_BITS,
|
Force_4b_engine_type = ENUM_32_BITS,
|
||||||
} engine_type_e;
|
} engine_type_e;
|
||||||
|
|
Loading…
Reference in New Issue