This commit is contained in:
andreyb 2023-07-19 09:27:52 -07:00
parent b4447c1ba4
commit 6615b604d4
1 changed files with 11 additions and 0 deletions

View File

@ -8,4 +8,15 @@ https://rusefi.com/docs/pinouts/hellen/hellen-112-17/
void setSlingshot() {
strcpy(engineConfiguration->engineMake, "Polaris");
setInline4();
engineConfiguration->injectionMode = IM_SEQUENTIAL;
engineConfiguration->ignitionMode = IM_WASTED_SPARK; // just for now
engineConfiguration->twoWireBatchIgnition = true;
engineConfiguration->map.sensor.type = MT_CUSTOM;
// GM TMAP is recommended
engineConfiguration->map.sensor.lowValue = 20;
engineConfiguration->mapLowValueVoltage = 0.3;
engineConfiguration->map.sensor.highValue = 250;
engineConfiguration->mapHighValueVoltage = 4.65;
}