Combine Z_AFTER_DEACTIVATE with UNKNOWN_Z_NO_RAISE (#20444)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
@@ -100,7 +100,7 @@ public:
|
||||
|
||||
static void move_z_after_probing() {
|
||||
#ifdef Z_AFTER_PROBING
|
||||
do_z_clearance(Z_AFTER_PROBING, true, true, true); // Move down still permitted
|
||||
do_z_clearance(Z_AFTER_PROBING, true); // Move down still permitted
|
||||
#endif
|
||||
}
|
||||
static float probe_at_point(const float &rx, const float &ry, const ProbePtRaise raise_after=PROBE_PT_NONE, const uint8_t verbose_level=0, const bool probe_relative=true, const bool sanity_check=true);
|
||||
@@ -120,7 +120,7 @@ public:
|
||||
|
||||
static void move_z_after_homing() {
|
||||
#ifdef Z_AFTER_HOMING
|
||||
do_z_clearance(Z_AFTER_HOMING, true, true, true);
|
||||
do_z_clearance(Z_AFTER_HOMING, true);
|
||||
#elif BOTH(Z_AFTER_PROBING, HAS_BED_PROBE)
|
||||
move_z_after_probing();
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user