|
@@ -229,11 +229,28 @@
|
229
|
229
|
|
230
|
230
|
//#define Z_LATE_ENABLE // Enable Z the last moment. Needed if your Z driver overheats.
|
231
|
231
|
|
|
232
|
+// Dual X Steppers
|
|
233
|
+// Uncomment this option to drive two X axis motors.
|
|
234
|
+// The next unused E driver will be assigned to the second X stepper.
|
|
235
|
+//#define X_DUAL_STEPPER_DRIVERS
|
|
236
|
+#if ENABLED(X_DUAL_STEPPER_DRIVERS)
|
|
237
|
+ // Set true if the two X motors need to rotate in opposite directions
|
|
238
|
+ #define INVERT_X2_VS_X_DIR true
|
|
239
|
+#endif
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+// Dual Y Steppers
|
|
243
|
+// Uncomment this option to drive two Y axis motors.
|
|
244
|
+// The next unused E driver will be assigned to the second Y stepper.
|
|
245
|
+//#define Y_DUAL_STEPPER_DRIVERS
|
|
246
|
+#if ENABLED(Y_DUAL_STEPPER_DRIVERS)
|
|
247
|
+ // Set true if the two Y motors need to rotate in opposite directions
|
|
248
|
+ #define INVERT_Y2_VS_Y_DIR true
|
|
249
|
+#endif
|
|
250
|
+
|
232
|
251
|
// A single Z stepper driver is usually used to drive 2 stepper motors.
|
233
|
|
-// Uncomment this define to utilize a separate stepper driver for each Z axis motor.
|
234
|
|
-// Only a few motherboards support this, like RAMPS, which have dual extruder support (the 2nd, often unused, extruder driver is used
|
235
|
|
-// to control the 2nd Z axis stepper motor). The pins are currently only defined for a RAMPS motherboards.
|
236
|
|
-// On a RAMPS (or other 5 driver) motherboard, using this feature will limit you to using 1 extruder.
|
|
252
|
+// Uncomment this option to use a separate stepper driver for each Z axis motor.
|
|
253
|
+// The next unused E driver will be assigned to the second Z stepper.
|
237
|
254
|
//#define Z_DUAL_STEPPER_DRIVERS
|
238
|
255
|
|
239
|
256
|
#if ENABLED(Z_DUAL_STEPPER_DRIVERS)
|
|
@@ -255,14 +272,6 @@
|
255
|
272
|
|
256
|
273
|
#endif // Z_DUAL_STEPPER_DRIVERS
|
257
|
274
|
|
258
|
|
-// Same again but for Y Axis.
|
259
|
|
-//#define Y_DUAL_STEPPER_DRIVERS
|
260
|
|
-
|
261
|
|
-#if ENABLED(Y_DUAL_STEPPER_DRIVERS)
|
262
|
|
- // Define if the two Y drives need to rotate in opposite directions
|
263
|
|
- #define INVERT_Y2_VS_Y_DIR true
|
264
|
|
-#endif
|
265
|
|
-
|
266
|
275
|
// Enable this for dual x-carriage printers.
|
267
|
276
|
// A dual x-carriage design has the advantage that the inactive extruder can be parked which
|
268
|
277
|
// prevents hot-end ooze contaminating the print. It also reduces the weight of each x-carriage
|