probe: Catch and propagate errors raised during ProbePointsHelper

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2018-06-11 21:29:24 -04:00
parent e110e1fecc
commit 3819ad2986
1 changed files with 17 additions and 5 deletions

View File

@ -181,16 +181,24 @@ class ProbePointsHelper:
self.busy = True
self.move_next()
if self.probe is not None:
try:
while self.busy:
self.gcode.run_script("PROBE")
self.cmd_NEXT({})
except:
self.finalize(False)
raise
def move_next(self):
x, y = self.probe_points[len(self.results)]
curpos = self.toolhead.get_position()
curpos[0] = x
curpos[1] = y
curpos[2] = self.horizontal_move_z
try:
self.toolhead.move(curpos, self.speed)
except homing.EndstopError as e:
self.finalize(False)
raise self.gcode.error(str(e))
self.gcode.reset_last_position()
cmd_NEXT_help = "Move to the next XY position to probe"
def cmd_NEXT(self, params):
@ -200,7 +208,11 @@ class ProbePointsHelper:
# Lift toolhead
curpos = self.toolhead.get_position()
curpos[2] = self.horizontal_move_z
try:
self.toolhead.move(curpos, self.lift_speed)
except homing.EndstopError as e:
self.finalize(False)
raise self.gcode.error(str(e))
# Move to next position
if len(self.results) == len(self.probe_points):
self.toolhead.get_last_move_time()