Hi all. I have a Mori ZL-35 4-axis lathe with an older Fanuc 0-TTC series controller. What I am trying to implement is a "dummy" tool to check part lengths before the actual machining process. Where I am stuck is getting the "dummy" tool to feed in on a G01 command without any spindle speed (I don't want the part to rotate when feeding in to check length). My question is, is it possible to issue a G01 command without any spindle speed settings?
here is a snippet of my dummy tooling program for head 2 (bottom turret):
M25
G98
G10L2P0X0Z0
G10L2L1X0Z-55.0982
G50X14.25Z35.076
G0T0707
G0X5.6Z34.356
G01X5.5F0.010 <--------(this is where the program hangs up and no movement occurs)
G0G28U0
M100
Z35.076

As you can see, I only need that 0.100 movement to determine if the part is present, but the turret will not move.

Any help or ideas?