Browse Source

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

Edward Patel 10 years ago
parent
commit
d27c82a450

+ 5
- 0
Marlin/Configuration.h View File

399
 #endif  // MANUAL_BED_LEVELING
399
 #endif  // MANUAL_BED_LEVELING
400
 
400
 
401
 #ifdef MESH_BED_LEVELING
401
 #ifdef MESH_BED_LEVELING
402
+
403
+  #ifdef DELTA
404
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
405
+  #endif
406
+
402
   #define MESH_MIN_X 10
407
   #define MESH_MIN_X 10
403
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
408
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
404
   #define MESH_MIN_Y 10
409
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/configurator/config/Configuration.h View File

417
 #endif  // MANUAL_BED_LEVELING
417
 #endif  // MANUAL_BED_LEVELING
418
 
418
 
419
 #ifdef MESH_BED_LEVELING
419
 #ifdef MESH_BED_LEVELING
420
+
421
+  #ifdef DELTA
422
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
423
+  #endif
424
+
420
   #define MESH_MIN_X 10
425
   #define MESH_MIN_X 10
421
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
426
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
422
   #define MESH_MIN_Y 10
427
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/Felix/Configuration.h View File

369
 #endif  // MANUAL_BED_LEVELING
369
 #endif  // MANUAL_BED_LEVELING
370
 
370
 
371
 #ifdef MESH_BED_LEVELING
371
 #ifdef MESH_BED_LEVELING
372
+
373
+  #ifdef DELTA
374
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
375
+  #endif
376
+
372
   #define MESH_MIN_X 10
377
   #define MESH_MIN_X 10
373
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
378
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
374
   #define MESH_MIN_Y 10
379
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/Hephestos/Configuration.h View File

392
 #endif  // MANUAL_BED_LEVELING
392
 #endif  // MANUAL_BED_LEVELING
393
 
393
 
394
 #ifdef MESH_BED_LEVELING
394
 #ifdef MESH_BED_LEVELING
395
+
396
+  #ifdef DELTA
397
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
398
+  #endif
399
+
395
   #define MESH_MIN_X 10
400
   #define MESH_MIN_X 10
396
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
401
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
397
   #define MESH_MIN_Y 10
402
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/K8200/Configuration.h View File

397
 #endif  // MANUAL_BED_LEVELING
397
 #endif  // MANUAL_BED_LEVELING
398
 
398
 
399
 #ifdef MESH_BED_LEVELING
399
 #ifdef MESH_BED_LEVELING
400
+
401
+  #ifdef DELTA
402
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
403
+  #endif
404
+
400
   #define MESH_MIN_X 10
405
   #define MESH_MIN_X 10
401
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
406
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
402
   #define MESH_MIN_Y 10
407
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/SCARA/Configuration.h View File

421
 #endif  // MANUAL_BED_LEVELING
421
 #endif  // MANUAL_BED_LEVELING
422
 
422
 
423
 #ifdef MESH_BED_LEVELING
423
 #ifdef MESH_BED_LEVELING
424
+
425
+  #ifdef DELTA
426
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
427
+  #endif
428
+
424
   #define MESH_MIN_X 10
429
   #define MESH_MIN_X 10
425
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
430
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
426
   #define MESH_MIN_Y 10
431
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/WITBOX/Configuration.h View File

391
 #endif  // MANUAL_BED_LEVELING
391
 #endif  // MANUAL_BED_LEVELING
392
 
392
 
393
 #ifdef MESH_BED_LEVELING
393
 #ifdef MESH_BED_LEVELING
394
+
395
+  #ifdef DELTA
396
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
397
+  #endif
398
+
394
   #define MESH_MIN_X 10
399
   #define MESH_MIN_X 10
395
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
400
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
396
   #define MESH_MIN_Y 10
401
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/delta/generic/Configuration.h View File

419
 #endif  // MANUAL_BED_LEVELING
419
 #endif  // MANUAL_BED_LEVELING
420
 
420
 
421
 #ifdef MESH_BED_LEVELING
421
 #ifdef MESH_BED_LEVELING
422
+
423
+  #ifdef DELTA
424
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
425
+  #endif
426
+
422
   #define MESH_MIN_X 10
427
   #define MESH_MIN_X 10
423
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
428
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
424
   #define MESH_MIN_Y 10
429
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/delta/kossel_mini/Configuration.h View File

419
 #endif  // MANUAL_BED_LEVELING
419
 #endif  // MANUAL_BED_LEVELING
420
 
420
 
421
 #ifdef MESH_BED_LEVELING
421
 #ifdef MESH_BED_LEVELING
422
+
423
+  #ifdef DELTA
424
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
425
+  #endif
426
+
422
   #define MESH_MIN_X 10
427
   #define MESH_MIN_X 10
423
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
428
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
424
   #define MESH_MIN_Y 10
429
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/makibox/Configuration.h View File

389
 #endif  // MANUAL_BED_LEVELING
389
 #endif  // MANUAL_BED_LEVELING
390
 
390
 
391
 #ifdef MESH_BED_LEVELING
391
 #ifdef MESH_BED_LEVELING
392
+
393
+  #ifdef DELTA
394
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
395
+  #endif
396
+
392
   #define MESH_MIN_X 10
397
   #define MESH_MIN_X 10
393
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
398
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
394
   #define MESH_MIN_Y 10
399
   #define MESH_MIN_Y 10

+ 5
- 0
Marlin/example_configurations/tvrrug/Round2/Configuration.h View File

391
 #endif  // MANUAL_BED_LEVELING
391
 #endif  // MANUAL_BED_LEVELING
392
 
392
 
393
 #ifdef MESH_BED_LEVELING
393
 #ifdef MESH_BED_LEVELING
394
+
395
+  #ifdef DELTA
396
+    #error 'MESH_BED_LEVELING' does not yet support 'DELTA' printers
397
+  #endif
398
+
394
   #define MESH_MIN_X 10
399
   #define MESH_MIN_X 10
395
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
400
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
396
   #define MESH_MIN_Y 10
401
   #define MESH_MIN_Y 10

Loading…
Cancel
Save