Browse Source

No 'probing failed' with retry (#18379)

Kirill Vergun 4 years ago
parent
commit
1ea4e393c9
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      Marlin/src/module/probe.cpp

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

@@ -727,7 +727,9 @@ float Probe::probe_at_point(const float &rx, const float &ry, const ProbePtRaise
727 727
   if (isnan(measured_z)) {
728 728
     stow();
729 729
     LCD_MESSAGEPGM(MSG_LCD_PROBING_FAILED);
730
-    SERIAL_ERROR_MSG(STR_ERR_PROBING_FAILED);
730
+    #if DISABLED(G29_RETRY_AND_RECOVER)
731
+      SERIAL_ERROR_MSG(STR_ERR_PROBING_FAILED);
732
+    #endif
731 733
   }
732 734
 
733 735
   if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("<<< Probe::probe_at_point");

Loading…
Cancel
Save