Merge pull request #4183 from AnHardt/do_probe_raise-asymetry

Unconditional do_probe_raise() in probe_pt()
master
Scott Lahteine 8 years ago committed by GitHub
commit b4fee31a84

@ -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: ");

Loading…
Cancel
Save