rusefi/firmware/config/engines/dodge_ram.cpp

35 lines
843 B
C++
Raw Normal View History

2015-07-10 06:01:56 -07:00
/*
* @file dodge_ram.cpp
*
2017-01-06 07:04:41 -08:00
* set engine_type 31
2015-07-10 06:01:56 -07:00
*
* @date Apr 22, 2015
2020-01-13 18:57:43 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2015-07-10 06:01:56 -07:00
*/
#include "pch.h"
2015-07-10 06:01:56 -07:00
#include "dodge_ram.h"
#include "custom_engine.h"
void setDodgeRam1996() {
setFrankensoConfiguration();
2015-07-10 06:01:56 -07:00
engineConfiguration->trigger.type = trigger_type_e::TT_DODGE_RAM;
2015-07-10 06:01:56 -07:00
engineConfiguration->injector.flow = 243.6; // 23.2lb/h
engineConfiguration->map.sensor.type = MT_DODGE_NEON_2003;
//Base engine setting
engineConfiguration->cylindersCount = 8;
engineConfiguration->firingOrder = FO_1_8_4_3_6_5_7_2;
engineConfiguration->displacement = 5.2;
2015-07-10 06:01:56 -07:00
2017-01-06 07:04:41 -08:00
// set global_trigger_offset_angle -50
2015-07-10 06:01:56 -07:00
engineConfiguration->globalTriggerAngleOffset = -50;
setDodgeSensor(&engineConfiguration->clt, 2700);
setDodgeSensor(&engineConfiguration->iat, 2700);
2015-07-10 06:01:56 -07:00
engineConfiguration->useStepperIdle = true;
2015-07-10 06:01:56 -07:00
}