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:
Teja 2015-02-02 13:14:15 +01:00
parent b68f613849
commit f6a3cf9821

View file

@ -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")