auto-sync

This commit is contained in:
rusEfi 2016-09-21 13:02:42 -04:00
parent c5c32f43aa
commit aa85db466a
3 changed files with 13 additions and 1 deletions

View File

@ -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 */

View File

@ -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_ */

View File

@ -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;