ソースを参照

MBL can actually do up to 9 x 9

Scott Lahteine 8年前
コミット
103d312f6d
2個のファイルの変更3行の追加3行の削除
  1. 2
    2
      Marlin/SanityCheck.h
  2. 1
    1
      Marlin/configuration_store.cpp

+ 2
- 2
Marlin/SanityCheck.h ファイルの表示

@@ -238,8 +238,8 @@
238 238
     #error "MESH_BED_LEVELING does not yet support DELTA printers."
239 239
   #elif ENABLED(AUTO_BED_LEVELING_FEATURE)
240 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 243
   #endif
244 244
 #elif ENABLED(MANUAL_BED_LEVELING)
245 245
   #error "MESH_BED_LEVELING is required for MANUAL_BED_LEVELING."

+ 1
- 1
Marlin/configuration_store.cpp ファイルの表示

@@ -67,7 +67,7 @@
67 67
  *  203            z_offset (float)
68 68
  *  207            mesh_num_x (uint8 as set in firmware)
69 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 72
  * AUTO BED LEVELING
73 73
  *  245  M851      zprobe_zoffset (float)

読み込み中…
キャンセル
保存