auto-sync

This commit is contained in:
rusEfi 2016-10-04 14:00:58 -04:00
parent 2fe6c09d3f
commit c357661055
6 changed files with 21 additions and 5 deletions

View File

@ -8,5 +8,10 @@
#include "mazda_miata_vvt.h"
EXTERN_ENGINE;
void setMazdaMiata2003EngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
}

View File

@ -10,8 +10,8 @@
#ifndef CONFIG_ENGINES_MAZDA_MIATA_VVT_H_
#define CONFIG_ENGINES_MAZDA_MIATA_VVT_H_
#include "engine.h"
void setMazdaMiata2003EngineConfiguration(DECLARE_ENGINE_PARAMETER_F);
#endif /* CONFIG_ENGINES_MAZDA_MIATA_VVT_H_ */

View File

@ -114,6 +114,8 @@ case SUBARU_2003_WRX:
return "SUBARU_2003_WRX";
case TEST_ENGINE:
return "TEST_ENGINE";
case MAZDA_MIATA_2003:
return "miata 2003";
case TEST_ENGINE_VVT:
return "TEST_ENGINE_VVT";
case VW_ABA:
@ -132,7 +134,9 @@ case TT_HONDA_CBR_600:
case TT_HONDA_CBR_600_CUSTOM:
return "TT_HONDA_CBR_600_CUSTOM";
case TT_3_1_CAM:
return "TT_3_1_CAM";
return "3_1_CAM";
case TT_MIATA_VVT:
return "MIATA_VVT";
case TT_DODGE_NEON_1995:
return "TT_DODGE_NEON_1995";
case TT_GM_LS_24:

View File

@ -950,6 +950,7 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
case TEST_ENGINE:
setTestEngineConfiguration(PASS_ENGINE_PARAMETER_F);
break;
case MAZDA_MIATA_2003:
case TEST_ENGINE_VVT:
setTestVVTEngineConfiguration(PASS_ENGINE_PARAMETER_F);
break;

View File

@ -136,7 +136,9 @@ typedef enum {
DODGE_NEON_2003_CRANK = 46,
ET_UNUSED = 47,
MAZDA_MIATA_2003 = 47,
ET_UNUSED = 48,
Force_4b_engine_type = ENUM_32_BITS,
} engine_type_e;
@ -199,7 +201,9 @@ typedef enum {
// crank-based in case your cam is broken
TT_DODGE_NEON_2003_CRANK = 32,
TT_UNUSED = 33, // this is used if we want to iterate over all trigger types
TT_MIATA_VVT = 33,
TT_UNUSED = 34, // this is used if we want to iterate over all trigger types
Force_4b_trigger_type = ENUM_32_BITS,
} trigger_type_e;

View File

@ -474,6 +474,8 @@ void TriggerShape::initializeTriggerShape(Logging *logger DECLARE_ENGINE_PARAMET
initializeMazdaMiataNbShape(triggerShape PASS_ENGINE_PARAMETER);
break;
case TT_MIATA_VVT:
case TT_DODGE_NEON_1995:
configureNeon1995TriggerShape(triggerShape PASS_ENGINE_PARAMETER);
break;