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
This commit is contained in:
Thomas Basler 2023-01-22 22:35:27 +01:00
parent 1d3a3c6f9c
commit 80691206e7
1 changed files with 2 additions and 2 deletions

View File

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