11 - 284 11 - 284
MELSEC-Q
11 INSTRUCTIONS AND FUNCTIONS
• Assign values to %(2) and %(3) ( %(5) and %(6) in case of a format 2 control
table) in the following manner.
D!
H!
L!
H$
L$
to
• • • •
• • • •
Device number expressed in sequential address
Used as work areas.
100 H!=INT(D!/65536!)
110 L!=D!-H! 65536!
120 H$=RIGHT$(”0000”+HEX$(H!))
130 L$=RIGHT$(”0000”+HEX$(L!))
In case of a format 2control table
140 %(2)=VAL(”&H”+L$)
150 %(3)=VAL(”&H”+H$)
to
• • • •
• • • •
%(5)=VAL(”&H”+L$)
%(6)=VAL(”&H”+H$)
Program Example
(1) Program example for a format 1 control table
100 ' A program example that writes data to extension file registers by specifying sequential addresses
110 DIM TBL%(10),A%(20)
:
'Defines arrays
120 TBL%(0)=255
:
Specifies the station number to
communicate with to the local station
130 TBL%(1)=7
:
'Specifies to write data to extension file
registers by specifying sequential
addresses
140 D!=10
:
'Specifies the sequential addresses for
writing
150 H!=INT(D!/65536!)
160 L!=D!-H!*65536!
170 H$=RIGHT$("0000"+HEX$(H!),4)
:
'Higher byte of the sequential address
180 L$=RIGHT$("0000"+HEX$(L!),4)
:
'Lower byte of the sequential address
190 TBL%(2)=VAL("&H"+L$)
:
'Stores the lower byte in the control table
200 TBL%(3)=VAL("&H"+H$)
:
'Stores the higher byte in the control table
210 TBL%(4)=3
:
'Specifies the number of points to be
written
220 A%(0)=0123
:
'Specifies the data to be written
230 A%(1)=4567
240 A%(2)=8901
250 PCWT TBL%( ),A%( )
:
'Executes the write operation
260 END