From bc8abaa06540eba1f831d2b1f297751ee25fd472 Mon Sep 17 00:00:00 2001 From: rusefi Date: Tue, 25 Dec 2018 17:31:21 -0500 Subject: [PATCH] #635 --- firmware/controllers/trigger/trigger_structure.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/controllers/trigger/trigger_structure.cpp b/firmware/controllers/trigger/trigger_structure.cpp index 46dd164fbf..601e0ec152 100644 --- a/firmware/controllers/trigger/trigger_structure.cpp +++ b/firmware/controllers/trigger/trigger_structure.cpp @@ -282,7 +282,7 @@ angle_t TriggerShape::getAngle(int index) const { void TriggerShape::addEvent3(angle_t angle, trigger_wheel_e const channelIndex, trigger_value_e const stateParam, float filterLeft, float filterRight DECLARE_ENGINE_PARAMETER_SUFFIX) { if (angle > filterLeft && angle < filterRight) - addEvent2(angle, channelIndex, stateParam PASS_ENGINE_PARAMETER_SUFFIX); + addEvent(engineConfiguration->useOnlyRisingEdgeForTrigger, angle / getEngineCycle(operationMode), channelIndex, stateParam); } operation_mode_e TriggerShape::getOperationMode() {