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
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
419
 #if ENABLED(MESH_BED_LEVELING)
425
   #define MESH_MIN_X 10
420
   #define MESH_MIN_X 10
426
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
421
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
429
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
424
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
430
   #define MESH_NUM_Y_POINTS 3
425
   #define MESH_NUM_Y_POINTS 3
431
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
434
 #endif  // MESH_BED_LEVELING
433
 
435
 
434
 //===========================================================================
436
 //===========================================================================

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

393
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
401
 #if ENABLED(MESH_BED_LEVELING)
407
   #define MESH_MIN_X 10
402
   #define MESH_MIN_X 10
408
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
403
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
411
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
406
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
412
   #define MESH_NUM_Y_POINTS 3
407
   #define MESH_NUM_Y_POINTS 3
413
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
416
 #endif  // MESH_BED_LEVELING
415
 
417
 
416
 //===========================================================================
418
 //===========================================================================

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

363
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
371
 #if ENABLED(MESH_BED_LEVELING)
377
   #define MESH_MIN_X 10
372
   #define MESH_MIN_X 10
378
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
373
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
381
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
376
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
382
   #define MESH_NUM_Y_POINTS 3
377
   #define MESH_NUM_Y_POINTS 3
383
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
386
 #endif  // MESH_BED_LEVELING
385
 
387
 
386
 //===========================================================================
388
 //===========================================================================

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

403
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
411
 #if ENABLED(MESH_BED_LEVELING)
417
   #define MESH_MIN_X 10
412
   #define MESH_MIN_X 10
418
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
413
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
421
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
416
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
422
   #define MESH_NUM_Y_POINTS 3
417
   #define MESH_NUM_Y_POINTS 3
423
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
426
 #endif  // MESH_BED_LEVELING
425
 
427
 
426
 //===========================================================================
428
 //===========================================================================

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

399
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
407
 #if ENABLED(MESH_BED_LEVELING)
413
   #define MESH_MIN_X 10
408
   #define MESH_MIN_X 10
414
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
409
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
417
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
412
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
418
   #define MESH_NUM_Y_POINTS 3
413
   #define MESH_NUM_Y_POINTS 3
419
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
422
 #endif  // MESH_BED_LEVELING
421
 
423
 
422
 //===========================================================================
424
 //===========================================================================

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

411
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
419
 #if ENABLED(MESH_BED_LEVELING)
425
   #define MESH_MIN_X 10
420
   #define MESH_MIN_X 10
426
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
421
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
429
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
424
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
430
   #define MESH_NUM_Y_POINTS 3
425
   #define MESH_NUM_Y_POINTS 3
431
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
434
 #endif  // MESH_BED_LEVELING
433
 
435
 
434
 //===========================================================================
436
 //===========================================================================

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

402
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
410
 #if ENABLED(MESH_BED_LEVELING)
416
   #define MESH_MIN_X 10
411
   #define MESH_MIN_X 10
417
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
412
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
420
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
415
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
421
   #define MESH_NUM_Y_POINTS 3
416
   #define MESH_NUM_Y_POINTS 3
422
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
425
 #endif  // MESH_BED_LEVELING
424
 
426
 
425
 //===========================================================================
427
 //===========================================================================

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

419
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
427
 #if ENABLED(MESH_BED_LEVELING)
433
   #define MESH_MIN_X 10
428
   #define MESH_MIN_X 10
434
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
429
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
437
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
432
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
438
   #define MESH_NUM_Y_POINTS 3
433
   #define MESH_NUM_Y_POINTS 3
439
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
442
 #endif  // MESH_BED_LEVELING
441
 
443
 
442
 //===========================================================================
444
 //===========================================================================

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

431
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
439
 #if ENABLED(MESH_BED_LEVELING)
445
   #define MESH_MIN_X 10
440
   #define MESH_MIN_X 10
446
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
441
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
449
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
444
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
450
   #define MESH_NUM_Y_POINTS 3
445
   #define MESH_NUM_Y_POINTS 3
451
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
454
 #endif  // MESH_BED_LEVELING
453
 
455
 
454
 //===========================================================================
456
 //===========================================================================

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

