Browse Source

Merge pull request #4183 from AnHardt/do_probe_raise-asymetry

Unconditional do_probe_raise() in probe_pt()
pull/1/head
Scott Lahteine 9 years ago
committed by GitHub
parent
commit
b4fee31a84
  1. 14
      Marlin/Marlin_main.cpp

14
Marlin/Marlin_main.cpp

@ -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