WORD Assignments to BOOL Arrays
Original instructions
Manual Correction
Assignments of HEX WORDS to complete Bool arrays sent to Word registers are possible in Concept, but not in Control Expert. A manual correction must be done, for example:
('AR2_BOOL[0]:BOOL'<->'16#0100:DINT')

('AR2_BYTE[0]:BYTE'<->'16#55AA:DINT')

('AR2_BYTE[0]:BYTE'<->'16#AA55:DINT')
Solution
The ST code must be changed to single-component assignments.
The hex word must be split into single bits:
AR2_BOOL[17] := true;