Is it possible to turn on/off an output (from the g-code via an m-macro) and not interupt the constant velocity?
I'm cutting circles in plasma, and to get a perfect cut I need to be able to switch off the torch a few mm before the end of the cut.
The CAM software can calculate this just fine, and break the circle into arcs and place an M code at the appropriate point.
However this causes a slight pause as the cnc decelerates, executes the M-code (to turn off the torch), and then re-accelerates to finish the cut.
Example:
G0X0
G1X10
M1000 ;Turn off output
G1X12 ;Finish cut
If this is executed without the M1000 there is no delay (no decl & accel).
Any ideas on how to achieve this?