|
@@ -824,7 +824,42 @@
|
824
|
824
|
#define ABL_PROBE_PT_3_X 170
|
825
|
825
|
#define ABL_PROBE_PT_3_Y 20
|
826
|
826
|
|
827
|
|
-#endif
|
|
827
|
+#elif ENABLED(MESH_BED_LEVELING)
|
|
828
|
+
|
|
829
|
+ //===========================================================================
|
|
830
|
+ //=================================== Mesh ==================================
|
|
831
|
+ //===========================================================================
|
|
832
|
+
|
|
833
|
+ #define MANUAL_PROBE_Z_RANGE 4 // Z Range centered on Z_MIN_POS for LCD Z adjustment
|
|
834
|
+ #define MESH_INSET 10 // Mesh inset margin on print area
|
|
835
|
+ #define MESH_NUM_X_POINTS 3 // Don't use more than 7 points per axis, implementation limited.
|
|
836
|
+ #define MESH_NUM_Y_POINTS 3
|
|
837
|
+
|
|
838
|
+ //#define MESH_G28_REST_ORIGIN // After homing all axes ('G28' or 'G28 XYZ') rest Z at Z_MIN_POS
|
|
839
|
+
|
|
840
|
+ //#define MANUAL_BED_LEVELING // Add display menu option for bed leveling.
|
|
841
|
+
|
|
842
|
+ #if ENABLED(MANUAL_BED_LEVELING)
|
|
843
|
+ #define MBL_Z_STEP 0.025 // Step size while manually probing Z axis.
|
|
844
|
+ #endif
|
|
845
|
+
|
|
846
|
+#elif ENABLED(AUTO_BED_LEVELING_UBL)
|
|
847
|
+
|
|
848
|
+ //===========================================================================
|
|
849
|
+ //========================= Unified Bed Leveling ============================
|
|
850
|
+ //===========================================================================
|
|
851
|
+
|
|
852
|
+ #define UBL_MESH_INSET 1 // Mesh inset margin on print area
|
|
853
|
+ #define UBL_MESH_NUM_X_POINTS 10 // Don't use more than 15 points per axis, implementation limited.
|
|
854
|
+ #define UBL_MESH_NUM_Y_POINTS 10
|
|
855
|
+ #define UBL_PROBE_PT_1_X 39 // These set the probe locations for when UBL does a 3-Point leveling
|
|
856
|
+ #define UBL_PROBE_PT_1_Y 180 // of the mesh.
|
|
857
|
+ #define UBL_PROBE_PT_2_X 39
|
|
858
|
+ #define UBL_PROBE_PT_2_Y 20
|
|
859
|
+ #define UBL_PROBE_PT_3_X 180
|
|
860
|
+ #define UBL_PROBE_PT_3_Y 20
|
|
861
|
+
|
|
862
|
+#endif // BED_LEVELING
|
828
|
863
|
|
829
|
864
|
/**
|
830
|
865
|
* Commands to execute at the end of G29 probing.
|