Use same config name for all mesh dimensions
This commit is contained in:
		| @@ -864,8 +864,8 @@ | ||||
| #if ENABLED(AUTO_BED_LEVELING_LINEAR) || ENABLED(AUTO_BED_LEVELING_BILINEAR) | ||||
|  | ||||
|   // Set the number of grid points per dimension. | ||||
|   #define ABL_GRID_MAX_POINTS_X 3 | ||||
|   #define ABL_GRID_MAX_POINTS_Y ABL_GRID_MAX_POINTS_X | ||||
|   #define GRID_MAX_POINTS_X 3 | ||||
|   #define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X | ||||
|  | ||||
|   // Set the boundaries for probing (where the probe can reach). | ||||
|   #define LEFT_PROBE_BED_POSITION 15 | ||||
| @@ -911,8 +911,8 @@ | ||||
|   //=========================================================================== | ||||
|  | ||||
|   #define UBL_MESH_INSET 1          // Mesh inset margin on print area | ||||
|   #define UBL_MESH_NUM_X_POINTS 10  // Don't use more than 15 points per axis, implementation limited. | ||||
|   #define UBL_MESH_NUM_Y_POINTS 10 | ||||
|   #define GRID_MAX_POINTS_X 10      // Don't use more than 15 points per axis, implementation limited. | ||||
|   #define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X | ||||
|   #define UBL_PROBE_PT_1_X 39       // These set the probe locations for when UBL does a 3-Point leveling | ||||
|   #define UBL_PROBE_PT_1_Y 180      // of the mesh. | ||||
|   #define UBL_PROBE_PT_2_X 39 | ||||
| @@ -928,8 +928,8 @@ | ||||
|   //=========================================================================== | ||||
|  | ||||
|   #define MESH_INSET 10          // Mesh inset margin on print area | ||||
|   #define MESH_NUM_X_POINTS 3    // Don't use more than 7 points per axis, implementation limited. | ||||
|   #define MESH_NUM_Y_POINTS 3 | ||||
|   #define GRID_MAX_POINTS_X 3    // Don't use more than 7 points per axis, implementation limited. | ||||
|   #define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X | ||||
|  | ||||
|   //#define MESH_G28_REST_ORIGIN // After homing all axes ('G28' or 'G28 XYZ') rest Z at Z_MIN_POS | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user