Sign in to follow this  
Followers 0
KB

XFER and BSET Instruction In Sysmac Studio

2 posts in this topic

I am working on re writing a PLC program from CX Programmer to Sysmac Studion and i have run into a few issues of not being able to find the same instructions. Does anyone know of an instruction in Sysmac Studio that is the same as a XFER and a BSET in CX Programmer.

Share this post


Link to post
Share on other sites

Move can be used to move from one array to another (if they are both the same size).  This would be like XFER.  AryMove is very similar to the XFER as it has a size setting as well.  The Clear function can be used to clear all values of an array or structure to 0 / false (or its initial value if specified).  If you want to set an entire array to a specific value, use the SetBlock function.

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0