auto-sync
This commit is contained in:
parent
c543062b30
commit
fa27e923bb
|
@ -108,6 +108,9 @@ void setDodgeNeon1995EngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
||||||
// set_cranking_fuel 5
|
// set_cranking_fuel 5
|
||||||
engineConfiguration->cranking.baseFuel = 5;
|
engineConfiguration->cranking.baseFuel = 5;
|
||||||
|
|
||||||
|
// todo: finish implementation for 'useRiseEdge'
|
||||||
|
// engineConfiguration->useOnlyFrontForTrigger = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* that's 1995 config
|
* that's 1995 config
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -28,10 +28,10 @@ floatms_t getBaseTableFuel(engine_configuration_s *engineConfiguration, int rpm,
|
||||||
|
|
||||||
float getInjectionAngle(int rpm DECLARE_ENGINE_PARAMETER_S);
|
float getInjectionAngle(int rpm DECLARE_ENGINE_PARAMETER_S);
|
||||||
float getIatCorrection(float iat DECLARE_ENGINE_PARAMETER_S);
|
float getIatCorrection(float iat DECLARE_ENGINE_PARAMETER_S);
|
||||||
float getInjectorLag(float vBatt DECLARE_ENGINE_PARAMETER_S);
|
floatms_t getInjectorLag(float vBatt DECLARE_ENGINE_PARAMETER_S);
|
||||||
float getCltCorrection(float clt DECLARE_ENGINE_PARAMETER_S);
|
float getCltCorrection(float clt DECLARE_ENGINE_PARAMETER_S);
|
||||||
float getCrankingFuel(DECLARE_ENGINE_PARAMETER_F);
|
floatms_t getCrankingFuel(DECLARE_ENGINE_PARAMETER_F);
|
||||||
float getCrankingFuel3(float coolantTemperature, uint32_t revolutionCounterSinceStart DECLARE_ENGINE_PARAMETER_S);
|
floatms_t getCrankingFuel3(float coolantTemperature, uint32_t revolutionCounterSinceStart DECLARE_ENGINE_PARAMETER_S);
|
||||||
floatms_t getFuelMs(int rpm DECLARE_ENGINE_PARAMETER_S);
|
floatms_t getFuelMs(int rpm DECLARE_ENGINE_PARAMETER_S);
|
||||||
|
|
||||||
#endif /* FUEL_MAP_H_ */
|
#endif /* FUEL_MAP_H_ */
|
||||||
|
|
Loading…
Reference in New Issue