Procházet zdrojové kódy

Move extruder offset settings next to extruders setting

Scott Lahteine před 10 roky
rodič
revize
df21857583

+ 6
- 6
Marlin/example_configurations/delta/biv2.5/Configuration.h Zobrazit soubor

@@ -83,6 +83,12 @@ Here are some standard links for getting your machine calibrated:
83 83
 // :[1,2,3,4]
84 84
 #define EXTRUDERS 2
85 85
 
86
+// Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing).
87
+// The offset has to be X=0, Y=0 for the extruder 0 hotend (default extruder).
88
+// For the other hotends it is their distance from the extruder 0 hotend.
89
+//#define EXTRUDER_OFFSET_X {0.0, 20.00} // (in mm) for each extruder, offset of the hotend on the X axis
90
+//#define EXTRUDER_OFFSET_Y {0.0, 5.00}  // (in mm) for each extruder, offset of the hotend on the Y axis
91
+
86 92
 //// The following define selects which power supply you have. Please choose the one that matches your setup
87 93
 // 1 = ATX
88 94
 // 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
@@ -611,12 +617,6 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic
611 617
 #define DEFAULT_RETRACT_ACCELERATION  3000    // E acceleration in mm/s^2 for retracts
612 618
 #define DEFAULT_TRAVEL_ACCELERATION   3000    // X, Y, Z acceleration in mm/s^2 for travel (non printing) moves
613 619
 
614
-// Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing).
615
-// The offset has to be X=0, Y=0 for the extruder 0 hotend (default extruder).
616
-// For the other hotends it is their distance from the extruder 0 hotend.
617
-// #define EXTRUDER_OFFSET_X {0.0, 20.00} // (in mm) for each extruder, offset of the hotend on the X axis
618
-// #define EXTRUDER_OFFSET_Y {0.0, 5.00}  // (in mm) for each extruder, offset of the hotend on the Y axis
619
-
620 620
 // The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously)
621 621
 #define DEFAULT_XYJERK                15.0    // (mm/sec)
622 622
 #define DEFAULT_ZJERK                 15.0    // (mm/sec) Must be same as XY for delta

+ 6
- 6
Marlin/example_configurations/delta/generic/Configuration.h Zobrazit soubor

@@ -83,6 +83,12 @@ Here are some standard links for getting your machine calibrated:
83 83
 // :[1,2,3,4]
84 84
 #define EXTRUDERS 1
85 85
 
86
+// Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing).
87
+// The offset has to be X=0, Y=0 for the extruder 0 hotend (default extruder).
88
+// For the other hotends it is their distance from the extruder 0 hotend.
89
+//#define EXTRUDER_OFFSET_X {0.0, 20.00} // (in mm) for each extruder, offset of the hotend on the X axis
90
+//#define EXTRUDER_OFFSET_Y {0.0, 5.00}  // (in mm) for each extruder, offset of the hotend on the Y axis
91
+
86 92
 //// The following define selects which power supply you have. Please choose the one that matches your setup
87 93
 // 1 = ATX
88 94
 // 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
@@ -614,12 +620,6 @@ const bool Z_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic
614 620
 #define DEFAULT_RETRACT_ACCELERATION  3000    // E acceleration in mm/s^2 for retracts
615 621
 #define DEFAULT_TRAVEL_ACCELERATION   3000    // X, Y, Z acceleration in mm/s^2 for travel (non printing) moves
616 622
 
617
-// Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing).
618
-// The offset has to be X=0, Y=0 for the extruder 0 hotend (default extruder).
619
-// For the other hotends it is their distance from the extruder 0 hotend.
620
-// #define EXTRUDER_OFFSET_X {0.0, 20.00} // (in mm) for each extruder, offset of the hotend on the X axis
621
-// #define EXTRUDER_OFFSET_Y {0.0, 5.00}  // (in mm) for each extruder, offset of the hotend on the Y axis
622
-
623 623
 // The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously)
624 624
 #define DEFAULT_XYJERK                20.0    // (mm/sec)
625 625
 #define DEFAULT_ZJERK                 20.0    // (mm/sec) Must be same as XY for delta

+ 6
- 6
Marlin/example_configurations/delta/kossel_mini/Configuration.h Zobrazit soubor

@@ -83,6 +83,12 @@ Here are some standard links for getting your machine calibrated:
83 83
 // :[1,2,3,4]
84 84
 #define EXTRUDERS 1
85 85
 
86
+// Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing).
87
+// The offset has to be X=0, Y=0 for the extruder 0 hotend (default extruder).
88
+// For the other hotends it is their distance from the extruder 0 hotend.
89
+//#define EXTRUDER_OFFSET_X {0.0, 20.00} // (in mm) for each extruder, offset of the hotend on the X axis
90
+//#define EXTRUDER_OFFSET_Y {0.0, 5.00}  // (in mm) for each extruder, offset of the hotend on the Y axis
91
+
86 92
 //// The following define selects which power supply you have. Please choose the one that matches your setup
87 93
 // 1 = ATX
88 94
 // 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
@@ -635,12 +641,6 @@ const bool Z_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic
635 641
 #define DEFAULT_RETRACT_ACCELERATION  3000    // E acceleration in mm/s^2 for retracts
636 642
 #define DEFAULT_TRAVEL_ACCELERATION   3000    // X, Y, Z acceleration in mm/s^2 for travel (non printing) moves
637 643
 
638
-// Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing).
639
-// The offset has to be X=0, Y=0 for the extruder 0 hotend (default extruder).
640
-// For the other hotends it is their distance from the extruder 0 hotend.
641
-// #define EXTRUDER_OFFSET_X {0.0, 20.00} // (in mm) for each extruder, offset of the hotend on the X axis
642
-// #define EXTRUDER_OFFSET_Y {0.0, 5.00}  // (in mm) for each extruder, offset of the hotend on the Y axis
643
-
644 644
 // The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously)
645 645
 #define DEFAULT_XYJERK                20.0    // (mm/sec)
646 646
 #define DEFAULT_ZJERK                 20.0    // (mm/sec) Must be same as XY for delta

Loading…
Zrušit
Uložit