Browse Source

Z_RAISE_PROBE_* => Z_PROBE_*_HEIGHT

Scott Lahteine 7 years ago
parent
commit
7e2bd9a233
26 changed files with 133 additions and 129 deletions
  1. 10
    10
      Marlin/Conditionals_post.h
  2. 4
    4
      Marlin/Configuration.h
  3. 15
    15
      Marlin/Marlin_main.cpp
  4. 16
    12
      Marlin/SanityCheck.h
  5. 4
    4
      Marlin/example_configurations/Cartesio/Configuration.h
  6. 4
    4
      Marlin/example_configurations/Felix/Configuration.h
  7. 4
    4
      Marlin/example_configurations/Felix/DUAL/Configuration.h
  8. 4
    4
      Marlin/example_configurations/Hephestos/Configuration.h
  9. 4
    4
      Marlin/example_configurations/Hephestos_2/Configuration.h
  10. 4
    4
      Marlin/example_configurations/K8200/Configuration.h
  11. 4
    4
      Marlin/example_configurations/K8400/Configuration.h
  12. 4
    4
      Marlin/example_configurations/K8400/Dual-head/Configuration.h
  13. 4
    4
      Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h
  14. 4
    4
      Marlin/example_configurations/RigidBot/Configuration.h
  15. 4
    4
      Marlin/example_configurations/SCARA/Configuration.h
  16. 4
    4
      Marlin/example_configurations/TAZ4/Configuration.h
  17. 4
    4
      Marlin/example_configurations/WITBOX/Configuration.h
  18. 4
    4
      Marlin/example_configurations/adafruit/ST7565/Configuration.h
  19. 4
    4
      Marlin/example_configurations/delta/biv2.5/Configuration.h
  20. 4
    4
      Marlin/example_configurations/delta/generic/Configuration.h
  21. 4
    4
      Marlin/example_configurations/delta/kossel_mini/Configuration.h
  22. 4
    4
      Marlin/example_configurations/delta/kossel_pro/Configuration.h
  23. 4
    4
      Marlin/example_configurations/delta/kossel_xl/Configuration.h
  24. 4
    4
      Marlin/example_configurations/makibox/Configuration.h
  25. 4
    4
      Marlin/example_configurations/tvrrug/Round2/Configuration.h
  26. 4
    4
      Marlin/ultralcd.cpp

+ 10
- 10
Marlin/Conditionals_post.h View File

@@ -575,10 +575,10 @@
575 575
         #define XY_PROBE_SPEED 4000
576 576
       #endif
577 577
     #endif
578
-    #if Z_RAISE_BETWEEN_PROBINGS > Z_RAISE_PROBE_DEPLOY_STOW
579
-      #define _Z_RAISE_PROBE_DEPLOY_STOW Z_RAISE_BETWEEN_PROBINGS
578
+    #if Z_PROBE_TRAVEL_HEIGHT > Z_PROBE_DEPLOY_HEIGHT
579
+      #define _Z_PROBE_DEPLOY_HEIGHT Z_PROBE_TRAVEL_HEIGHT
580 580
     #else
581
-      #define _Z_RAISE_PROBE_DEPLOY_STOW Z_RAISE_PROBE_DEPLOY_STOW
581
+      #define _Z_PROBE_DEPLOY_HEIGHT Z_PROBE_DEPLOY_HEIGHT
582 582
     #endif
583 583
   #else
584 584
     #undef X_PROBE_OFFSET_FROM_EXTRUDER
@@ -647,17 +647,17 @@
647 647
   #endif
648 648
 
649 649
   /**
650
-   * MIN_Z_HEIGHT_FOR_HOMING / Z_RAISE_BETWEEN_PROBINGS
650
+   * Z_HOMING_HEIGHT / Z_PROBE_TRAVEL_HEIGHT
651 651
    */
652
-  #ifndef MIN_Z_HEIGHT_FOR_HOMING
653
-    #ifndef Z_RAISE_BETWEEN_PROBINGS
654
-      #define MIN_Z_HEIGHT_FOR_HOMING 0
652
+  #ifndef Z_HOMING_HEIGHT
653
+    #ifndef Z_PROBE_TRAVEL_HEIGHT
654
+      #define Z_HOMING_HEIGHT 0
655 655
     #else
656
-      #define MIN_Z_HEIGHT_FOR_HOMING Z_RAISE_BETWEEN_PROBINGS
656
+      #define Z_HOMING_HEIGHT Z_PROBE_TRAVEL_HEIGHT
657 657
     #endif
658 658
   #endif
659
-  #ifndef Z_RAISE_BETWEEN_PROBINGS
660
-    #define Z_RAISE_BETWEEN_PROBING MIN_Z_HEIGHT_FOR_HOMING
659
+  #ifndef Z_PROBE_TRAVEL_HEIGHT
660
+    #define Z_PROBE_TRAVEL_HEIGHT Z_HOMING_HEIGHT
661 661
   #endif
662 662
 
663 663
 #endif // CONDITIONALS_POST_H

+ 4
- 4
Marlin/Configuration.h View File

@@ -543,8 +543,8 @@
543 543
 //
544 544
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
545 545
 //
546
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
547
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
546
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
547
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
548 548
 
549 549
 //
550 550
 // For M851 give a range for adjusting the Z probe offset
@@ -589,8 +589,8 @@
589 589
 
590 590
 // @section homing
591 591
 
592
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
592
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
+                             // Be sure you have this distance over your Z_MAX_POS in case.
594 594
 
595 595
 // ENDSTOP SETTINGS:
596 596
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 15
- 15
Marlin/Marlin_main.cpp View File

@@ -2050,7 +2050,7 @@ static void clean_up_after_endstop_or_probe_move() {
2050 2050
     if (endstops.z_probe_enabled == deploy) return false;
2051 2051
 
2052 2052
     // Make room for probe
2053
-    do_probe_raise(_Z_RAISE_PROBE_DEPLOY_STOW);
2053
+    do_probe_raise(_Z_PROBE_DEPLOY_HEIGHT);
2054 2054
 
2055 2055
     #if ENABLED(Z_PROBE_SLED)
2056 2056
       if (axis_unhomed_error(true, false, false)) { stop(); return true; }
@@ -2159,7 +2159,7 @@ static void clean_up_after_endstop_or_probe_move() {
2159 2159
     float old_feedrate_mm_m = feedrate_mm_m;
2160 2160
 
2161 2161
     // Ensure a minimum height before moving the probe
2162
-    do_probe_raise(Z_RAISE_BETWEEN_PROBINGS);
2162
+    do_probe_raise(Z_PROBE_TRAVEL_HEIGHT);
2163 2163
 
2164 2164
     // Move to the XY where we shall probe
2165 2165
     #if ENABLED(DEBUG_LEVELING_FEATURE)
@@ -2189,7 +2189,7 @@ static void clean_up_after_endstop_or_probe_move() {
2189 2189
       #if ENABLED(DEBUG_LEVELING_FEATURE)
2190 2190
         if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> do_probe_raise");
2191 2191
       #endif
2192
-      do_probe_raise(Z_RAISE_BETWEEN_PROBINGS);
2192
+      do_probe_raise(Z_PROBE_TRAVEL_HEIGHT);
2193 2193
     }
2194 2194
 
2195 2195
     if (verbose_level > 2) {
@@ -2967,7 +2967,7 @@ inline void gcode_G28() {
2967 2967
 
2968 2968
       if (home_all_axis || homeX || homeY) {
2969 2969
         // Raise Z before homing any other axes and z is not already high enough (never lower z)
2970
-        destination[Z_AXIS] = LOGICAL_Z_POSITION(MIN_Z_HEIGHT_FOR_HOMING);
2970
+        destination[Z_AXIS] = LOGICAL_Z_POSITION(Z_HOMING_HEIGHT);
2971 2971
         if (destination[Z_AXIS] > current_position[Z_AXIS]) {
2972 2972
 
2973 2973
           #if ENABLED(DEBUG_LEVELING_FEATURE)
@@ -3048,7 +3048,7 @@ inline void gcode_G28() {
3048 3048
           if (home_all_axis) {
3049 3049
 
3050 3050
             /**
3051
-             * At this point we already have Z at MIN_Z_HEIGHT_FOR_HOMING height
3051
+             * At this point we already have Z at Z_HOMING_HEIGHT height
3052 3052
              * No need to move Z any more as this height should already be safe
3053 3053
              * enough to reach Z_SAFE_HOMING XY positions.
3054 3054
              * Just make sure the planner is in sync.
@@ -3212,10 +3212,10 @@ inline void gcode_G28() {
3212 3212
     feedrate_mm_m = homing_feedrate_mm_m[X_AXIS];
3213 3213
 
3214 3214
     current_position[Z_AXIS] = MESH_HOME_SEARCH_Z
3215
-      #if Z_RAISE_BETWEEN_PROBINGS > MIN_Z_HEIGHT_FOR_HOMING
3216
-        + Z_RAISE_BETWEEN_PROBINGS
3217
-      #elif MIN_Z_HEIGHT_FOR_HOMING > 0
3218
-        + MIN_Z_HEIGHT_FOR_HOMING
3215
+      #if Z_PROBE_TRAVEL_HEIGHT > Z_HOMING_HEIGHT
3216
+        + Z_PROBE_TRAVEL_HEIGHT
3217
+      #elif Z_HOMING_HEIGHT > 0
3218
+        + Z_HOMING_HEIGHT
3219 3219
       #endif
3220 3220
     ;
3221 3221
     line_to_current_position();
@@ -3224,7 +3224,7 @@ inline void gcode_G28() {
3224 3224
     current_position[Y_AXIS] = LOGICAL_Y_POSITION(y);
3225 3225
     line_to_current_position();
3226 3226
 
3227
-    #if Z_RAISE_BETWEEN_PROBINGS > 0 || MIN_Z_HEIGHT_FOR_HOMING > 0
3227
+    #if Z_PROBE_TRAVEL_HEIGHT > 0 || Z_HOMING_HEIGHT > 0
3228 3228
       current_position[Z_AXIS] = LOGICAL_Z_POSITION(MESH_HOME_SEARCH_Z);
3229 3229
       line_to_current_position();
3230 3230
     #endif
@@ -3320,10 +3320,10 @@ inline void gcode_G28() {
3320 3320
         else {
3321 3321
           // One last "return to the bed" (as originally coded) at completion
3322 3322
           current_position[Z_AXIS] = MESH_HOME_SEARCH_Z
3323
-            #if Z_RAISE_BETWEEN_PROBINGS > MIN_Z_HEIGHT_FOR_HOMING
3324
-              + Z_RAISE_BETWEEN_PROBINGS
3325
-            #elif MIN_Z_HEIGHT_FOR_HOMING > 0
3326
-              + MIN_Z_HEIGHT_FOR_HOMING
3323
+            #if Z_PROBE_TRAVEL_HEIGHT > Z_HOMING_HEIGHT
3324
+              + Z_PROBE_TRAVEL_HEIGHT
3325
+            #elif Z_HOMING_HEIGHT > 0
3326
+              + Z_HOMING_HEIGHT
3327 3327
             #endif
3328 3328
           ;
3329 3329
           line_to_current_position();
@@ -3657,7 +3657,7 @@ inline void gcode_G28() {
3657 3657
 
3658 3658
     #endif // !AUTO_BED_LEVELING_GRID
3659 3659
 
3660
-    // Raise to _Z_RAISE_PROBE_DEPLOY_STOW. Stow the probe.
3660
+    // Raise to _Z_PROBE_DEPLOY_HEIGHT. Stow the probe.
3661 3661
     if (STOW_PROBE()) return;
3662 3662
 
3663 3663
     // Restore state after probing

+ 16
- 12
Marlin/SanityCheck.h View File

@@ -334,16 +334,14 @@
334 334
   /**
335 335
    * Make sure Z raise values are set
336 336
    */
337
-  #if defined(Z_RAISE_BEFORE_PROBING) || defined(Z_RAISE_AFTER_PROBING)
338
-    #error "Z_RAISE_(BEFORE|AFTER)_PROBING are deprecated. Use Z_RAISE_PROBE_DEPLOY_STOW instead."
339
-  #elif !defined(Z_RAISE_PROBE_DEPLOY_STOW)
340
-    #error "You must set Z_RAISE_PROBE_DEPLOY_STOW in your configuration."
341
-  #elif !defined(Z_RAISE_BETWEEN_PROBINGS)
342
-    #error "You must set Z_RAISE_BETWEEN_PROBINGS in your configuration."
343
-  #elif Z_RAISE_PROBE_DEPLOY_STOW < 0
344
-    #error "Probes need Z_RAISE_PROBE_DEPLOY_STOW >= 0."
345
-  #elif Z_RAISE_BETWEEN_PROBINGS < 0
346
-    #error "Probes need Z_RAISE_BETWEEN_PROBINGS >= 0."
337
+  #if !defined(Z_PROBE_DEPLOY_HEIGHT)
338
+    #error "You must set Z_PROBE_DEPLOY_HEIGHT in your configuration."
339
+  #elif !defined(Z_PROBE_TRAVEL_HEIGHT)
340
+    #error "You must set Z_PROBE_TRAVEL_HEIGHT in your configuration."
341
+  #elif Z_PROBE_DEPLOY_HEIGHT < 0
342
+    #error "Probes need Z_PROBE_DEPLOY_HEIGHT >= 0."
343
+  #elif Z_PROBE_TRAVEL_HEIGHT < 0
344
+    #error "Probes need Z_PROBE_TRAVEL_HEIGHT >= 0."
347 345
   #endif
348 346
 
349 347
 #else
@@ -681,8 +679,6 @@
681 679
   #error "SDSLOW deprecated. Set SPI_SPEED to SPI_HALF_SPEED instead."
682 680
 #elif defined(SDEXTRASLOW)
683 681
   #error "SDEXTRASLOW deprecated. Set SPI_SPEED to SPI_QUARTER_SPEED instead."
684
-#elif defined(Z_RAISE_BEFORE_HOMING)
685
-  #error "Z_RAISE_BEFORE_HOMING is deprecated. Use MIN_Z_HEIGHT_FOR_HOMING instead."
686 682
 #elif defined(FILAMENT_SENSOR)
687 683
   #error "FILAMENT_SENSOR is deprecated. Use FILAMENT_WIDTH_SENSOR instead."
688 684
 #elif defined(DISABLE_MAX_ENDSTOPS) || defined(DISABLE_MIN_ENDSTOPS)
@@ -729,4 +725,12 @@
729 725
   #error "MANUAL_HOME_POSITIONS is deprecated. Set MANUAL_[XYZ]_HOME_POS as-needed instead."
730 726
 #elif defined(PID_ADD_EXTRUSION_RATE)
731 727
   #error "PID_ADD_EXTRUSION_RATE is now PID_EXTRUSION_SCALING and is DISABLED by default. Are you sure you want to use this option? Please update your configuration."
728
+#elif defined(Z_RAISE_BEFORE_HOMING)
729
+  #error "Z_RAISE_BEFORE_HOMING is now Z_HOMING_HEIGHT. Please update your configuration."
730
+#elif defined(MIN_Z_HEIGHT_FOR_HOMING)
731
+  #error "MIN_Z_HEIGHT_FOR_HOMING is now Z_HOMING_HEIGHT. Please update your configuration."
732
+#elif defined(Z_RAISE_BEFORE_PROBING) || defined(Z_RAISE_AFTER_PROBING)
733
+  #error "Z_RAISE_(BEFORE|AFTER)_PROBING are deprecated. Use Z_PROBE_DEPLOY_HEIGHT instead."
734
+#elif defined(Z_RAISE_PROBE_DEPLOY_STOW) || defined(Z_RAISE_BETWEEN_PROBINGS)
735
+  #error "Z_RAISE_PROBE_DEPLOY_STOW and Z_RAISE_BETWEEN_PROBINGS are now Z_PROBE_DEPLOY_HEIGHT and Z_PROBE_TRAVEL_HEIGHT Please update your configuration."
732 736
 #endif

+ 4
- 4
Marlin/example_configurations/Cartesio/Configuration.h View File

@@ -543,8 +543,8 @@
543 543
 //
544 544
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
545 545
 //
546
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
547
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
546
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
547
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
548 548
 
549 549
 //
550 550
 // For M851 give a range for adjusting the Z probe offset
@@ -589,8 +589,8 @@
589 589
 
590 590
 // @section homing
591 591
 
592
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
592
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
+                             // Be sure you have this distance over your Z_MAX_POS in case.
594 594
 
595 595
 // ENDSTOP SETTINGS:
596 596
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/Felix/Configuration.h View File

@@ -525,8 +525,8 @@
525 525
 //
526 526
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
527 527
 //
528
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
529
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
528
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
529
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
530 530
 
531 531
 //
532 532
 // For M851 give a range for adjusting the Z probe offset
@@ -571,8 +571,8 @@
571 571
 
572 572
 // @section homing
573 573
 
574
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
575
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
574
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
575
+                             // Be sure you have this distance over your Z_MAX_POS in case.
576 576
 
577 577
 // ENDSTOP SETTINGS:
578 578
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/Felix/DUAL/Configuration.h View File

@@ -523,8 +523,8 @@
523 523
 //
524 524
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
525 525
 //
526
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
527
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
526
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
527
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
528 528
 
529 529
 //
530 530
 // For M851 give a range for adjusting the Z probe offset
@@ -569,8 +569,8 @@
569 569
 
570 570
 // @section homing
571 571
 
572
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
573
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
572
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
573
+                             // Be sure you have this distance over your Z_MAX_POS in case.
574 574
 
575 575
 // ENDSTOP SETTINGS:
576 576
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/Hephestos/Configuration.h View File

@@ -535,8 +535,8 @@
535 535
 //
536 536
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
537 537
 //
538
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
539
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
538
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
539
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
540 540
 
541 541
 //
542 542
 // For M851 give a range for adjusting the Z probe offset
@@ -581,8 +581,8 @@
581 581
 
582 582
 // @section homing
583 583
 
584
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
585
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
584
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
585
+                             // Be sure you have this distance over your Z_MAX_POS in case.
586 586
 
587 587
 // ENDSTOP SETTINGS:
588 588
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/Hephestos_2/Configuration.h View File

@@ -537,8 +537,8 @@
537 537
 //
538 538
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
539 539
 //
540
-#define Z_RAISE_PROBE_DEPLOY_STOW  5 // Raise to make room for the probe to deploy / stow
541
-#define Z_RAISE_BETWEEN_PROBINGS 2  // Raise between probing points.
540
+#define Z_PROBE_DEPLOY_HEIGHT  5 // Raise to make room for the probe to deploy / stow
541
+#define Z_PROBE_TRAVEL_HEIGHT 2  // Raise between probing points.
542 542
 
543 543
 //
544 544
 // For M851 give a range for adjusting the Z probe offset
@@ -583,8 +583,8 @@
583 583
 
584 584
 // @section homing
585 585
 
586
-#define MIN_Z_HEIGHT_FOR_HOMING 5   // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
587
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
586
+#define Z_HOMING_HEIGHT 5    // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
587
+                             // Be sure you have this distance over your Z_MAX_POS in case.
588 588
 
589 589
 // ENDSTOP SETTINGS:
590 590
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/K8200/Configuration.h View File

@@ -560,8 +560,8 @@
560 560
 //
561 561
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
562 562
 //
563
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
564
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
563
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
564
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
565 565
 
566 566
 //
567 567
 // For M851 give a range for adjusting the Z probe offset
@@ -606,8 +606,8 @@
606 606
 
607 607
 // @section homing
608 608
 
609
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
610
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
609
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
610
+                             // Be sure you have this distance over your Z_MAX_POS in case.
611 611
 
612 612
 // ENDSTOP SETTINGS:
613 613
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/K8400/Configuration.h View File

@@ -543,8 +543,8 @@
543 543
 //
544 544
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
545 545
 //
546
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
547
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
546
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
547
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
548 548
 
549 549
 //
550 550
 // For M851 give a range for adjusting the Z probe offset
@@ -589,8 +589,8 @@
589 589
 
590 590
 // @section homing
591 591
 
592
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
592
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
+                             // Be sure you have this distance over your Z_MAX_POS in case.
594 594
 
595 595
 // ENDSTOP SETTINGS:
596 596
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/K8400/Dual-head/Configuration.h View File

@@ -543,8 +543,8 @@
543 543
 //
544 544
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
545 545
 //
546
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
547
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
546
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
547
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
548 548
 
549 549
 //
550 550
 // For M851 give a range for adjusting the Z probe offset
@@ -589,8 +589,8 @@
589 589
 
590 590
 // @section homing
591 591
 
592
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
592
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
+                             // Be sure you have this distance over your Z_MAX_POS in case.
594 594
 
595 595
 // ENDSTOP SETTINGS:
596 596
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h View File

@@ -543,8 +543,8 @@
543 543
 //
544 544
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
545 545
 //
546
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
547
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
546
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
547
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
548 548
 
549 549
 //
550 550
 // For M851 give a range for adjusting the Z probe offset
@@ -589,8 +589,8 @@
589 589
 
590 590
 // @section homing
591 591
 
592
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
592
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
+                             // Be sure you have this distance over your Z_MAX_POS in case.
594 594
 
595 595
 // ENDSTOP SETTINGS:
596 596
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/RigidBot/Configuration.h View File

@@ -540,8 +540,8 @@
540 540
 //
541 541
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
542 542
 //
543
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
544
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
543
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
544
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
545 545
 
546 546
 //
547 547
 // For M851 give a range for adjusting the Z probe offset
@@ -586,8 +586,8 @@
586 586
 
587 587
 // @section homing
588 588
 
589
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
590
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
589
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
590
+                             // Be sure you have this distance over your Z_MAX_POS in case.
591 591
 
592 592
 // ENDSTOP SETTINGS:
593 593
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/SCARA/Configuration.h View File

@@ -551,8 +551,8 @@
551 551
 //
552 552
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
553 553
 //
554
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
555
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
554
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
555
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
556 556
 
557 557
 //
558 558
 // For M851 give a range for adjusting the Z probe offset
@@ -597,8 +597,8 @@
597 597
 
598 598
 // @section homing
599 599
 
600
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
601
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
600
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
601
+                             // Be sure you have this distance over your Z_MAX_POS in case.
602 602
 
603 603
 // ENDSTOP SETTINGS:
604 604
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/TAZ4/Configuration.h View File

@@ -564,8 +564,8 @@
564 564
 //
565 565
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
566 566
 //
567
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
568
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
567
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
568
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
569 569
 
570 570
 //
571 571
 // For M851 give a range for adjusting the Z probe offset
@@ -610,8 +610,8 @@
610 610
 
611 611
 // @section homing
612 612
 
613
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
614
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
613
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
614
+                             // Be sure you have this distance over your Z_MAX_POS in case.
615 615
 
616 616
 // ENDSTOP SETTINGS:
617 617
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/WITBOX/Configuration.h View File

@@ -535,8 +535,8 @@
535 535
 //
536 536
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
537 537
 //
538
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
539
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
538
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
539
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
540 540
 
541 541
 //
542 542
 // For M851 give a range for adjusting the Z probe offset
@@ -581,8 +581,8 @@
581 581
 
582 582
 // @section homing
583 583
 
584
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
585
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
584
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
585
+                             // Be sure you have this distance over your Z_MAX_POS in case.
586 586
 
587 587
 // ENDSTOP SETTINGS:
588 588
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/adafruit/ST7565/Configuration.h View File

@@ -543,8 +543,8 @@
543 543
 //
544 544
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
545 545
 //
546
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
547
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
546
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
547
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
548 548
 
549 549
 //
550 550
 // For M851 give a range for adjusting the Z probe offset
@@ -589,8 +589,8 @@
589 589
 
590 590
 // @section homing
591 591
 
592
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
592
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
593
+                             // Be sure you have this distance over your Z_MAX_POS in case.
594 594
 
595 595
 // ENDSTOP SETTINGS:
596 596
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/delta/biv2.5/Configuration.h View File

@@ -632,8 +632,8 @@
632 632
 //
633 633
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
634 634
 //
635
-#define Z_RAISE_PROBE_DEPLOY_STOW 50 // Raise to make room for the probe to deploy / stow
636
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
635
+#define Z_PROBE_DEPLOY_HEIGHT 50 // Raise to make room for the probe to deploy / stow
636
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
637 637
 
638 638
 //
639 639
 // For M851 give a range for adjusting the Z probe offset
@@ -678,8 +678,8 @@
678 678
 
679 679
 // @section homing
680 680
 
681
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
682
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
681
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
682
+                             // Be sure you have this distance over your Z_MAX_POS in case.
683 683
 
684 684
 // ENDSTOP SETTINGS:
685 685
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

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

@@ -626,8 +626,8 @@
626 626
 //
627 627
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
628 628
 //
629
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
630
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
629
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
630
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
631 631
 
632 632
 //
633 633
 // For M851 give a range for adjusting the Z probe offset
@@ -672,8 +672,8 @@
672 672
 
673 673
 // @section homing
674 674
 
675
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
676
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
675
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
676
+                             // Be sure you have this distance over your Z_MAX_POS in case.
677 677
 
678 678
 // ENDSTOP SETTINGS:
679 679
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

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

@@ -629,8 +629,8 @@
629 629
 //
630 630
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
631 631
 //
632
-#define Z_RAISE_PROBE_DEPLOY_STOW 50 // Raise to make room for the probe to deploy / stow
633
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
632
+#define Z_PROBE_DEPLOY_HEIGHT 50 // Raise to make room for the probe to deploy / stow
633
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
634 634
 
635 635
 //
636 636
 // For M851 give a range for adjusting the Z probe offset
@@ -675,8 +675,8 @@
675 675
 
676 676
 // @section homing
677 677
 
678
-//#define MIN_Z_HEIGHT_FOR_HOMING 15// (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
679
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
678
+//#define Z_HOMING_HEIGHT 15 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
679
+                             // Be sure you have this distance over your Z_MAX_POS in case.
680 680
 
681 681
 // ENDSTOP SETTINGS:
682 682
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/delta/kossel_pro/Configuration.h View File

@@ -623,8 +623,8 @@
623 623
 //
624 624
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
625 625
 //
626
-#define Z_RAISE_PROBE_DEPLOY_STOW 100 // Raise to make room for the probe to deploy / stow
627
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
626
+#define Z_PROBE_DEPLOY_HEIGHT 100 // Raise to make room for the probe to deploy / stow
627
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
628 628
 
629 629
 //
630 630
 // For M851 give a range for adjusting the Z probe offset
@@ -669,8 +669,8 @@
669 669
 
670 670
 // @section homing
671 671
 
672
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
673
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
672
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
673
+                             // Be sure you have this distance over your Z_MAX_POS in case.
674 674
 
675 675
 // ENDSTOP SETTINGS:
676 676
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/delta/kossel_xl/Configuration.h View File

@@ -624,8 +624,8 @@
624 624
 //
625 625
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
626 626
 //
627
-#define Z_RAISE_PROBE_DEPLOY_STOW 20 // Raise to make room for the probe to deploy / stow
628
-#define Z_RAISE_BETWEEN_PROBINGS 10 // Raise between probing points.
627
+#define Z_PROBE_DEPLOY_HEIGHT 20 // Raise to make room for the probe to deploy / stow
628
+#define Z_PROBE_TRAVEL_HEIGHT 10 // Raise between probing points.
629 629
 
630 630
 //
631 631
 // For M851 give a range for adjusting the Z probe offset
@@ -670,8 +670,8 @@
670 670
 
671 671
 // @section homing
672 672
 
673
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
674
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
673
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
674
+                             // Be sure you have this distance over your Z_MAX_POS in case.
675 675
 
676 676
 // ENDSTOP SETTINGS:
677 677
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/example_configurations/makibox/Configuration.h View File

@@ -546,8 +546,8 @@
546 546
 //
547 547
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
548 548
 //
549
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
550
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
549
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
550
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
551 551
 
552 552
 //
553 553
 // For M851 give a range for adjusting the Z probe offset
@@ -592,8 +592,8 @@
592 592
 
593 593
 // @section homing
594 594
 
595
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
596
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
595
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
596
+                             // Be sure you have this distance over your Z_MAX_POS in case.
597 597
 
598 598
 // ENDSTOP SETTINGS:
599 599
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

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

@@ -533,8 +533,8 @@
533 533
 //
534 534
 // Probe Raise options provide clearance for the probe to deploy, stow, and travel.
535 535
 //
536
-#define Z_RAISE_PROBE_DEPLOY_STOW 15 // Raise to make room for the probe to deploy / stow
537
-#define Z_RAISE_BETWEEN_PROBINGS 5  // Raise between probing points.
536
+#define Z_PROBE_DEPLOY_HEIGHT 15 // Raise to make room for the probe to deploy / stow
537
+#define Z_PROBE_TRAVEL_HEIGHT 5  // Raise between probing points.
538 538
 
539 539
 //
540 540
 // For M851 give a range for adjusting the Z probe offset
@@ -579,8 +579,8 @@
579 579
 
580 580
 // @section homing
581 581
 
582
-//#define MIN_Z_HEIGHT_FOR_HOMING 4 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
583
-                                    // Be sure you have this distance over your Z_MAX_POS in case.
582
+//#define Z_HOMING_HEIGHT 4  // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
583
+                             // Be sure you have this distance over your Z_MAX_POS in case.
584 584
 
585 585
 // ENDSTOP SETTINGS:
586 586
 // Sets direction of endstops when homing; 1=MAX, -1=MIN

+ 4
- 4
Marlin/ultralcd.cpp View File

@@ -985,16 +985,16 @@ void kill_screen(const char* lcd_msg) {
985 985
     static uint8_t _lcd_level_bed_position;
986 986
 
987 987
     // Utility to go to the next mesh point
988
-    // A raise is added between points if MIN_Z_HEIGHT_FOR_HOMING is in use
988
+    // A raise is added between points if Z_HOMING_HEIGHT is in use
989 989
     // Note: During Manual Bed Leveling the homed Z position is MESH_HOME_SEARCH_Z
990 990
     // Z position will be restored with the final action, a G28
991 991
     inline void _mbl_goto_xy(float x, float y) {
992
-      current_position[Z_AXIS] = MESH_HOME_SEARCH_Z + MIN_Z_HEIGHT_FOR_HOMING;
992
+      current_position[Z_AXIS] = MESH_HOME_SEARCH_Z + Z_HOMING_HEIGHT;
993 993
       line_to_current(Z_AXIS);
994 994
       current_position[X_AXIS] = x + home_offset[X_AXIS];
995 995
       current_position[Y_AXIS] = y + home_offset[Y_AXIS];
996 996
       line_to_current(manual_feedrate_mm_m[X_AXIS] <= manual_feedrate_mm_m[Y_AXIS] ? X_AXIS : Y_AXIS);
997
-      #if MIN_Z_HEIGHT_FOR_HOMING > 0
997
+      #if Z_HOMING_HEIGHT > 0
998 998
         current_position[Z_AXIS] = MESH_HOME_SEARCH_Z; // How do condition and action match?
999 999
         line_to_current(Z_AXIS);
1000 1000
       #endif
@@ -1045,7 +1045,7 @@ void kill_screen(const char* lcd_msg) {
1045 1045
           if (_lcd_level_bed_position == (MESH_NUM_X_POINTS) * (MESH_NUM_Y_POINTS)) {
1046 1046
             lcd_goto_screen(_lcd_level_bed_done, true);
1047 1047
 
1048
-            current_position[Z_AXIS] = MESH_HOME_SEARCH_Z + MIN_Z_HEIGHT_FOR_HOMING;
1048
+            current_position[Z_AXIS] = MESH_HOME_SEARCH_Z + Z_HOMING_HEIGHT;
1049 1049
             line_to_current(Z_AXIS);
1050 1050
             stepper.synchronize();
1051 1051
 

Loading…
Cancel
Save