RAM efficiency of VR crank trigger shapes #2182

Audi OEM 5-cyl trigger pattern aka "Tri-Tach" https://rusefi.com/forum/viewtopic.php?f=5&t=1912
This commit is contained in:
rusefillc 2021-01-04 23:44:31 -05:00
parent 5d2fd1e1fb
commit 6c01aedbb0
3 changed files with 8 additions and 5 deletions

View File

@ -45,11 +45,8 @@ void configureTriTach(TriggerWaveform * s) {
addSkippedToothTriggerEvents(T_SECONDARY, s, totalTeethCount, /* skipped */ 0, toothWidth, offset, engineCycle,
//1.5 * FOUR_STROKE_ENGINE_CYCLE / 135,
700,
1.0 * FOUR_STROKE_ENGINE_CYCLE / 135,
NO_RIGHT_FILTER);
}
void configureFordST170(TriggerWaveform * s) {

View File

@ -43,7 +43,10 @@ public class TriggerImage {
private static int sleepAtEnd;
private static int onlyOneTrigger = -1;
// todo: https://github.com/rusefi/rusefi/issues/2077
/**
* todo: https://github.com/rusefi/rusefi/issues/2077
* @see TriggerWheelInfo#isFirstCrankBased
*/
private static String getTriggerName(TriggerWheelInfo triggerName) {
switch (triggerName.id) {
case Fields.TT_TT_FORD_ASPIRE:
@ -84,6 +87,8 @@ public class TriggerImage {
return "36/1";
case Fields.TT_TT_TOOTHED_WHEEL_36_2:
return "36/2";
case Fields.TT_TT_TRI_TACH:
return "TriTach";
case Fields.TT_TT_TOOTHED_WHEEL_60_2:
return "60/2";
}

View File

@ -100,6 +100,7 @@ class TriggerWheelInfo {
id == Fields.TT_TT_RENIX_44_2_2 ||
id == Fields.TT_TT_RENIX_66_2_2_2 ||
id == Fields.TT_TT_MIATA_VVT ||
id == Fields.TT_TT_TRI_TACH ||
id == Fields.TT_TT_GM_7X;
}