bugfix. $H at the beginning of the print results in "invalid GCode ID33 when hitting a G02/03 command. WTF ? grbl bug?
This commit is contained in:
parent
b68f613849
commit
f6a3cf9821
1 changed files with 2 additions and 2 deletions
|
|
@ -404,8 +404,8 @@ class MachineCom(object):
|
|||
|
||||
try:
|
||||
# TODO fetch init sequence from machine profile
|
||||
self.sendCommand("$H")
|
||||
self.sendCommand("G92X0Y0Z0")
|
||||
#self.sendCommand("$H") # homing here results in invalid GCode ID33 on G02/03 commands. WTF?
|
||||
#self.sendCommand("G92X0Y0Z0")
|
||||
self.sendCommand("G90")
|
||||
self.sendCommand("M08")
|
||||
self.sendCommand("G21")
|
||||
|
|
|
|||
Loading…
Reference in a new issue