auto-sync

This commit is contained in:
rusEfi 2016-11-14 16:02:15 -05:00
parent f7712aec07
commit a59af2a4cb
3 changed files with 9 additions and 1 deletions

View File

@ -175,6 +175,8 @@ case TT_MAZDA_MIATA_NA:
return "TT_MAZDA_MIATA_NA";
case TT_MAZDA_MIATA_NB1:
return "TT_MAZDA_MIATA_NB1";
case TT_MAZDA_MIATA_VVT_TEST:
return "TT_MAZDA_MIATA_VVT_TEST";
case TT_MINI_COOPER_R50:
return "TT_MINI_COOPER_R50";
case TT_MITSU:

View File

@ -214,7 +214,12 @@ typedef enum {
*/
TT_HONDA_ACCORD_1_24_SHIFTED = 34,
TT_UNUSED = 35, // this is used if we want to iterate over all trigger types
/**
* a version of NB1 with shifted CAM, useful for VVT testing & development
*/
TT_MAZDA_MIATA_VVT_TEST = 35,
TT_UNUSED = 36, // this is used if we want to iterate over all trigger types
Force_4b_trigger_type = ENUM_32_BITS,
} trigger_type_e;

View File

@ -478,6 +478,7 @@ void TriggerShape::initializeTriggerShape(Logging *logger DECLARE_ENGINE_PARAMET
break;
case TT_MAZDA_MIATA_NB1:
case TT_MAZDA_MIATA_VVT_TEST:
initializeMazdaMiataNb1Shape(triggerShape PASS_ENGINE_PARAMETER);
break;