Browse Source

Corrected retract() call for use of auto probe without sled enabled.

pull/1/head
Charles Bell 10 years ago
parent
commit
37799f70ba
  1. 6
      Marlin/Marlin_main.cpp

6
Marlin/Marlin_main.cpp

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

Loading…
Cancel
Save