358
Short jumper
XD, XL series PLC no need to short the jumper when updating.
Note:
Do not cut the power of PLC when it is updating. If it show the error “send data failed,
ID not match…) please contact us for help.
The PLC program will be deleted after updating.
Q4: The bit soft component function.
A4:
Continuous 16 coils consist of a word, E.g: DM0 a word consist of 16 coils (bits) M0~M15 is
as below:
DM0:
M15 M14 M13 M12 M11 M10 M9 M8 M7 M6 M5 M4 M3 M2 M1 M0
We can use bit in the register directly.
Example 1:
M100
MOV K3 DM0
The other mode is bit operation of fixed register. E.g: D0.0 is the first bit of 16 bits in register
D0. Similarly, D0.1 is the second bit and so on, as shown below:
D0:
D0.15 D0.14 D0.13 D0.12 D0.11 D0.10 D0.9 D0.8 D0.7 D0.6 D0.5 D0.4 D0.3 D0.2 D0.1 D0.0
Similarly, we can use bit in register D0.
When M100 is from OFF to ON,
M0 M1 are ON, M2—M15 are OFF