Skip to content

Commit

Permalink
Merge pull request MarlinFirmware#1065 from oliasmage/Marlin_v1
Browse files Browse the repository at this point in the history
Corrected retract() call for use of auto probe without sled enabled.
  • Loading branch information
galexander1 committed Sep 19, 2014
2 parents 5b66810 + 3b8216b commit cb4a6dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,9 @@ static void homeaxis(int axis) {
}
#endif
#if defined (ENABLE_AUTO_BED_LEVELING) && (PROBE_SERVO_DEACTIVATION_DELAY > 0)
// if (axis==Z_AXIS) retract_z_probe();
#ifndef Z_PROBE_SLED
if (axis==Z_AXIS) retract_z_probe();
#endif
#endif

}
Expand Down

0 comments on commit cb4a6dd

Please sign in to comment.