Tweak use of move_z_after_probing

2.0.x
Scott Lahteine 7 years ago
parent c352954882
commit bc45fb6b13

@ -757,7 +757,10 @@
} while (location.x_index >= 0 && --count);
STOW_PROBE();
move_z_after_probing();
#if Z_AFTER_PROBING
move_z_after_probing();
#endif
restore_ubl_active_state_and_leave();

@ -949,7 +949,7 @@ void GcodeSuite::G29() {
if (planner.leveling_active)
SYNC_PLAN_POSITION_KINEMATIC();
#if HAS_BED_PROBE
#if HAS_BED_PROBE && Z_AFTER_PROBING
move_z_after_probing();
#endif

@ -310,7 +310,7 @@ void GcodeSuite::G28(const bool always_home_all) {
HOMEAXIS(Z);
#endif
} // home_all || homeZ
#if HOMING_Z_WITH_PROBE
#if HOMING_Z_WITH_PROBE && Z_AFTER_PROBING
move_z_after_probing();
#endif
#endif // Z_HOME_DIR < 0

@ -62,7 +62,9 @@ void GcodeSuite::G30() {
clean_up_after_endstop_or_probe_move();
if (raise_after == PROBE_PT_STOW) move_z_after_probing();
#if Z_AFTER_PROBING
if (raise_after == PROBE_PT_STOW) move_z_after_probing();
#endif
report_current_position();
}

@ -41,7 +41,9 @@ void GcodeSuite::M401() {
*/
void GcodeSuite::M402() {
STOW_PROBE();
move_z_after_probing();
#if Z_AFTER_PROBING
move_z_after_probing();
#endif
report_current_position();
}

@ -465,7 +465,7 @@ bool set_probe_deployed(const bool deploy) {
return false;
}
#ifdef Z_AFTER_PROBING
#if Z_AFTER_PROBING
// After probing move to a preferred Z position
void move_z_after_probing() {
if (current_position[Z_AXIS] != Z_AFTER_PROBING) {

@ -32,10 +32,8 @@
#if HAS_BED_PROBE
extern float zprobe_zoffset;
bool set_probe_deployed(const bool deploy);
#ifdef Z_AFTER_PROBING
#if Z_AFTER_PROBING
void move_z_after_probing();
#else
inline void move_z_after_probing() {}
#endif
enum ProbePtRaise : unsigned char {
PROBE_PT_NONE, // No raise or stow after run_z_probe

Loading…
Cancel
Save