403
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
411
 #if ENABLED(MESH_BED_LEVELING)
417
   #define MESH_MIN_X 10
412
   #define MESH_MIN_X 10
418
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
413
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
421
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
416
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
422
   #define MESH_NUM_Y_POINTS 3
417
   #define MESH_NUM_Y_POINTS 3
423
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
426
 #endif  // MESH_BED_LEVELING
425
 
427
 
426
 //===========================================================================
428
 //===========================================================================

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

411
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
419
 #if ENABLED(MESH_BED_LEVELING)
425
   #define MESH_MIN_X 10
420
   #define MESH_MIN_X 10
426
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
421
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
429
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
424
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
430
   #define MESH_NUM_Y_POINTS 3
425
   #define MESH_NUM_Y_POINTS 3
431
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
434
 #endif  // MESH_BED_LEVELING
433
 
435
 
434
 //===========================================================================
436
 //===========================================================================

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

446
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
454
 #if ENABLED(MESH_BED_LEVELING)
460
   #define MESH_MIN_X 10
455
   #define MESH_MIN_X 10
461
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
456
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
464
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
459
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
465
   #define MESH_NUM_Y_POINTS 3
460
   #define MESH_NUM_Y_POINTS 3
466
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
469
 #endif  // MESH_BED_LEVELING
468
 
470
 
469
 //===========================================================================
471
 //===========================================================================

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

446
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
454
 #if ENABLED(MESH_BED_LEVELING)
460
   #define MESH_MIN_X 10
455
   #define MESH_MIN_X 10
461
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
456
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
464
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
459
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
465
   #define MESH_NUM_Y_POINTS 3
460
   #define MESH_NUM_Y_POINTS 3
466
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
469
 #endif  // MESH_BED_LEVELING
468
 
470
 
469
 //===========================================================================
471
 //===========================================================================

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

446
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
454
 #if ENABLED(MESH_BED_LEVELING)
460
   #define MESH_MIN_X 10
455
   #define MESH_MIN_X 10
461
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
456
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
464
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
459
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
465
   #define MESH_NUM_Y_POINTS 3
460
   #define MESH_NUM_Y_POINTS 3
466
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
469
 #endif  // MESH_BED_LEVELING
468
 
470
 
469
 //===========================================================================
471
 //===========================================================================

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

433
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
441
 #if ENABLED(MESH_BED_LEVELING)
447
   #define MESH_MIN_X 10
442
   #define MESH_MIN_X 10
448
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
443
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
451
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
446
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
452
   #define MESH_NUM_Y_POINTS 3
447
   #define MESH_NUM_Y_POINTS 3
453
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
456
 #endif  // MESH_BED_LEVELING
455
 
457
 
456
 //===========================================================================
458
 //===========================================================================

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

414
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
422
 #if ENABLED(MESH_BED_LEVELING)
428
   #define MESH_MIN_X 10
423
   #define MESH_MIN_X 10
429
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
424
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
432
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
427
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
433
   #define MESH_NUM_Y_POINTS 3
428
   #define MESH_NUM_Y_POINTS 3
434
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
437
 #endif  // MESH_BED_LEVELING
436
 
438
 
437
 //===========================================================================
439
 //===========================================================================

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

401
 #endif
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
 //#define MESH_BED_LEVELING    // Enable mesh bed leveling.
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
 #if ENABLED(MESH_BED_LEVELING)
409
 #if ENABLED(MESH_BED_LEVELING)
415
   #define MESH_MIN_X 10
410
   #define MESH_MIN_X 10
416
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
411
   #define MESH_MAX_X (X_MAX_POS - MESH_MIN_X)
419
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
414
   #define MESH_NUM_X_POINTS 3  // Don't use more than 7 points per axis, implementation limited.
420
   #define MESH_NUM_Y_POINTS 3
415
   #define MESH_NUM_Y_POINTS 3
421
   #define MESH_HOME_SEARCH_Z 4  // Z after Home, bed somewhere below but above 0.0.
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
 #endif  // MESH_BED_LEVELING
424
 #endif  // MESH_BED_LEVELING
423
 
425
 
424
 //===========================================================================
426
 //===========================================================================

Loading…
Peruuta
Tallenna