diff --git a/firmware/config/engines/dodge_neon.cpp b/firmware/config/engines/dodge_neon.cpp index 5544de172c..37047dd961 100644 --- a/firmware/config/engines/dodge_neon.cpp +++ b/firmware/config/engines/dodge_neon.cpp @@ -108,6 +108,9 @@ void setDodgeNeon1995EngineConfiguration(DECLARE_ENGINE_PARAMETER_F) { // set_cranking_fuel 5 engineConfiguration->cranking.baseFuel = 5; +// todo: finish implementation for 'useRiseEdge' +// engineConfiguration->useOnlyFrontForTrigger = true; + /** * that's 1995 config */ diff --git a/firmware/controllers/algo/fuel_math.h b/firmware/controllers/algo/fuel_math.h index 5970002d58..e80f51055e 100644 --- a/firmware/controllers/algo/fuel_math.h +++ b/firmware/controllers/algo/fuel_math.h @@ -28,10 +28,10 @@ floatms_t getBaseTableFuel(engine_configuration_s *engineConfiguration, int rpm, float getInjectionAngle(int rpm 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 getCrankingFuel(DECLARE_ENGINE_PARAMETER_F); -float getCrankingFuel3(float coolantTemperature, uint32_t revolutionCounterSinceStart DECLARE_ENGINE_PARAMETER_S); +floatms_t getCrankingFuel(DECLARE_ENGINE_PARAMETER_F); +floatms_t getCrankingFuel3(float coolantTemperature, uint32_t revolutionCounterSinceStart DECLARE_ENGINE_PARAMETER_S); floatms_t getFuelMs(int rpm DECLARE_ENGINE_PARAMETER_S); #endif /* FUEL_MAP_H_ */