Skip to content

Commit

Permalink
Merge pull request #4183 from AnHardt/do_probe_raise-asymetry
Browse files Browse the repository at this point in the history
Unconditional do_probe_raise() in probe_pt()
  • Loading branch information
thinkyhead committed Jul 1, 2016
2 parents 7ef7843 + cb1b31f commit b4fee31
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2118,14 +2118,12 @@ static void clean_up_after_endstop_or_probe_move() {
#endif
stow_z_probe();
}
#if Z_RAISE_BETWEEN_PROBINGS > 0
else {
#if ENABLED(DEBUG_LEVELING_FEATURE)
if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> do_probe_raise");
#endif
do_probe_raise(Z_RAISE_BETWEEN_PROBINGS);
}
#endif
else {
#if ENABLED(DEBUG_LEVELING_FEATURE)
if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> do_probe_raise");
#endif
do_probe_raise(Z_RAISE_BETWEEN_PROBINGS);
}

if (verbose_level > 2) {
SERIAL_PROTOCOLPGM("Bed X: ");
Expand Down

0 comments on commit b4fee31

Please sign in to comment.