There is any way to run saved macros from gcode, similar to M6 gcode comand to pause the machine
this option will be usefull for automatition like full tool cahnge, etc
There is any way to run saved macros from gcode, similar to M6 gcode comand to pause the machine
this option will be usefull for automatition like full tool cahnge, etc
#1 – naveedyassin 于 2025-04-10
M98 P1234 ; Call subprogram number 1234
…
O1234 ; Subprogram definition
G0 X0 Y0
G1 Z-5 F100
M99 ; End subprogram
•O1234 marks the beginning
•M99 returns to the main program