The Delete EOB function removes the End-of-Block character ; from G-code lines.
This is useful if your CNC program needs to be prepared for a control system
where the EOB character is not used or a different format is required.
; characters inside it are also removed.; characters are removed only at the end of a code line to avoid breaking the internal structure.
; Before
G01 X100 Y50;
G02 X150 Y100 I50 J50; (Circular interpolation)
(Comment;)
; After
G01 X100 Y50
G02 X150 Y100 I50 J50 (Circular interpolation)
(Comment)
Make sure that removing EOB characters does not affect compatibility with your equipment. Some CNC machines require an End-of-Block character for proper code execution.