# This custom command should return
# 1 : Output BLOCK
# 0 : No output
#
# 07-May-15 Jintao - no output if retract_to_pos < rapid_to_pos
global mom_cycle_retract_to_pos
global mom_cycle_rapid_to_pos
# If operation has retraction, output rapid move to the retraction point
if { [EQ_is_le $mom_cycle_retract_to_pos(2) $mom_cycle_rapid_to_pos(2)] } {
return 0
} else {
MOM_force Once tap_string F R dwell cycle_step
return 1
}