To send string from ML1400 to Control/CompactLogix. It's the same process, copy string to INT file and swap byte.
N30 file do not have to be defined on the ML1400 side
On the CompactLogix side, file N30 need to be mapped in:
Another approach: since ML1400 already swapped the needed data bytes into N11 file, On the CompactLogix use SLCTypeRead to read data in.
This approach is simpler, but there is a draw back, since data change from ML1400 will be not be seen as fast, until the Message is triggerred to read.
NEQ is there so that you can see the string data.
=====================================
Another approach: to use CIP to read data directly from ML1400. IN ML1400, have N9 contain the date 2022-04-30 HH MM SS.
The Msg_Read_Request is format to read PCCC command from file N9 with 12 bytes:
--------------------------------------------------------------------
Perhaps, the last approach is to use socket client - server but I wont go there today.