Data transfer within the PLC
821
Part III FP Instructions
For Relay T/C Register Constant
s1_Start,
s2_End
WX WY WR WL SV EV DT LD FL -
d_Start - WY WR WL SV EV DT LD FL -
Operands
Example
In this example, the same POU header is used for all programming languages. For an example
using IL (instruction list), please refer to the online help.
POU header
All input and output variables used for programming this function have been declared in the POU
header.
Body
When the variable start changes from FALSE to TRUE, the function is carried out. It moves the
data block starting at the 16-bit area specified by s1 and ending at the 16-bit area specified by s2
to the 16-bit area specified by d.
LD
ST
When programming with structured text, enter the following:
IF start THEN
F10_BKMV( s1_Start:= source_Array[1],
s2_End:= source_Array[3],
d_Start=> target_Array[0]);
END_IF;