🐛 Fix børken E_DUAL_STEPPER_DRIVERS (#23017)

This commit is contained in:
ellensp
2021-10-25 19:12:07 +13:00
committed by Scott Lahteine
parent f51e07b196
commit a7415a052e
3 changed files with 4 additions and 4 deletions

View File

@@ -2744,7 +2744,7 @@ void Stepper::init() {
#if E_STEPPERS && HAS_E0_STEP
E_AXIS_INIT(0);
#endif
#if E_STEPPERS > 1 && HAS_E1_STEP
#if (E_STEPPERS > 1 || ENABLED(E_DUAL_STEPPER_DRIVERS)) && HAS_E1_STEP
E_AXIS_INIT(1);
#endif
#if E_STEPPERS > 2 && HAS_E2_STEP