I looked up
RTA. They have several gateways. What model is yours? The gateway translates some sort of protocol on Ethernet to what looks like DH+ on the other side. I need to know which protocol is on each end. Is this like a DHRIO module in a ControlLogix? Or does it have mapped data files like a Control/CompactLogix can do but still use the CIP protocol? There are many possibilities:
- A Ethernet/IP to DH+ converter. This is what a DHRIO module does.
- A Logix-class PLC that supports mapping tags to PCCC-style data files.
- A PLC/5e that supports the Ethernet/IP protocol directly. PLC5e with updated firmware can do this.
It it is 1, then you can use DH+ bridging with the PLC5 PLC type. Example:
tag_rw2 --type=uint8 '--tag=protocol=ab_eip&gateway=10.206.1.40&path=1,2,A:27:1&cpu=plc5&elem_count=1&elem_size=2&name=B3:0/10' --debug=4
If it is 2 you can use the logixpccc PLC type.
(looking for an example)
If it is 3, you can use the plc5 PLC type.
tag_rw2 --type=uint8 '--tag=protocol=ab-eip&gateway=10.206.1.38&plc=plc5&elem_count=1&elem_size=2&name=B3:0/10' --debug=4
Best,
Kyle