CAM: Adjusted Fanuc post processor to use M05 consistently everywhere.

This commit is contained in:
Petter Reinholdtsen
2025-12-11 00:57:21 +01:00
parent 4c18ac6c54
commit 8b500ca9a3
+1 -1
View File
@@ -616,7 +616,7 @@ def parse(pathobj):
# Check for Tool Change:
if command == "M6":
# stop the spindle
out += linenumber() + "M5\n"
out += linenumber() + "M05\n"
for line in TOOL_CHANGE.splitlines(True):
out += linenumber() + line