Hi @alexnittii
you are using a pretty old version of the post.
We have updated most of them to handle the machine kinematic in a different way.
But let's look at the problem:
var aAxis = createAxis({coordinate:0, table:true, axis:[1, 0, 0], range:[-90.00, 90.00]});
var cAxis = createAxis({coordinate:2, table:true, axis:[0, 0, 1], range:[-360.00, 360.00], cyclic:false});
There is no variable to clearly define the TCP support there. So, it will switch to the default mode. Wich is unfortunately for you to use TCP.
You must change that line to look like that
var aAxis = createAxis({coordinate:0, table:true, axis:[1, 0, 0], range:[-90.00, 90.00], tcp:false});
var cAxis = createAxis({coordinate:2, table:true, axis:[0, 0, 1], range:[-360.00, 360.00], cyclic:false, tcp:false});
Regards
______________________________________________________________
If my post answers your question, please click the "Accept Solution" button. This helps everyone find answers more quickly!