From 80691206e7175dc18903e562a837f16bcbf11c10 Mon Sep 17 00:00:00 2001 From: Thomas Basler Date: Sun, 22 Jan 2023 22:35:27 +0100 Subject: [PATCH] Prevent moving up before homing By default the Z axis movies up NOZZLE_TO_PROBE_OFFSET + Z_CLEARANCE_DEPLOY_PROBE + Z_CLEARANCE_BETWEEN_PROBES We can only prevent the last two by setting them to zero. The first one must stay at it's value --- Marlin/Configuration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 0da2066c17..b602b3eb65 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -1560,8 +1560,8 @@ * Example: `M851 Z-5` with a CLEARANCE of 4 => 9mm from bed to nozzle. * But: `M851 Z+1` with a CLEARANCE of 2 => 2mm from bed to nozzle. */ -#define Z_CLEARANCE_DEPLOY_PROBE 10 // Z Clearance for Deploy/Stow -#define Z_CLEARANCE_BETWEEN_PROBES 5 // Z Clearance between probe points +#define Z_CLEARANCE_DEPLOY_PROBE 0 // Z Clearance for Deploy/Stow +#define Z_CLEARANCE_BETWEEN_PROBES 0 // Z Clearance between probe points #define Z_CLEARANCE_MULTI_PROBE 5 // Z Clearance between multiple probes //#define Z_AFTER_PROBING 5 // Z position after probing is done