Skip to content

Commit

Permalink
Corrected retract() call for use of auto probe without sled enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Bell authored and Charles Bell committed Sep 4, 2014
1 parent e7707ae commit 37799f7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1136,8 +1136,10 @@ static void homeaxis(int axis) {
}
#endif
#if defined (ENABLE_AUTO_BED_LEVELING) && (PROBE_SERVO_DEACTIVATION_DELAY > 0)
// if (axis==Z_AXIS) retract_z_probe();
#endif
#ifndef Z_PROBE_SLED
if (axis==Z_AXIS) retract_z_probe();
#endif#
endif

}
}
Expand Down

0 comments on commit 37799f7

Please sign in to comment.