Selaa lähdekoodia

Nest Manual Bed Leveling options

This formalizes the dependency of MANUAL_BED_LEVELING on
MESH_BED_LEVELING
Scott Lahteine 9 vuotta sitten
vanhempi
commit
c2e5c6c12c

+ 8
- 6
Marlin/Configuration.h Näytä tiedosto

@@ -411,16 +411,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
411 411
 #endif
412 412
 
413 413
 //===========================================================================
414
-//=========================== Manual Bed Leveling ===========================
414
+//============================ Mesh Bed Leveling ============================
415 415
 //===========================================================================
416 416
 
417
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
418 417
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
419 418
 
420
-#if ENABLED(MANUAL_BED_LEVELING)
421
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
422
-#endif  // MANUAL_BED_LEVELING
423
-
424 419
 #if ENABLED(MESH_BED_LEVELING)
425 420
   #define MESH_MIN_X 10
426 421
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -429,6 +424,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
429 424
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
430 425
   #define MESH_NUM_Y_POINTS 3
431 426
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
427
+
428
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
429
+
430
+  #if ENABLED(MANUAL_BED_LEVELING)
431
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
432
+  #endif  // MANUAL_BED_LEVELING
433
+
432 434
 #endif  // MESH_BED_LEVELING
433 435
 
434 436
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/Felix/Configuration.h Näytä tiedosto

@@ -393,16 +393,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
393 393
 #endif
394 394
 
395 395
 //===========================================================================
396
-//=========================== Manual Bed Leveling ===========================
396
+//============================ Mesh Bed Leveling ============================
397 397
 //===========================================================================
398 398
 
399
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
400 399
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
401 400
 
402
-#if ENABLED(MANUAL_BED_LEVELING)
403
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
404
-#endif  // MANUAL_BED_LEVELING
405
-
406 401
 #if ENABLED(MESH_BED_LEVELING)
407 402
   #define MESH_MIN_X 10
408 403
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -411,6 +406,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
411 406
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
412 407
   #define MESH_NUM_Y_POINTS 3
413 408
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
409
+
410
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
411
+
412
+  #if ENABLED(MANUAL_BED_LEVELING)
413
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
414
+  #endif  // MANUAL_BED_LEVELING
415
+
414 416
 #endif  // MESH_BED_LEVELING
415 417
 
416 418
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/Felix/Configuration_DUAL.h Näytä tiedosto

@@ -363,16 +363,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
363 363
 #endif
364 364
 
365 365
 //===========================================================================
366
-//=========================== Manual Bed Leveling ===========================
366
+//============================ Mesh Bed Leveling ============================
367 367
 //===========================================================================
368 368
 
369
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
370 369
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
371 370
 
372
-#if ENABLED(MANUAL_BED_LEVELING)
373
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
374
-#endif  // MANUAL_BED_LEVELING
375
-
376 371
 #if ENABLED(MESH_BED_LEVELING)
377 372
   #define MESH_MIN_X 10
378 373
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -381,6 +376,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
381 376
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
382 377
   #define MESH_NUM_Y_POINTS 3
383 378
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
379
+
380
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
381
+
382
+  #if ENABLED(MANUAL_BED_LEVELING)
383
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
384
+  #endif  // MANUAL_BED_LEVELING
385
+
384 386
 #endif  // MESH_BED_LEVELING
385 387
 
386 388
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/Hephestos/Configuration.h Näytä tiedosto

@@ -403,16 +403,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
403 403
 #endif
404 404
 
405 405
 //===========================================================================
406
-//=========================== Manual Bed Leveling ===========================
406
+//============================ Mesh Bed Leveling ============================
407 407
 //===========================================================================
408 408
 
409
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
410 409
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
411 410
 
412
-#if ENABLED(MANUAL_BED_LEVELING)
413
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
414
-#endif  // MANUAL_BED_LEVELING
415
-
416 411
 #if ENABLED(MESH_BED_LEVELING)
417 412
   #define MESH_MIN_X 10
418 413
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -421,6 +416,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
421 416
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
422 417
   #define MESH_NUM_Y_POINTS 3
423 418
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
419
+
420
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
421
+
422
+  #if ENABLED(MANUAL_BED_LEVELING)
423
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
424
+  #endif  // MANUAL_BED_LEVELING
425
+
424 426
 #endif  // MESH_BED_LEVELING
425 427
 
426 428
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/K8200/Configuration.h Näytä tiedosto

@@ -399,16 +399,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
399 399
 #endif
400 400
 
