From a4c78ae7860917e3b2bd477d4d35f29287c39110 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <sourcetree@thinkyhead.com>
Date: Thu, 27 Aug 2015 18:16:46 -0700
Subject: [PATCH] Add E1 pins to SENSITIVE_PINS for Dual Y or Dual Z

---
 Marlin/pins.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Marlin/pins.h b/Marlin/pins.h
index 89546b7bc95..4c6768eece8 100644
--- a/Marlin/pins.h
+++ b/Marlin/pins.h
@@ -143,6 +143,9 @@
       #define _E3_PINS E3_STEP_PIN, E3_DIR_PIN, E3_ENABLE_PIN, HEATER_3_PIN, analogInputToDigitalPin(TEMP_3_PIN),
     #endif
   #endif
+#elif ENABLED(Y_DUAL_STEPPER_DRIVERS) || ENABLED(Z_DUAL_STEPPER_DRIVERS)
+  #undef _E1_PINS
+  #define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN,
 #endif
 
 #ifdef X_STOP_PIN