Procházet zdrojové kódy

Include negative Z probe offset in clearance move

Scott Lahteine před 8 roky
rodič
revize
9485aa8f13
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1
    0
      Marlin/Marlin_main.cpp

+ 1
- 0
Marlin/Marlin_main.cpp Zobrazit soubor

@@ -2057,6 +2057,7 @@ static void clean_up_after_endstop_or_probe_move() {
2057 2057
       // If the nozzle is above the travel height then
2058 2058
       // move down quickly before doing the slow probe
2059 2059
       float z = LOGICAL_Z_POSITION(Z_CLEARANCE_BETWEEN_PROBES);
2060
+      if (zprobe_zoffset < 0) z -= zprobe_zoffset;
2060 2061
       if (z < current_position[Z_AXIS])
2061 2062
         do_blocking_move_to_z(z, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
2062 2063
 

Loading…
Zrušit
Uložit