ID 22262

#SYNC IN with selected coordinate system is not allowed.

Description

When the Conveyor tracking [FCT-M4] function was used, synchronisation was programmed using the #SYNC IN command with an active coordinate system. This is not permitted.

Example with error:

N010 #CS DEF [1][1,15,5,20,30,45] (CS definition)
N020 #CS ON[1]    (enable the CS with ID 1)
N030 #SYNC IN
; …
N100 #CS OFF    (deselect the CS )
N110 #SYNC OFF
; …

 

Corrected example:

N010 #CS DEF [1][1,15,5,20,30,45] (CS definition)
N020 #SYNC IN
N030 #CS ON[1]    (enable the CS with ID 1)
; …
N100 #CS OFF   (deselect the CS )
N110 #SYNC OFF
; …

 

Alternative corrected example:

N010 #CS DEF [1][1,15,5,20,30,45] (CS definition)
N020 #CS ON[1]    (enable the CS with ID 1)
; …
N030 #CS OFF    (deselect the CS )
N040 #SYNC IN
;…
N110 #SYNC OFF
; …

Response

Class

2

Abort NC program processing.

Solution

Class

3

Check and modify the NC program; change the command sequence.

Error type

1, Error message from NC program.