From 8b500ca9a36c7e12e2f2f63161b06a669b237cdd Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Mon, 1 Dec 2025 06:29:51 +0100 Subject: [PATCH] CAM: Adjusted Fanuc post processor to use M05 consistently everywhere. --- src/Mod/CAM/Path/Post/scripts/fanuc_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/CAM/Path/Post/scripts/fanuc_post.py b/src/Mod/CAM/Path/Post/scripts/fanuc_post.py index ad10f3bf86..c32950c417 100644 --- a/src/Mod/CAM/Path/Post/scripts/fanuc_post.py +++ b/src/Mod/CAM/Path/Post/scripts/fanuc_post.py @@ -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