Modbus Addressing with parameter lists

Hi all!
I’m connected to a modbus device and I have to set addresses.
I already setted some variables as “machine production” (a holding register int16),
a “machine status”(discrete input) ecc…
Now I have a list of motivations of machine stops. This list is:

%MW203— INT—“stop and messages from 0 to 15”
%MW203.0—BOOL—“STOP MOTIVATION 0”
%MW203.1—BOOL—“STOP MOTIVATION 1”
%MW203.2—BOOL—“STOP MOTIVATION 2”

%MW203.15—BOOL—“STOP MOTIVATION 16”

%MW204—INT—“stop and messages from 16 to 31”
%MW204.0—BOOL—“STOP MOTIVATION 16”
%MW204.1—BOOL—“STOP MOTIVATION 17”
%MW204.2—BOOL—“STOP MOTIVATION 18”

%MW204.15—BOOL—“STOP MOTIVATION 31”

How can I create this lists in my configurator of addresses?
Do I have to set my tags as single boolean?

It’s my first time with Ignition and Modbus (we always work with rockwell devices)
so every information could be useful for me.
Thank you for your help.

Have a nice day

Your addresses look more like GE than Modbus, where you can access coil memory as words. If so, it really is coil memory, and you’ll need to use the “C” prefix with the bit offset, not the word and bit combination. %MW203.0 ==> %M3248 ==> C3248.

https://docs.inductiveautomation.com/display/DOC79/Modbus+Addressing

( That might be C3233 instead of 3248 – I don’t clearly remember the 0/1 offsets for that. )