|
@@ -751,14 +751,14 @@ void reset_stepper_drivers(); // Called by settings.load / settings.reset
|
751
|
751
|
#endif
|
752
|
752
|
|
753
|
753
|
#ifndef ENABLE_STEPPER_E1
|
754
|
|
- #if E_STEPPERS > 1 && HAS_E1_ENABLE
|
|
754
|
+ #if (E_STEPPERS > 1 || ENABLED(E_DUAL_STEPPER_DRIVERS)) && HAS_E1_ENABLE
|
755
|
755
|
#define ENABLE_STEPPER_E1() E1_ENABLE_WRITE( E_ENABLE_ON)
|
756
|
756
|
#else
|
757
|
757
|
#define ENABLE_STEPPER_E1() NOOP
|
758
|
758
|
#endif
|
759
|
759
|
#endif
|
760
|
760
|
#ifndef DISABLE_STEPPER_E1
|
761
|
|
- #if E_STEPPERS > 1 && HAS_E1_ENABLE
|
|
761
|
+ #if (E_STEPPERS > 1 || ENABLED(E_DUAL_STEPPER_DRIVERS)) && HAS_E1_ENABLE
|
762
|
762
|
#define DISABLE_STEPPER_E1() E1_ENABLE_WRITE(!E_ENABLE_ON)
|
763
|
763
|
#else
|
764
|
764
|
#define DISABLE_STEPPER_E1() NOOP
|