|
@@ -138,7 +138,7 @@
|
138
|
138
|
|
139
|
139
|
// Optional custom name for your RepStrap or other custom machine
|
140
|
140
|
// Displayed in the LCD "Ready" message
|
141
|
|
-#define CUSTOM_MACHINE_NAME "FT-2020 v4"
|
|
141
|
+#define CUSTOM_MACHINE_NAME "FT-2020 v5"
|
142
|
142
|
|
143
|
143
|
// Define this to set a unique identifier for this printer, (Used by some programs to differentiate between machines)
|
144
|
144
|
// You can use an online service to generate a random UUID. (eg http://www.uuidgenerator.net/version4)
|
|
@@ -555,7 +555,7 @@
|
555
|
555
|
* Override with M203
|
556
|
556
|
* X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
|
557
|
557
|
*/
|
558
|
|
-#define DEFAULT_MAX_FEEDRATE { 250, 250, 4, 17 }
|
|
558
|
+#define DEFAULT_MAX_FEEDRATE { 250, 250, 6, 17 }
|
559
|
559
|
|
560
|
560
|
/**
|
561
|
561
|
* Default Max Acceleration (change/s) change = mm/s
|
|
@@ -563,7 +563,7 @@
|
563
|
563
|
* Override with M201
|
564
|
564
|
* X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
|
565
|
565
|
*/
|
566
|
|
-#define DEFAULT_MAX_ACCELERATION { 1000, 1000, 4, 750 }
|
|
566
|
+#define DEFAULT_MAX_ACCELERATION { 1000, 1000, 10, 750 }
|
567
|
567
|
|
568
|
568
|
/**
|
569
|
569
|
* Default Acceleration (change/s) change = mm/s
|
|
@@ -587,7 +587,7 @@
|
587
|
587
|
*/
|
588
|
588
|
#define DEFAULT_XJERK 8.5
|
589
|
589
|
#define DEFAULT_YJERK 8.5
|
590
|
|
-#define DEFAULT_ZJERK 0.75
|
|
590
|
+#define DEFAULT_ZJERK 0.3
|
591
|
591
|
#define DEFAULT_EJERK 4.0
|
592
|
592
|
|
593
|
593
|
//===========================================================================
|
|
@@ -734,8 +734,8 @@
|
734
|
734
|
* Example: `M851 Z-5` with a CLEARANCE of 4 => 9mm from bed to nozzle.
|
735
|
735
|
* But: `M851 Z+1` with a CLEARANCE of 2 => 2mm from bed to nozzle.
|
736
|
736
|
*/
|
737
|
|
-#define Z_CLEARANCE_DEPLOY_PROBE 3 // Z Clearance for Deploy/Stow
|
738
|
|
-#define Z_CLEARANCE_BETWEEN_PROBES 3 // Z Clearance between probe points
|
|
737
|
+#define Z_CLEARANCE_DEPLOY_PROBE 5 // Z Clearance for Deploy/Stow
|
|
738
|
+#define Z_CLEARANCE_BETWEEN_PROBES 5 // Z Clearance between probe points
|
739
|
739
|
|
740
|
740
|
// For M851 give a range for adjusting the Z probe offset
|
741
|
741
|
#define Z_PROBE_OFFSET_RANGE_MIN -20
|
|
@@ -806,8 +806,8 @@
|
806
|
806
|
#define X_MIN_POS 6
|
807
|
807
|
#define Y_MIN_POS 3
|
808
|
808
|
#define Z_MIN_POS 0
|
809
|
|
-#define X_MAX_POS 207
|
810
|
|
-#define Y_MAX_POS 182
|
|
809
|
+#define X_MAX_POS 212
|
|
810
|
+#define Y_MAX_POS 190
|
811
|
811
|
#define Z_MAX_POS 175
|
812
|
812
|
|
813
|
813
|
/**
|
|
@@ -981,7 +981,7 @@
|
981
|
981
|
|
982
|
982
|
//#define MESH_EDIT_GFX_OVERLAY // Display a graphics overlay while editing the mesh
|
983
|
983
|
|
984
|
|
- #define MESH_INSET 1 // Mesh inset margin on print area
|
|
984
|
+ #define MESH_INSET 0 // Mesh inset margin on print area
|
985
|
985
|
#define GRID_MAX_POINTS_X 10 // Don't use more than 15 points per axis, implementation limited.
|
986
|
986
|
#define GRID_MAX_POINTS_Y 10
|
987
|
987
|
|
|
@@ -1189,7 +1189,7 @@
|
1189
|
1189
|
// Specify a park position as { X, Y, Z }
|
1190
|
1190
|
#define NOZZLE_PARK_POINT { (X_MIN_POS + 10), (Y_MAX_POS - 10), 20 }
|
1191
|
1191
|
#define NOZZLE_PARK_XY_FEEDRATE 100 // X and Y axes feedrate in mm/s (also used for delta printers Z axis)
|
1192
|
|
- #define NOZZLE_PARK_Z_FEEDRATE 5 // Z axis feedrate in mm/s (not used for delta printers)
|
|
1192
|
+ #define NOZZLE_PARK_Z_FEEDRATE 8 // Z axis feedrate in mm/s (not used for delta printers)
|
1193
|
1193
|
#endif
|
1194
|
1194
|
|
1195
|
1195
|
/**
|