401 401
 //===========================================================================
402
-//=========================== Manual Bed Leveling ===========================
402
+//============================ Mesh Bed Leveling ============================
403 403
 //===========================================================================
404 404
 
405
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
406 405
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
407 406
 
408
-#if ENABLED(MANUAL_BED_LEVELING)
409
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
410
-#endif  // MANUAL_BED_LEVELING
411
-
412 407
 #if ENABLED(MESH_BED_LEVELING)
413 408
   #define MESH_MIN_X 10
414 409
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -417,6 +412,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
417 412
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
418 413
   #define MESH_NUM_Y_POINTS 3
419 414
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
415
+
416
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
417
+
418
+  #if ENABLED(MANUAL_BED_LEVELING)
419
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
420
+  #endif  // MANUAL_BED_LEVELING
421
+
420 422
 #endif  // MESH_BED_LEVELING
421 423
 
422 424
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h Näytä tiedosto

@@ -411,16 +411,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
411 411
 #endif
412 412
 
413 413
 //===========================================================================
414
-//=========================== Manual Bed Leveling ===========================
414
+//============================ Mesh Bed Leveling ============================
415 415
 //===========================================================================
416 416
 
417
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
418 417
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
419 418
 
420
-#if ENABLED(MANUAL_BED_LEVELING)
421
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
422
-#endif  // MANUAL_BED_LEVELING
423
-
424 419
 #if ENABLED(MESH_BED_LEVELING)
425 420
   #define MESH_MIN_X 10
426 421
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -429,6 +424,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
429 424
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
430 425
   #define MESH_NUM_Y_POINTS 3
431 426
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
427
+
428
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
429
+
430
+  #if ENABLED(MANUAL_BED_LEVELING)
431
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
432
+  #endif  // MANUAL_BED_LEVELING
433
+
432 434
 #endif  // MESH_BED_LEVELING
433 435
 
434 436
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/RigidBot/Configuration.h Näytä tiedosto

@@ -402,16 +402,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
402 402
 #endif
403 403
 
404 404
 //===========================================================================
405
-//=========================== Manual Bed Leveling ===========================
405
+//============================ Mesh Bed Leveling ============================
406 406
 //===========================================================================
407 407
 
408
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
409 408
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
410 409
 
411
-#if ENABLED(MANUAL_BED_LEVELING)
412
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
413
-#endif  // MANUAL_BED_LEVELING
414
-
415 410
 #if ENABLED(MESH_BED_LEVELING)
416 411
   #define MESH_MIN_X 10
417 412
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -420,6 +415,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
420 415
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
421 416
   #define MESH_NUM_Y_POINTS 3
422 417
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
418
+
419
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
420
+
421
+  #if ENABLED(MANUAL_BED_LEVELING)
422
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
423
+  #endif  // MANUAL_BED_LEVELING
424
+
423 425
 #endif  // MESH_BED_LEVELING
424 426
 
425 427
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/SCARA/Configuration.h Näytä tiedosto

@@ -419,16 +419,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
419 419
 #endif
420 420
 
421 421
 //===========================================================================
422
-//=========================== Manual Bed Leveling ===========================
422
+//============================ Mesh Bed Leveling ============================
423 423
 //===========================================================================
424 424
 
425
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
426 425
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
427 426
 
428
-#if ENABLED(MANUAL_BED_LEVELING)
429
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
430
-#endif  // MANUAL_BED_LEVELING
431
-
432 427
 #if ENABLED(MESH_BED_LEVELING)
433 428
   #define MESH_MIN_X 10
434 429
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -437,6 +432,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
437 432
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
438 433
   #define MESH_NUM_Y_POINTS 3
439 434
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
435
+
436
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
437
+
438
+  #if ENABLED(MANUAL_BED_LEVELING)
439
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
440
+  #endif  // MANUAL_BED_LEVELING
441
+
440 442
 #endif  // MESH_BED_LEVELING
441 443
 
442 444
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/TAZ4/Configuration.h Näytä tiedosto

@@ -431,16 +431,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
431 431
 #endif
432 432
 
433 433
 //===========================================================================
434
-//=========================== Manual Bed Leveling ===========================
434
+//============================ Mesh Bed Leveling ============================
435 435
 //===========================================================================
436 436
 
437
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
438 437
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
439 438
 
440
-#if ENABLED(MANUAL_BED_LEVELING)
441
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
442
-#endif  // MANUAL_BED_LEVELING
443
-
444 439
 #if ENABLED(MESH_BED_LEVELING)
