Add Feedrate to G85 command moves

#fixes #15646
This commit is contained in:
Brad Collette
2024-08-17 12:49:09 -05:00
committed by WandererFan
parent ce11e63958
commit 4ec94e678e

View File

@@ -86,7 +86,7 @@ CmdMoveRapid = ["G0", "G00"]
CmdMoveStraight = ["G1", "G01"]
CmdMoveCW = ["G2", "G02"]
CmdMoveCCW = ["G3", "G03"]
CmdMoveDrill = ["G73", "G81", "G82", "G83"]
CmdMoveDrill = ["G73", "G81", "G82", "G83","G85"]
CmdMoveArc = CmdMoveCW + CmdMoveCCW
CmdMove = CmdMoveStraight + CmdMoveArc + CmdMoveDrill
CmdMoveAll = CmdMove + CmdMoveRapid