Continuous jog mode (#JOG CONT)
Release Note
As of Build V2.11.2010.02, the command #JOG CONT [...] replaces the command #SET TIP [...]. For compatibility reasons, this command is still available but it recommended not to use it in new NC programs.
Syntax: |
#JOG CONT [ AX=<axis_name> | AXNR=.. FEED1=.. [FEED2=.. FEED3=.. ] ] |
AX=<axis_name> | Name of manual mode axis |
AXNR=.. | Logical number of manual mode axis, positive integer. |
FEED1=.., FEED2=.., FEED3=.. |
Velocity stages (maximum 3) in [mm/min, m/min, inch/min, °/min] |
Programing Example
Continuous jog mode
When the axis name is specified:
G202 X1
...
#JOG CONT [AX=X FEED1=1.0 FEED2=1.5 FEED3=2.0]
...
G201 X1
...
..or when the logical axis number is specified:
G202 X1
...
#JOG CONT [AXNR=1 FEED1=1.0 FEED2=1.5 FEED3=2.0]
...
G201 X1
...