first of all thanks for all the comments.
i tried some code snippets today. All executed with THC ON & THC delay OFF
first one form laki:
N0100 M1031
N0110 G00 Z4.0000
N0120 M03
N0130 G04 P0.1
N0140 G01 Z4.1000 F3000.0 (Z axis up for 0.1)
N0150 M05
---> no break in Motion
https://streamable.com/833a5pthen i changed the code a bit: Add z motion after m3
N0100 M1031
N0110 G00 Z4.0000
N0120 M03
N0140 G01 Z4.1000 F3000.0 (Z axis up for 0.1)
N0130 G04 P0.1
N0150 M05
---> no break in Motion
https://streamable.com/kqzqiithe solution is to add an x/y movment after m3 like this one:
N0090 G00 X117.5000 Y225.0000
N0100 M1031
N0110 G00 Z4.0000
N0120 M03
N0140 G01 X117.6000F3000.0 (Z axis up for 0.1)
N0130 G04 P0.1
N0150 M05
---> break in Motion
https://streamable.com/3ism7ucould someone please verify my tests