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 #endif
stow_z_probe(); stow_z_probe();
} }
#if Z_RAISE_BETWEEN_PROBINGS > 0 else {
else { #if ENABLED(DEBUG_LEVELING_FEATURE)
#if ENABLED(DEBUG_LEVELING_FEATURE) if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> do_probe_raise");
if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> do_probe_raise"); #endif
#endif do_probe_raise(Z_RAISE_BETWEEN_PROBINGS);
do_probe_raise(Z_RAISE_BETWEEN_PROBINGS); }
}
#endif
if (verbose_level > 2) { if (verbose_level > 2) {
SERIAL_PROTOCOLPGM("Bed X: "); SERIAL_PROTOCOLPGM("Bed X: ");

Loading…
Cancel
Save