fix feedrate update

Fix machinestate to handle drill moves and tests
move feed and rapid declarations to PathGeom
This commit is contained in:
sliptonic
2021-12-22 18:09:52 -06:00
parent 18582ff9af
commit 95a83c811b
4 changed files with 38 additions and 8 deletions

View File

@@ -87,8 +87,9 @@ CmdMoveRapid = ["G0", "G00"]
CmdMoveStraight = ["G1", "G01"]
CmdMoveCW = ["G2", "G02"]
CmdMoveCCW = ["G3", "G03"]
CmdMoveDrill = ["G81", "G82", "G83"]
CmdMoveArc = CmdMoveCW + CmdMoveCCW
CmdMove = CmdMoveStraight + CmdMoveArc
CmdMove = CmdMoveStraight + CmdMoveArc + CmdMoveDrill
CmdMoveAll = CmdMove + CmdMoveRapid