Skip to content

Commit

Permalink
No 'probing failed' with retry (MarlinFirmware#18379)
Browse files Browse the repository at this point in the history
  • Loading branch information
o-nix authored and Alexander Yasnogor committed Aug 7, 2020
1 parent 284482f commit d95f99a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Marlin/src/module/probe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,9 @@ float Probe::probe_at_point(const float &rx, const float &ry, const ProbePtRaise
if (isnan(measured_z)) {
stow();
LCD_MESSAGEPGM(MSG_LCD_PROBING_FAILED);
SERIAL_ERROR_MSG(STR_ERR_PROBING_FAILED);
#if DISABLED(G29_RETRY_AND_RECOVER)
SERIAL_ERROR_MSG(STR_ERR_PROBING_FAILED);
#endif
}

if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("<<< Probe::probe_at_point");
Expand Down

0 comments on commit d95f99a

Please sign in to comment.