Browse Source

Follow-up the PR #4271 (X_DUAL_STEPPER_DRIVERS)

・Update a forgotten Configuration_adv.h of K8400
esenapaj 8 years ago
parent
commit
9b5cbf2423
1 changed files with 21 additions and 12 deletions
  1. 21
    12
      Marlin/example_configurations/K8400/Configuration_adv.h

+ 21
- 12
Marlin/example_configurations/K8400/Configuration_adv.h View File

229
 
229
 
230
 //#define Z_LATE_ENABLE // Enable Z the last moment. Needed if your Z driver overheats.
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
 // A single Z stepper driver is usually used to drive 2 stepper motors.
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
 //#define Z_DUAL_STEPPER_DRIVERS
254
 //#define Z_DUAL_STEPPER_DRIVERS
238
 
255
 
239
 #if ENABLED(Z_DUAL_STEPPER_DRIVERS)
256
 #if ENABLED(Z_DUAL_STEPPER_DRIVERS)
255
 
272
 
256
 #endif // Z_DUAL_STEPPER_DRIVERS
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
 // Enable this for dual x-carriage printers.
275
 // Enable this for dual x-carriage printers.
267
 // A dual x-carriage design has the advantage that the inactive extruder can be parked which
276
 // A dual x-carriage design has the advantage that the inactive extruder can be parked which
268
 // prevents hot-end ooze contaminating the print. It also reduces the weight of each x-carriage
277
 // prevents hot-end ooze contaminating the print. It also reduces the weight of each x-carriage

Loading…
Cancel
Save