浏览代码

Added check for Delta printers in Mesh, #error not yet supported.

Edward Patel 10 年前
父节点
当前提交
d27c82a450

+ 5
- 0
Marlin/Configuration.h 查看文件

@@ -399,6 +399,11 @@ const bool Z_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic
399 399
 #endif  // MANUAL_BED_LEVELING
400 400
 
401 401
 #ifdef MESH_BED_LEVELING
402
+
403
+  #ifdef DELTA
404
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
405
+  #endif
406
+
402 407
   #define MESH_MIN_X 10
403 408
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
404 409
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/configurator/config/Configuration.h 查看文件

@@ -417,6 +417,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
417 417
 #endif  // MANUAL_BED_LEVELING
418 418
 
419 419
 #ifdef MESH_BED_LEVELING
420
+
421
+  #ifdef DELTA
422
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
423
+  #endif
424
+
420 425
   #define MESH_MIN_X 10
421 426
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
422 427
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/Felix/Configuration.h 查看文件

@@ -369,6 +369,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
369 369
 #endif  // MANUAL_BED_LEVELING
370 370
 
371 371
 #ifdef MESH_BED_LEVELING
372
+
373
+  #ifdef DELTA
374
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
375
+  #endif
376
+
372 377
   #define MESH_MIN_X 10
373 378
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
374 379
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/Hephestos/Configuration.h 查看文件

@@ -392,6 +392,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
392 392
 #endif  // MANUAL_BED_LEVELING
393 393
 
394 394
 #ifdef MESH_BED_LEVELING
395
+
396
+  #ifdef DELTA
397
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
398
+  #endif
399
+
395 400
   #define MESH_MIN_X 10
396 401
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
397 402
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/K8200/Configuration.h 查看文件

@@ -397,6 +397,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
397 397
 #endif  // MANUAL_BED_LEVELING
398 398
 
399 399
 #ifdef MESH_BED_LEVELING
400
+
401
+  #ifdef DELTA
402
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
403
+  #endif
404
+
400 405
   #define MESH_MIN_X 10
401 406
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
402 407
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/SCARA/Configuration.h 查看文件

@@ -421,6 +421,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
421 421
 #endif  // MANUAL_BED_LEVELING
422 422
 
423 423
 #ifdef MESH_BED_LEVELING
424
+
425
+  #ifdef DELTA
426
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
427
+  #endif
428
+
424 429
   #define MESH_MIN_X 10
425 430
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
426 431
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/WITBOX/Configuration.h 查看文件

@@ -391,6 +391,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
391 391
 #endif  // MANUAL_BED_LEVELING
392 392
 
393 393
 #ifdef MESH_BED_LEVELING
394
+
395
+  #ifdef DELTA
396
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
397
+  #endif
398
+
394 399
   #define MESH_MIN_X 10
395 400
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
396 401
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/delta/generic/Configuration.h 查看文件

@@ -419,6 +419,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
419 419
 #endif  // MANUAL_BED_LEVELING
420 420
 
421 421
 #ifdef MESH_BED_LEVELING
422
+
423
+  #ifdef DELTA
424
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
425
+  #endif
426
+
422 427
   #define MESH_MIN_X 10
423 428
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
424 429
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/delta/kossel_mini/Configuration.h 查看文件

@@ -419,6 +419,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
419 419
 #endif  // MANUAL_BED_LEVELING
420 420
 
421 421
 #ifdef MESH_BED_LEVELING
422
+
423
+  #ifdef DELTA
424
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
425
+  #endif
426
+
422 427
   #define MESH_MIN_X 10
423 428
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
424 429
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/makibox/Configuration.h 查看文件

@@ -389,6 +389,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
389 389
 #endif  // MANUAL_BED_LEVELING
390 390
 
391 391
 #ifdef MESH_BED_LEVELING
392
+
393
+  #ifdef DELTA
394
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
395
+  #endif
396
+
392 397
   #define MESH_MIN_X 10
393 398
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
394 399
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/tvrrug/Round2/Configuration.h 查看文件

@@ -391,6 +391,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
391 391
 #endif  // MANUAL_BED_LEVELING
392 392
 
393 393
 #ifdef MESH_BED_LEVELING
394
+
395
+  #ifdef DELTA
396
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
397
+  #endif
398
+
394 399
   #define MESH_MIN_X 10
395 400
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
396 401
   #define MESH_MIN_Y 10

正在加载...
取消
保存