SLC 5/05 networking

Join Date
Dec 2013
Location
Arkansas
Posts
6
I have a SLC 5/05 that I am wanting to access some data in a ControlLogix PLC elsewhere on the network at our plant. I thought I knew how to do this turns out I don't. Is this even a possible functionality for the SLC family? The data is just bit logic nothing complex. Any suggestions? If you are aware of documentation that directs this I am more than happy to read about the steps. Thanks
 
Yes, messaging between a SLC and Controllogix is completely possible. IMO, it is easier to do all the messaging in the Controllogix processor, but it can also be done in the SLC. If you are going to do the messaging in the SLC, you have the set up the "Map PLC/SLC Messages" under the Logic tab in Studio/Logix5000. This maps tags to SLC-compatible file numbers, such as the tag "Float[0]" to "F8:0".

When dealing with messaging, be sure that the data in both processors is the same type. Logix5000 default data type is a DINT, and if you try to message it to an N file in the SLC, you will not get the results you desire.
 
Last edited:
To set up the message From ControlLogix to the SLC:

Create a MSG block and Tag in your Ladder Program.
Select "SLC type Read" "SLC type Write" for Message Type.
Fill in the data table address and tags to read or write.
On the next type, the message path should be: 1,<slot of enbt>,2,<IP of SLC>

If you are trying to set up messaging from the SLC to the controllogix, check out TechConnect article 32228 on the Rockwell knowledgebase if you have a TechConnect contract.
 
And to go further on the why....

The newer ControlLogix undertands the older SLC style data tables. But, the older SLC has no idea how to handle tag names in the CLX.

So if you do all the messaging in the SLC you have to set up Mapping in the CLX. You essentially create an array or use an existing one and you use Mapping to assign it a data table file number. This allows it to appear to the SLC just like a data file in any another SLC.

You must also live within the limits of the SLC's capability. SLCs do not know how to handle a DINT. Also SLCs are limited to 256 elements in a file.

OG
 

Similar Topics

Howdy. So I am trying to create a small network of just 2 SLC 5/03's and my programming laptop. The SLCs are connected via RS232 to some...
Replies
3
Views
1,878
I am looking into networking some Allen Bradley SLC 504 processors using DH485 (Blue Hoose)cable. At each end of the connection I will have two...
Replies
23
Views
10,100
I have a slc5/05 and a main computer station that commuicates with ethernet. In another room, I have 3 slc5/01 that are independent of each other...
Replies
17
Views
3,618
Hello, I am an EE student currently working on my senior design project that involves using 2 plcs networked to add more I/O. Right now we are...
Replies
3
Views
2,153
everyone i have a new slc 5/05 processor to configure . i have the choice of using bootp or calling my network admin to get settings for a...
Replies
2
Views
2,013
Back
Top Bottom