auto-sync
This commit is contained in:
parent
c5c32f43aa
commit
aa85db466a
|
@ -527,5 +527,9 @@ void setDodgeNeonNGCEngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
|||
// end of setDodgeNeonNGCEngineConfiguration
|
||||
}
|
||||
|
||||
void setDodgeNeonNGCEngineConfigurationCrankBased(DECLARE_ENGINE_PARAMETER_F) {
|
||||
setDodgeNeonNGCEngineConfiguration(PASS_ENGINE_PARAMETER_F);
|
||||
}
|
||||
|
||||
#endif /* EFI_SUPPORT_DODGE_NEON */
|
||||
|
||||
|
|
|
@ -17,6 +17,12 @@ void setDodgeNeon1995EngineConfiguration(DECLARE_ENGINE_PARAMETER_F);
|
|||
|
||||
void setDodgeNeonNGCEngineConfiguration(DECLARE_ENGINE_PARAMETER_F);
|
||||
|
||||
/**
|
||||
* testing or broken CAM sensor option
|
||||
*/
|
||||
void setDodgeNeonNGCEngineConfigurationCrankBased(DECLARE_ENGINE_PARAMETER_F);
|
||||
|
||||
|
||||
#endif /* EFI_SUPPORT_DODGE_NEON */
|
||||
|
||||
#endif /* DODGE_NEON_H_ */
|
||||
|
|
|
@ -840,9 +840,11 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
|
|||
setDodgeNeon1995EngineConfiguration(PASS_ENGINE_PARAMETER_F);
|
||||
break;
|
||||
case DODGE_NEON_2003_CAM:
|
||||
case DODGE_NEON_2003_CRANK:
|
||||
setDodgeNeonNGCEngineConfiguration(PASS_ENGINE_PARAMETER_F);
|
||||
break;
|
||||
case DODGE_NEON_2003_CRANK:
|
||||
setDodgeNeonNGCEngineConfigurationCrankBased(PASS_ENGINE_PARAMETER_F);
|
||||
break;
|
||||
case LADA_KALINA:
|
||||
setLadaKalina(PASS_ENGINE_PARAMETER_F);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue