This commit is contained in:
Victor Oliveira 2026-02-07 08:29:49 +07:00 committed by GitHub
commit bc8bcd9f2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -206,6 +206,9 @@ class GCodeDispatch:
cpos = line.find(';')
if cpos >= 0:
line = line[:cpos]
# log current line
if len(line) > 0:
logging.info(line)
# Break line into parts and determine command
parts = self.args_r.split(line.upper())
if ''.join(parts[:2]) == 'N':