11 - 290 11 - 290
MELSEC-Q
11 INSTRUCTIONS AND FUNCTIONS
Use the data read from the PLC CPU by using the PCRD instruction for the sequence program
to be written. If other data is written, the PLC CPU cannot operate normally.
Program Example
(1) Program example for a format 1 control table
100 'A program example that writes the sequence program stored in a memory card to the PLC CPU
110 '(Capacity of the main sequence program: 8 k steps)
120 DIM TBL%(10),A%(100)
:
'Defines arrays
130 OPEN "0:PROG8.DAT" FOR INPUT AS #1
:
'Opens the file
140 FOR J=&H0 TO, &H1FC0 STEP 64
150 FOR I=0 TO 63
160 INPUT #1,A%(I)
:
'Reads from the file
170 NEXT I
180 TBL%(0)=255
:
'Specifies the station number to
communicate with to the local station
190 TBL%(1)=8
:
'Specifies to write the sequence program
200 TBL%(2)=1
:
'Specifies to write to the main sequence
program area
210 TBL%(3)=J
:
'Specifies the head step number to be
written
220 TBL%(4)=64
:
'Specifies the number of steps to be written
230 PCWT TBL%( ),A%( )
:
'Executes the write operation
240 NEXT J
250 CLOSE
:
'Closes the file
260 END
Содержание A1SD51S
Страница 183: ...11 13 11 13 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS RUN Before swap A 0 H924 A 1 H1159 After swap A 0 H1159 A 1 H924 OK...
Страница 331: ...11 161 11 161 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the CON ON OFF STOP and ZOPEN functions and Section 7 4...
Страница 557: ...11 387 11 387 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the CHR SPACE and SPC functions...
Страница 629: ...11 459 11 459 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the ZOPEN ZSEND and ZCNTL instructions and Section 7 3 4...
Страница 645: ...11 475 11 475 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the ZEVENT ZSIGNAL and DEF ZEVENT instructions...