Skip to content

Commit

Permalink
back to interrupt command
Browse files Browse the repository at this point in the history
  • Loading branch information
bwnance authored and rogerlz committed Feb 22, 2024
1 parent 333f14a commit 22dfc5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions klippy/gcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def __init__(self, printer):
"ECHO",
"STATUS",
"HELP",
"INTERRUPT_HEATER",
"INTERRUPT",
]
for cmd in handlers:
func = getattr(self, "cmd_" + cmd)
Expand Down Expand Up @@ -486,7 +486,7 @@ def cmd_HELP(self, gcmd):
cmdhelp.append("%-10s: %s" % (cmd, self.gcode_help[cmd]))
gcmd.respond_info("\n".join(cmdhelp), log=False)

def cmd_INTERRUPT_HEATER(self, gcmd):
def cmd_INTERRUPT(self, gcmd):
self.increment_interrupt_counter()


Expand Down

0 comments on commit 22dfc5d

Please sign in to comment.