445 440
   #define MESH_MIN_X 10
446 441
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -449,6 +444,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
449 444
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
450 445
   #define MESH_NUM_Y_POINTS 3
451 446
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
447
+
448
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
449
+
450
+  #if ENABLED(MANUAL_BED_LEVELING)
451
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
452
+  #endif  // MANUAL_BED_LEVELING
453
+
452 454
 #endif  // MESH_BED_LEVELING
453 455
 
454 456
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/WITBOX/Configuration.h Näytä tiedosto

@@ -403,16 +403,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
403 403
 #endif
404 404
 
405 405
 //===========================================================================
406
-//=========================== Manual Bed Leveling ===========================
406
+//============================ Mesh Bed Leveling ============================
407 407
 //===========================================================================
408 408
 
409
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
410 409
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
411 410
 
412
-#if ENABLED(MANUAL_BED_LEVELING)
413
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
414
-#endif  // MANUAL_BED_LEVELING
415
-
416 411
 #if ENABLED(MESH_BED_LEVELING)
417 412
   #define MESH_MIN_X 10
418 413
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -421,6 +416,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
421 416
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
422 417
   #define MESH_NUM_Y_POINTS 3
423 418
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
419
+
420
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
421
+
422
+  #if ENABLED(MANUAL_BED_LEVELING)
423
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
424
+  #endif  // MANUAL_BED_LEVELING
425
+
424 426
 #endif  // MESH_BED_LEVELING
425 427
 
426 428
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/adafruit/ST7565/Configuration.h Näytä tiedosto

@@ -411,16 +411,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
411 411
 #endif
412 412
 
413 413
 //===========================================================================
414
-//=========================== Manual Bed Leveling ===========================
414
+//============================ Mesh Bed Leveling ============================
415 415
 //===========================================================================
416 416
 
417
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
418 417
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
419 418
 
420
-#if ENABLED(MANUAL_BED_LEVELING)
421
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
422
-#endif  // MANUAL_BED_LEVELING
423
-
424 419
 #if ENABLED(MESH_BED_LEVELING)
425 420
   #define MESH_MIN_X 10
426 421
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -429,6 +424,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
429 424
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
430 425
   #define MESH_NUM_Y_POINTS 3
431 426
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
427
+
428
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
429
+
430
+  #if ENABLED(MANUAL_BED_LEVELING)
431
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
432
+  #endif  // MANUAL_BED_LEVELING
433
+
432 434
 #endif  // MESH_BED_LEVELING
433 435
 
434 436
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/delta/biv2.5/Configuration.h Näytä tiedosto

@@ -446,16 +446,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
446 446
 #endif
447 447
 
448 448
 //===========================================================================
449
-//=========================== Manual Bed Leveling ===========================
449
+//============================ Mesh Bed Leveling ============================
450 450
 //===========================================================================
451 451
 
452
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
453 452
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
454 453
 
455
-#if ENABLED(MANUAL_BED_LEVELING)
456
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
457
-#endif  // MANUAL_BED_LEVELING
458
-
459 454
 #if ENABLED(MESH_BED_LEVELING)
460 455
   #define MESH_MIN_X 10
461 456
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -464,6 +459,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
464 459
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
465 460
   #define MESH_NUM_Y_POINTS 3
466 461
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
462
+
463
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
464
+
465
+  #if ENABLED(MANUAL_BED_LEVELING)
466
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
467
+  #endif  // MANUAL_BED_LEVELING
468
+
467 469
 #endif  // MESH_BED_LEVELING
468 470
 
469 471
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/delta/generic/Configuration.h Näytä tiedosto

@@ -446,16 +446,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
446 446
 #endif
447 447
 
448 448
 //===========================================================================
449
-//=========================== Manual Bed Leveling ===========================
449
+//============================ Mesh Bed Leveling ============================
450 450
 //===========================================================================
451 451
 
452
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
453 452
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
454 453
 
455
-#if ENABLED(MANUAL_BED_LEVELING)
456
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
457
-#endif  // MANUAL_BED_LEVELING
458
-
459 454
 #if ENABLED(MESH_BED_LEVELING)
460 455
   #define MESH_MIN_X 10
461 456
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -464,6 +459,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
464 459
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
465 460
   #define MESH_NUM_Y_POINTS 3
466 461
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
462
+
463
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
464
+
465
+  #if ENABLED(MANUAL_BED_LEVELING)
466
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
467
+  #endif  // MANUAL_BED_LEVELING
468
+
467 469
 #endif  // MESH_BED_LEVELING
468 470
 
469 471
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/delta/kossel_mini/Configuration.h Näytä tiedosto

@@ -446,16 +446,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
446 446
 #endif
447 447
 
448 448
 //===========================================================================
449
-//=========================== Manual Bed Leveling ===========================
449
+//============================ Mesh Bed Leveling ============================
450 450
 //===========================================================================
451 451
 
452
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
453 452
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
454 453
 
455
-#if ENABLED(MANUAL_BED_LEVELING)
456
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
457
-#endif  // MANUAL_BED_LEVELING
458
-
459 454
 #if ENABLED(MESH_BED_LEVELING)
460 455
   #define MESH_MIN_X 10
461 456
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -464,6 +459,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
464 459
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
465 460
   #define MESH_NUM_Y_POINTS 3
466 461
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
462
+
463
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
464
+
465
+  #if ENABLED(MANUAL_BED_LEVELING)
466
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
467
+  #endif  // MANUAL_BED_LEVELING
468
+
467 469
 #endif  // MESH_BED_LEVELING
468 470
 
469 471
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/delta/kossel_pro/Configuration.h Näytä tiedosto

@@ -433,16 +433,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
433 433
 #endif
434 434
 
435 435
 //===========================================================================
436
-//=========================== Manual Bed Leveling ===========================
436
+//============================ Mesh Bed Leveling ============================
437 437
 //===========================================================================
438 438
 
439
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
440 439
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
441 440
 
442
-#if ENABLED(MANUAL_BED_LEVELING)
443
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
444
-#endif  // MANUAL_BED_LEVELING
445
-
446 441
 #if ENABLED(MESH_BED_LEVELING)
447 442
   #define MESH_MIN_X 10
448 443
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -451,6 +446,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
451 446
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
452 447
   #define MESH_NUM_Y_POINTS 3
453 448
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
449
+
450
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
451
+
452
+  #if ENABLED(MANUAL_BED_LEVELING)
453
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
454
+  #endif  // MANUAL_BED_LEVELING
455
+
454 456
 #endif  // MESH_BED_LEVELING
455 457
 
456 458
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/makibox/Configuration.h Näytä tiedosto

@@ -414,16 +414,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
414 414
 #endif
415 415
 
416 416
 //===========================================================================
417
-//=========================== Manual Bed Leveling ===========================
417
+//============================ Mesh Bed Leveling ============================
418 418
 //===========================================================================
419 419
 
420
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
421 420
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
422 421
 
423
-#if ENABLED(MANUAL_BED_LEVELING)
424
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
425
-#endif  // MANUAL_BED_LEVELING
426
-
427 422
 #if ENABLED(MESH_BED_LEVELING)
428 423
   #define MESH_MIN_X 10
429 424
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -432,6 +427,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
432 427
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
433 428
   #define MESH_NUM_Y_POINTS 3
434 429
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
430
+
431
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
432
+
433
+  #if ENABLED(MANUAL_BED_LEVELING)
434
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
435
+  #endif  // MANUAL_BED_LEVELING
436
+
435 437
 #endif  // MESH_BED_LEVELING
436 438
 
437 439
 //===========================================================================

+ 8
- 6
Marlin/example_configurations/tvrrug/Round2/Configuration.h Näytä tiedosto

@@ -401,16 +401,11 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
401 401
 #endif
402 402
 
403 403
 //===========================================================================
404
-//=========================== Manual Bed Leveling ===========================
404
+//============================ Mesh Bed Leveling ============================
405 405
 //===========================================================================
406 406
 
407
-//#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
408 407
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
409 408
 
410
-#if ENABLED(MANUAL_BED_LEVELING)
411
-  #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
412
-#endif  // MANUAL_BED_LEVELING
413
-
414 409
 #if ENABLED(MESH_BED_LEVELING)
415 410
   #define MESH_MIN_X 10
416 411
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
@@ -419,6 +414,13 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
419 414
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
420 415
   #define MESH_NUM_Y_POINTS 3
421 416
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
417
+
418
+  //#define MANUAL_BED_LEVELING  // Add display menu option for bed leveling.
419
+
420
+  #if ENABLED(MANUAL_BED_LEVELING)
421
+    #define MBL_Z_STEP 0.025  // Step size while manually probing Z axis.
422
+  #endif  // MANUAL_BED_LEVELING
423
+
422 424
 #endif  // MESH_BED_LEVELING
423 425
 
424 426
 //===========================================================================

Loading…
Peruuta
Tallenna