Browse Source

Apply needed BLTouch patch (#14233)

BigIronGuru 6 years ago
parent
commit
293018f76c
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      Marlin/src/module/probe.cpp

+ 5
- 1
Marlin/src/module/probe.cpp View File

@@ -726,7 +726,11 @@ float probe_pt(const float &rx, const float &ry, const ProbePtRaise raise_after/
726 726
   feedrate_mm_s = old_feedrate_mm_s;
727 727
 
728 728
   if (isnan(measured_z)) {
729
-    STOW_PROBE();
729
+    #if ENABLED(BLTOUCH) && DISABLED(BLTOUCH_HS_MODE)
730
+      bltouch.stow();
731
+    #else
732
+      STOW_PROBE();
733
+    #endif
730 734
     LCD_MESSAGEPGM(MSG_ERR_PROBING_FAILED);
731 735
     SERIAL_ERROR_MSG(MSG_ERR_PROBING_FAILED);
732 736
   }

Loading…
Cancel
Save