mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-24 07:04:01 -06:00
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:
parent
53b718a621
commit
4ad44e3e83
6 changed files with 10 additions and 10 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue