Browse Source

MBL can actually do up to 9 x 9

Scott Lahteine 9 years ago
parent
commit
103d312f6d
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      Marlin/SanityCheck.h
  2. 1
    1
      Marlin/configuration_store.cpp

+ 2
- 2
Marlin/SanityCheck.h View File

238
     #error "MESH_BED_LEVELING does not yet support DELTA printers."
238
     #error "MESH_BED_LEVELING does not yet support DELTA printers."
239
   #elif ENABLED(AUTO_BED_LEVELING_FEATURE)
239
   #elif ENABLED(AUTO_BED_LEVELING_FEATURE)
240
     #error "Select AUTO_BED_LEVELING_FEATURE or MESH_BED_LEVELING, not both."
240
     #error "Select AUTO_BED_LEVELING_FEATURE or MESH_BED_LEVELING, not both."
241
-  #elif MESH_NUM_X_POINTS > 7 || MESH_NUM_Y_POINTS > 7
242
-    #error "MESH_NUM_X_POINTS and MESH_NUM_Y_POINTS need to be less than 8."
241
+  #elif MESH_NUM_X_POINTS > 9 || MESH_NUM_Y_POINTS > 9
242
+    #error "MESH_NUM_X_POINTS and MESH_NUM_Y_POINTS must be less than 10."
243
   #endif
243
   #endif
244
 #elif ENABLED(MANUAL_BED_LEVELING)
244
 #elif ENABLED(MANUAL_BED_LEVELING)
245
   #error "MESH_BED_LEVELING is required for MANUAL_BED_LEVELING."
245
   #error "MESH_BED_LEVELING is required for MANUAL_BED_LEVELING."

+ 1
- 1
Marlin/configuration_store.cpp View File

67
  *  203            z_offset (float)
67
  *  203            z_offset (float)
68
  *  207            mesh_num_x (uint8 as set in firmware)
68
  *  207            mesh_num_x (uint8 as set in firmware)
69
  *  208            mesh_num_y (uint8 as set in firmware)
69
  *  208            mesh_num_y (uint8 as set in firmware)
70
- *  209 G29 S3 XYZ z_values[][] (float x9, by default)
70
+ *  209 G29 S3 XYZ z_values[][] (float x9, by default, up to float x 81)
71
  *
71
  *
72
  * AUTO BED LEVELING
72
  * AUTO BED LEVELING
73
  *  245  M851      zprobe_zoffset (float)
73
  *  245  M851      zprobe_zoffset (float)

Loading…
Cancel
Save