Skip to content
Snippets Groups Projects
Commit b3deadd8 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Don't raise FIX_MOUNTED_PROBE on stow

Reference #9336
parent a74cece6
Branches
Tags
No related merge requests found
......@@ -374,8 +374,15 @@ bool set_probe_deployed(const bool deploy) {
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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment