Skip to content

Commit

Permalink
added M6 (tool change) to pause commands
Browse files Browse the repository at this point in the history
  • Loading branch information
martin2250 committed Jan 14, 2018
1 parent 9ef8c88 commit 8a6cc58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenCNCPilot/Communication/Machine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ public void SetFile(IList<string> file)

if (int.TryParse(m.Groups[2].Value, out code))
{
if (code == 0 || code == 1 || code == 2 || code == 30)
if (code == 0 || code == 1 || code == 2 || code == 30 || code == 6)
pauselines[line] = true;
}
}
Expand Down

0 comments on commit 8a6cc58

Please sign in to comment.