nissan 360/4
This commit is contained in:
parent
e3ced8c2cd
commit
7a7b2e0303
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
void setNissanPrimeraEngineConfiguration(engine_configuration_s *engineConfiguration);
|
void setNissanPrimeraEngineConfiguration(engine_configuration_s *engineConfiguration);
|
||||||
|
|
||||||
|
void setNissanPrimera360_4EngineConfiguration(engine_configuration_s *engineConfiguration);
|
||||||
#endif /* EFI_SUPPORT_NISSAN_PRIMERA */
|
#endif /* EFI_SUPPORT_NISSAN_PRIMERA */
|
||||||
|
|
||||||
#endif /* NISSAN_PRIMERA_H_ */
|
#endif /* NISSAN_PRIMERA_H_ */
|
||||||
|
|
|
@ -215,6 +215,8 @@ case TT_2JZ_3_34:
|
||||||
return "TT_2JZ_3_34";
|
return "TT_2JZ_3_34";
|
||||||
case TT_ROVER_K:
|
case TT_ROVER_K:
|
||||||
return "TT_ROVER_K";
|
return "TT_ROVER_K";
|
||||||
|
case TT_TEMP_WIP:
|
||||||
|
return "TT_TEMP_WIP";
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -244,7 +244,9 @@ typedef enum {
|
||||||
|
|
||||||
TT_JEEP_18_2_2_2 = 37,
|
TT_JEEP_18_2_2_2 = 37,
|
||||||
|
|
||||||
TT_UNUSED = 38, // this is used if we want to iterate over all trigger types
|
TT_TEMP_WIP = 38,
|
||||||
|
|
||||||
|
TT_UNUSED = 39, // this is used if we want to iterate over all trigger types
|
||||||
|
|
||||||
Force_4b_trigger_type = ENUM_32_BITS,
|
Force_4b_trigger_type = ENUM_32_BITS,
|
||||||
} trigger_type_e;
|
} trigger_type_e;
|
||||||
|
|
|
@ -634,6 +634,7 @@ void TriggerShape::initializeTriggerShape(Logging *logger DECLARE_ENGINE_PARAMET
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TT_NISSAN_SR20VE:
|
case TT_NISSAN_SR20VE:
|
||||||
|
case TT_TEMP_WIP:
|
||||||
initializeNissanSR20VE(this PASS_ENGINE_PARAMETER);
|
initializeNissanSR20VE(this PASS_ENGINE_PARAMETER);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue