Sfoglia il codice sorgente

Z_RAISE_AFTER_PROBING value was being ignored by Marlin because

raise_z_after_probing() was only called if the printer type was set to a
DELTA or if the printer had a docking sled for the probe.
jbrazio 9 anni fa
parent
commit
17cc2a9663
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2
    0
      Marlin/Marlin_main.cpp

+ 2
- 0
Marlin/Marlin_main.cpp Vedi File

@@ -3198,6 +3198,8 @@ inline void gcode_G28() {
3198 3198
       // Sled assembly for Cartesian bots
3199 3199
       #if ENABLED(Z_PROBE_SLED)
3200 3200
         dock_sled(true); // dock the sled
3201
+      #elif Z_RAISE_AFTER_PROBING > 0
3202
+        raise_z_after_probing();
3201 3203
       #endif
3202 3204
 
3203 3205
     #endif // !DELTA

Loading…
Annulla
Salva