From 9ed58a5ba01b5c71c25f16da82b9b150794c001f Mon Sep 17 00:00:00 2001 From: rusefi Date: Thu, 31 Jan 2019 18:30:40 -0500 Subject: [PATCH] better conditional compilation --- firmware/controllers/math/engine_math.cpp | 2 +- firmware/controllers/trigger/decoders/trigger_structure.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/firmware/controllers/math/engine_math.cpp b/firmware/controllers/math/engine_math.cpp index f494d9e733..4563e79600 100644 --- a/firmware/controllers/math/engine_math.cpp +++ b/firmware/controllers/math/engine_math.cpp @@ -496,7 +496,7 @@ void prepareOutputSignals(DECLARE_ENGINE_PARAMETER_SIGNATURE) { TRIGGER_SHAPE(prepareShape()); } -#endif +#endif /* EFI_ENGINE_CONTROL */ void setFuelRpmBin(float from, float to DECLARE_CONFIG_PARAMETER_SUFFIX) { setTableBin(config->fuelRpmBins, FUEL_RPM_COUNT, from, to); diff --git a/firmware/controllers/trigger/decoders/trigger_structure.cpp b/firmware/controllers/trigger/decoders/trigger_structure.cpp index e7c7ad8ae5..c01aba8514 100644 --- a/firmware/controllers/trigger/decoders/trigger_structure.cpp +++ b/firmware/controllers/trigger/decoders/trigger_structure.cpp @@ -368,6 +368,7 @@ void TriggerShape::findTriggerPosition(event_trigger_position_s *position, } void TriggerShape::prepareShape() { +#if (EFI_ENGINE_CONTROL && EFI_SHAFT_POSITION_INPUT) || defined(__DOXYGEN__) int engineCycleInt = (int) getEngineCycle(operationMode); for (int angle = 0; angle < engineCycleInt; angle++) { int triggerShapeIndex = findAngleIndex(angle); @@ -377,6 +378,7 @@ void TriggerShape::prepareShape() { } triggerIndexByAngle[angle] = triggerShapeIndex; } +#endif } void TriggerShape::setTriggerSynchronizationGap(float syncRatio) {