Support for "mechanical probe" with Allen Key as a special case
This commit is contained in:
@ -1763,7 +1763,7 @@ static void setup_for_endstop_move() {
|
||||
#endif // Z_PROBE_ALLEN_KEY
|
||||
|
||||
#if ENABLED(FIX_MOUNTED_PROBE)
|
||||
// Noting to be done. Just set z_probe_is_active
|
||||
// Nothing to do here. Just clear z_probe_is_active
|
||||
#endif
|
||||
|
||||
z_probe_is_active = false;
|
||||
@ -3097,7 +3097,7 @@ inline void gcode_G28() {
|
||||
|
||||
#if ENABLED(Z_PROBE_SLED)
|
||||
dock_sled(false); // engage (un-dock) the Z probe
|
||||
#elif ENABLED(Z_PROBE_ALLEN_KEY) || (ENABLED(DELTA) && SERVO_LEVELING)
|
||||
#elif ENABLED(MECHANICAL_PROBE) || (ENABLED(DELTA) && SERVO_LEVELING)
|
||||
deploy_z_probe();
|
||||
#endif
|
||||
|
||||
@ -3357,7 +3357,7 @@ inline void gcode_G28() {
|
||||
#if ENABLED(Z_PROBE_ALLEN_KEY) || SERVO_LEVELING
|
||||
stow_z_probe();
|
||||
#elif Z_RAISE_AFTER_PROBING > 0
|
||||
raise_z_after_probing(); // ???
|
||||
raise_z_after_probing(); // for non Allen Key probes, such as simple mechanical probe
|
||||
#endif
|
||||
#else // !DELTA
|
||||
if (verbose_level > 0)
|
||||
|
Reference in New Issue
Block a user