gcode: Rename run_script() to run_script_from_command()

Emphasize that the run_script() method is only valid when run from a
g-code command.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2018-06-30 14:08:02 -04:00
parent 53b718a621
commit 4ad44e3e83
6 changed files with 10 additions and 10 deletions

View file

@ -106,10 +106,10 @@ class ProbeEndstopWrapper:
self.query_endstop_wait = self.mcu_endstop.query_endstop_wait
self.TimeoutError = self.mcu_endstop.TimeoutError
def home_prepare(self):
self.gcode.run_script(self.activate_gcode)
self.gcode.run_script_from_command(self.activate_gcode)
self.mcu_endstop.home_prepare()
def home_finalize(self):
self.gcode.run_script(self.deactivate_gcode)
self.gcode.run_script_from_command(self.deactivate_gcode)
self.mcu_endstop.home_finalize()
# Wrapper that records the last XY position of a virtual endstop probe
@ -186,7 +186,7 @@ class ProbePointsHelper:
if self.probe is not None:
try:
while self.busy:
self.gcode.run_script("PROBE")
self.gcode.run_script_from_command("PROBE")
self.cmd_NEXT({})
except:
self.finalize(False)