From d82bcdeea1971c759d71926c993c5a94a823b021 Mon Sep 17 00:00:00 2001 From: AnHardt Date: Wed, 17 Oct 2018 16:52:57 +0200 Subject: [PATCH] Make PULSE_STOP(E) conditional (#12121) --- Marlin/src/module/stepper.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Marlin/src/module/stepper.cpp b/Marlin/src/module/stepper.cpp index 2ff1e583c..d224114b9 100644 --- a/Marlin/src/module/stepper.cpp +++ b/Marlin/src/module/stepper.cpp @@ -1443,7 +1443,9 @@ void Stepper::stepper_pulse_phase_isr() { E_STEP_WRITE(mixer.get_stepper(), INVERT_E_STEP_PIN); } #else // !MIXING_EXTRUDER - PULSE_STOP(E); + #if HAS_E0_STEP + PULSE_STOP(E); + #endif #endif #endif // !LIN_ADVANCE