2015-12-20 17:01:44 -08:00
|
|
|
/*
|
|
|
|
* @file chevrolet_c20_1973.cpp
|
|
|
|
*
|
2015-12-21 06:01:20 -08:00
|
|
|
* most stuff is from a 1991
|
2015-12-20 17:01:44 -08:00
|
|
|
* 5.7L SBC
|
|
|
|
* 4 wire IAC
|
|
|
|
* 8 pin HEI module
|
|
|
|
*
|
2017-01-06 07:04:41 -08:00
|
|
|
* set engine_type 37
|
2015-12-20 17:01:44 -08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* @date Dec 20, 2015
|
2020-01-13 18:57:43 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2015-12-20 17:01:44 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "chevrolet_c20_1973.h"
|
2015-12-21 17:02:32 -08:00
|
|
|
#include "engine_math.h"
|
2015-12-20 17:01:44 -08:00
|
|
|
|
2019-05-03 15:41:43 -07:00
|
|
|
EXTERN_CONFIG;
|
2015-12-20 17:01:44 -08:00
|
|
|
|
2019-05-03 15:41:43 -07:00
|
|
|
void set1973c20(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
|
2015-12-20 17:01:44 -08:00
|
|
|
|
|
|
|
engineConfiguration->specs.displacement = 5.7;
|
|
|
|
engineConfiguration->specs.cylindersCount = 8;
|
|
|
|
|
|
|
|
setOperationMode(engineConfiguration, FOUR_STROKE_CAM_SENSOR);
|
|
|
|
|
|
|
|
engineConfiguration->ignitionMode = IM_ONE_COIL;
|
|
|
|
engineConfiguration->specs.firingOrder = FO_1_8_4_3_6_5_7_2;
|
|
|
|
engineConfiguration->crankingInjectionMode = IM_SIMULTANEOUS;
|
|
|
|
engineConfiguration->injectionMode = IM_SIMULTANEOUS;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 8/0 toothed wheel
|
|
|
|
*/
|
|
|
|
engineConfiguration->trigger.type = TT_TOOTHED_WHEEL;
|
|
|
|
engineConfiguration->trigger.customTotalToothCount = 8;
|
|
|
|
engineConfiguration->trigger.customSkippedToothCount = 0;
|
|
|
|
|
2015-12-21 17:02:32 -08:00
|
|
|
engineConfiguration->rpmHardLimit = 5000;
|
2019-01-10 16:25:07 -08:00
|
|
|
setAlgorithm(LM_SPEED_DENSITY PASS_CONFIG_PARAMETER_SUFFIX);
|
2015-12-20 17:01:44 -08:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|