diff --git a/firmware/controllers/engine_cycle/main_trigger_callback.cpp b/firmware/controllers/engine_cycle/main_trigger_callback.cpp index fca28931cf..1753f9e030 100644 --- a/firmware/controllers/engine_cycle/main_trigger_callback.cpp +++ b/firmware/controllers/engine_cycle/main_trigger_callback.cpp @@ -410,18 +410,13 @@ static void mainTriggerCallback(trigger_event_e ckpSignalType, uint32_t trgEvent bool limitedSpark = rpm > CONFIG(rpmHardLimit); bool limitedFuel = rpm > CONFIG(rpmHardLimit); - if (CONFIG(boostCutPressure) !=0) { + if (CONFIG(boostCutPressure) != 0) { if (getMap(PASS_ENGINE_PARAMETER_SIGNATURE) > CONFIG(boostCutPressure)) { limitedSpark = true; limitedFuel = true; } } - if (limitedSpark || limitedFuel) { - // todo: this is not really a warning - warning(CUSTOM_SKIPPING_STROKE, "skipping stroke due to rpm=%d", rpm); - } - if (trgEventIndex == 0) { if (HAVE_CAM_INPUT()) { engine->triggerCentral.validateCamVvtCounters();