Add Z_PROBE_LOW_POINT to prevent damage

This commit is contained in:
Scott Lahteine
2018-04-09 01:46:23 -05:00
parent 82dafbba33
commit 8b8ad14178
6 changed files with 38 additions and 9 deletions

View File

@ -137,7 +137,7 @@ static void G33_cleanup(
inline float calibration_probe(const float nx, const float ny, const bool stow) {
#if HAS_BED_PROBE
return probe_pt(nx, ny, stow ? PROBE_PT_STOW : PROBE_PT_RAISE, 0, false);
return probe_pt(nx, ny, stow ? PROBE_PT_STOW : PROBE_PT_RAISE, 0, true);
#else
UNUSED(stow);
return lcd_probe_pt(nx, ny);