浏览代码

Fix some config comments

Scott Lahteine 6 年前
父节点
当前提交
66f83d33e6

+ 0
- 3
Marlin/src/config/examples/Formbot/T-Rex_2+/Configuration_adv.h 查看文件

354
  */
354
  */
355
 #define DUAL_X_CARRIAGE
355
 #define DUAL_X_CARRIAGE
356
 #if ENABLED(DUAL_X_CARRIAGE)
356
 #if ENABLED(DUAL_X_CARRIAGE)
357
-  // Configuration for second X-carriage
358
-  // Note: the first x-carriage is defined as the x-carriage which homes to the minimum endstop;
359
-  // the second x-carriage always homes to the maximum endstop.
360
   #define X1_MIN_POS X_MIN_POS        // set minimum to ensure first x-carriage doesn't hit the parked second X-carriage
357
   #define X1_MIN_POS X_MIN_POS        // set minimum to ensure first x-carriage doesn't hit the parked second X-carriage
361
   #define X1_MAX_POS (X_BED_SIZE)     // set maximum to ensure first x-carriage doesn't hit the parked second X-carriage
358
   #define X1_MAX_POS (X_BED_SIZE)     // set maximum to ensure first x-carriage doesn't hit the parked second X-carriage
362
   #define X2_MIN_POS 0                // set minimum to ensure second x-carriage doesn't hit the parked first X-carriage
359
   #define X2_MIN_POS 0                // set minimum to ensure second x-carriage doesn't hit the parked first X-carriage

+ 1
- 3
Marlin/src/config/examples/Formbot/T_Rex_3/Configuration.h 查看文件

2020
 // If the servo can't reach the requested position, increase it.
2020
 // If the servo can't reach the requested position, increase it.
2021
 #define SERVO_DELAY { 300 }
2021
 #define SERVO_DELAY { 300 }
2022
 
2022
 
2023
-// Servo deactivation
2024
-//
2025
-// With this option servos are powered only during movement, then turned off to prevent jitter.
2023
+// Only power servos during movement, otherwise leave off to prevent jitter
2026
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
2024
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
2027
 
2025
 
2028
 #endif // CONFIGURATION_H
2026
 #endif // CONFIGURATION_H

+ 10
- 7
Marlin/src/config/examples/Formbot/T_Rex_3/Configuration_adv.h 查看文件

342
   #endif
342
   #endif
343
 #endif
343
 #endif
344
 
344
 
345
-// Enable this for dual x-carriage printers.
346
-// A dual x-carriage design has the advantage that the inactive extruder can be parked which
347
-// prevents hot-end ooze contaminating the print. It also reduces the weight of each x-carriage
348
-// allowing faster printing speeds. Connect your X2 stepper to the first unused E plug.
345
+/**
346
+ * Dual X Carriage
347
+ *
348
+ * This setup has two X carriages that can move independently, each with its own hotend.
349
+ * The carriages can be used to print an object with two colors or materials, or in
350
+ * "duplication mode" it can print two identical or X-mirrored objects simultaneously.
351
+ * The inactive carriage is parked automatically to prevent oozing.
352
+ * X1 is the left carriage, X2 the right. They park and home at opposite ends of the X axis.
353
+ * By default the X2 stepper is assigned to the first unused E plug on the board.
354
+ */
349
 #define DUAL_X_CARRIAGE
355
 #define DUAL_X_CARRIAGE
350
 #if ENABLED(DUAL_X_CARRIAGE)
356
 #if ENABLED(DUAL_X_CARRIAGE)
351
-  // Configuration for second X-carriage
352
-  // Note: the first x-carriage is defined as the x-carriage which homes to the minimum endstop;
353
-  // the second x-carriage always homes to the maximum endstop.
354
   #define X1_MIN_POS X_MIN_POS        // set minimum to ensure first x-carriage doesn't hit the parked second X-carriage
357
   #define X1_MIN_POS X_MIN_POS        // set minimum to ensure first x-carriage doesn't hit the parked second X-carriage
355
   #define X1_MAX_POS (X_BED_SIZE)     // set maximum to ensure first x-carriage doesn't hit the parked second X-carriage
358
   #define X1_MAX_POS (X_BED_SIZE)     // set maximum to ensure first x-carriage doesn't hit the parked second X-carriage
356
   #define X2_MIN_POS 0                // set minimum to ensure second x-carriage doesn't hit the parked first X-carriage
359
   #define X2_MIN_POS 0                // set minimum to ensure second x-carriage doesn't hit the parked first X-carriage

正在加载...
取消
保存