2024-03-12 15:51:04 -07:00
|
|
|
# COUPE-BK2-comparing-against-current-COUPE-BK2-default
|
|
|
|
|
|
|
|
// canned tune https://rusefi.com/online/view.php?msq=1507
|
|
|
|
|
|
|
|
```
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[0] = 1;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[1] = 1;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[2] = 1;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[3] = 1;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[4] = 1;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[5] = 1;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[6] = 1;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[7] = 1;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[8] = 1;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[9] = 1;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[10] = 1;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->cylinderBankSelect[11] = 1;
|
2024-03-18 16:49:50 -07:00
|
|
|
// default "GPPWM Output 3"
|
|
|
|
engineConfiguration->ignBlends[0].blendParameter = GPPWM_Zero;
|
|
|
|
// default "Aux Linear 1"
|
|
|
|
engineConfiguration->veBlends[2].blendParameter = GPPWM_Zero;
|
|
|
|
// default "IAT"
|
|
|
|
engineConfiguration->boostOpenLoopBlends[0].blendParameter = GPPWM_Zero;
|
|
|
|
// default "Aux Temp 2"
|
|
|
|
engineConfiguration->boostClosedLoopBlends[1].blendParameter = GPPWM_Zero;
|
2024-03-12 15:51:04 -07:00
|
|
|
// default 300.0
|
|
|
|
engineConfiguration->idle.solenoidFrequency = 200;
|
|
|
|
// default "false"
|
|
|
|
engineConfiguration->stepperDcInvertedPins = true;
|
|
|
|
// default 0.0
|
|
|
|
engineConfiguration->idleTimingPid.dFactor = 5.0E-5;
|
|
|
|
// default 20.0
|
|
|
|
engineConfiguration->knockRetardAggression = 0;
|
|
|
|
// default 3.0
|
|
|
|
engineConfiguration->knockRetardReapplyRate = 0;
|
|
|
|
// default "MAP"
|
|
|
|
engineConfiguration->debugMode = DBG_22;
|
2024-03-18 16:49:50 -07:00
|
|
|
// default 200.0
|
|
|
|
engineConfiguration->rpmSoftLimitWindowSize = 0;
|
|
|
|
// default 4.0
|
|
|
|
engineConfiguration->rpmSoftLimitTimingRetard = 0;
|
2024-03-12 15:51:04 -07:00
|
|
|
// default 250.0
|
|
|
|
engineConfiguration->etbRevLimitRange = 0;
|
|
|
|
// default 2000.0
|
|
|
|
engineConfiguration->boostControlMinRpm = 0;
|
|
|
|
// default 30.0
|
|
|
|
engineConfiguration->boostControlMinTps = 0;
|
|
|
|
// default 110.0
|
|
|
|
engineConfiguration->boostControlMinMap = 0;
|
|
|
|
|
|
|
|
|
|
|
|
coupleBK2cannedtpsTpsAccelTable();
|
|
|
|
coupleBK2cannedboostTableOpenLoop();
|
2024-03-18 16:49:50 -07:00
|
|
|
coupleBK2cannedvvtTable1();
|
|
|
|
coupleBK2cannedvvtTable2();
|
|
|
|
coupleBK2cannedscriptTable2();
|
|
|
|
coupleBK2cannedscriptTable3();
|
2024-03-12 15:51:04 -07:00
|
|
|
coupleBK2cannedscriptTable4();
|
2024-03-18 16:49:50 -07:00
|
|
|
coupleBK2cannedALSTimingRetardTable();
|
|
|
|
coupleBK2cannedALSFuelAdjustment();
|
|
|
|
coupleBK2cannedALSIgnSkipTable();
|
|
|
|
coupleBK2cannedignitionTable();
|
|
|
|
coupleBK2cannedignitionIatCorrTable();
|
|
|
|
coupleBK2cannedveTable();
|
|
|
|
coupleBK2cannedmapEstimateTable();
|
|
|
|
coupleBK2cannedinjectionPhase();
|
2024-03-12 15:51:04 -07:00
|
|
|
coupleBK2cannedpedalToTpsTable();
|
2024-03-18 16:49:50 -07:00
|
|
|
coupleBK2cannedthrottle2TrimTable();
|
|
|
|
coupleBK2cannedmaxKnockRetardTable();
|
2024-03-12 15:51:04 -07:00
|
|
|
coupleBK2cannedlambdaTable();
|
|
|
|
coupleBK2cannedpostCrankingFactor();
|
|
|
|
```
|