mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-17 14:50:58 +00:00
parent
6e932f979d
commit
b1ec140f0b
1 changed files with 9 additions and 2 deletions
|
@ -2107,8 +2107,15 @@ static void clean_up_after_endstop_or_probe_move() {
|
|||
|
||||
if (endstops.z_probe_enabled == deploy) return false;
|
||||
|
||||
// Make room for probe
|
||||
do_probe_raise(_Z_CLEARANCE_DEPLOY_PROBE);
|
||||
// Fix-mounted probe should only raise for deploy
|
||||
#if ENABLED(FIX_MOUNTED_PROBE)
|
||||
#define RAISE_COND deploy
|
||||
#else
|
||||
#define RAISE_COND true
|
||||
#endif
|
||||
|
||||
// Make room for probe to deploy (or stow)
|
||||
if (RAISE_COND) do_probe_raise(_Z_CLEARANCE_DEPLOY_PROBE);
|
||||
|
||||
#if ENABLED(Z_PROBE_SLED) || ENABLED(Z_PROBE_ALLEN_KEY)
|
||||
#if ENABLED(Z_PROBE_SLED)
|
||||
|
|
Loading…
Reference in a new issue