From 1f32565819e5f2d4b4ccee4b4f22f496b432d2d5 Mon Sep 17 00:00:00 2001 From: zophon <55510601+zophon@users.noreply.github.com> Date: Mon, 8 Sep 2025 18:07:01 +0200 Subject: [PATCH] Update KineticNCBeamicon2_post.py (#23602) Added a return in the postamble to separate M05 and M09 GCode as beamicon2-basic doesn't like having both M-code on the same line. --- src/Mod/CAM/Path/Post/scripts/KineticNCBeamicon2_post.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/CAM/Path/Post/scripts/KineticNCBeamicon2_post.py b/src/Mod/CAM/Path/Post/scripts/KineticNCBeamicon2_post.py index d3334aeff6..31f3691c6c 100644 --- a/src/Mod/CAM/Path/Post/scripts/KineticNCBeamicon2_post.py +++ b/src/Mod/CAM/Path/Post/scripts/KineticNCBeamicon2_post.py @@ -116,7 +116,8 @@ M08 """ # Postamble text will appear following the last operation. -POSTAMBLE = """M05 M09 +POSTAMBLE = """M05 +M09 G17 G90 G80 G40 M30 """