Incremental jog or interruptible jog mode
Release Note

As of Build V2.11.2010.02, the command #JOG INCR [...] replaces the command #SET JOG [...]. For compatibility reasons, this command is still available but it is recommended not to use it in new NC programs.
#JOG INCR [ AX<axis_name> | AXNR<expr> DIST1<expr> FEED1<expr> [ DIST2<expr> FEED2<expr> DIST3<expr> FEED3<expr> ] ] (modal) |
AX<axis_name> | Name of manual mode axis |
AXNR<expr> | Logical number of manual mode axis, positive integer. |
DIST1<expr> FEED1<expr>, DIST2<expr> FEED2<expr>, DIST3<expr> FEED3<expr>, |
Pairs of (incremental widths; velocity)(maximum 3) in [mm;mm/min, mm;m/min, inch;inch/min, °;°/min] |
Programing Example

Incremental jog or interruptible jog mode
When the axis name is specified:
...
G202 X1
#JOG INCR [AX=X DIST1=0.1 FEED1=1.0 DIST2=0.2 FEED2=1.5 DIST3=0.5 FEED3=2.0]
...
G201 X1
...
..or when the logical axis number is specified:
...
G202 X1
#JOG INCR [AXNR=1 DIST1=0.1 FEED1=1.0 DIST2=0.2 FEED2=1.5 DIST3=0.5 FEED3=2.0]
...
G201 X1
...