The datasheet lists 3 options that you might work:
Modbus/TCP
Omron FINS
EtherNet/IP (likely only by 3rd party module from @pturmel)
Each of these protocols has their own addressable memory areas and conventions and I couldn't tell you how completely they map to the format you're asking about.
Already using this. i am using Ethernet IP as Rockwell protocl. (slc500) it works great, they use indirect addressing so i can build my own map for comm. but with upcoming systems i will run out of space for the Hmi. i have 1024 word i can allocate and acess thru this indirect memory.
plc comm already uses almost half of it. and settings PID and axis setup stuff requires more space than plc com. it is not refreshed often but needed to be accessible when tuning and troubleshooting.
So i wondered if we could use native comm they call IEC61131. to fully acces the controller.
I've used older versions of these before, and they emulate a SLC-500 pretty well (with the legacy "CSP" protocol). From the user manual:
The CSP protocol is also known as "DF1 over Ethernet". It uses the same addressing format and function code types as the serial DF1 protocol. This common component is called PCCC.
CSP can be used to read and write any registers in the RMC. In the Allen-Bradley PLCs, MSG (message) blocks are used to read and write any registers in the RMC using CSP. See Using Allen-Bradley Controllers via Message Block for details.
There should be a DF1/CSP address for your IEC address.
i need to map the register i want to acces in the indirect data map from 0 to 1023.
plc use 10 write, 10 read (i maybe ca reduce it to 8)
hmi uses about 16 (we want a bit more)
that makes 36 words per axis. so 1400 word total.
plus some status for the controller itself that are not accounted here.
I see that the CSP access method always targets "Float" files in the PLC, even when the data is DINT. I don't think there's any way to tell IA's driver to re-interpret those as integers. A derived tag, perhaps.
Hmm. The register map object reachable via EtherNet/IP class 3 messaging looks like it can access the entire controller. However, my class 3 client driver in my EtherNet/IP suite doesn't support custom services. They can only be supported with scripting via the Scanner option. (The scanner option can also do the I/O connection to the RMC.)
.. provides fairly generic I/O and class 3 messaging features for common connection types. In particular, generic EtherNet/IP devices that support ordinary class/instance/attribute access are fairly easily configured. As are I/O connections described in EDS files.
The custom services as described in §6.7.10.6.8 in the RMC200 user manual are not directly supported. But could be scripted with my module. It would not be trivial.
EtherNet/IP explicit messaging with Class 0xC0, services 0x4B, 0x4C, 0x4D, and 0x4E are not shown in either table. Experiments would be needed. (Or call and ask Delta to clarify.)
It might be least-cost to use DMCP described in §6.7.4 with a java socket and long-lived threads (but there are memory leak risks associated with managing long-lived state).