Version 2.1 by Jim on 2022/06/14 14:48

Show last authors
1 = **1.** **Functions that 3V has but 5V does not** =
2
3 == **1.1 BD board** ==
4
5 LX5V does not support RS485 BD
6
7 LX5V does not support Ethernet BD
8
9 LX5V does not support CAN BD
10
11 == **1.2 Analog BD board expansion address** ==
12
13 Provides the function of analog board BD to modify parameters such as filtering. For specific functions, please refer to the BD board manual.
14
15 == **1.3 PLDID** ==
16
17 Program label function, when the label of the program corresponds to the label of the PLC, the ladder diagram can be uploaded and downloaded. Clearing the memory does not clear this tag either. It is mainly to limit the ladder diagram used by PLC.
18
19 == **1.4 Instructions** ==
20
21 (1) NOP instruction (null instruction)
22
23 (2) TRAN instruction (SFC transfer begins)
24
25 (3) FEND instruction (main program ends)
26
27 (4) IRET instruction (interrupt return)
28
29 (5) SRET instruction (subroutine return)
30
31 (6) SPD instruction
32
33 (7) DRVI2 instruction
34
35 (8) PTO/DPTO instruction(envelope pulse command)
36
37 (9) DABS instruction
38
39 (10) RSLIST instruction
40
41 (11) CPAVL instruction(communication BD configuration)
42
43 == **1.5 Unsupported special register function (M8000, D8000)** ==
44
45 === **1.5.1 Clock related** ===
46
47 Clock function not supported by LX5V
48
49 (% class="table-bordered" %)
50 |M8014|Oscillation clock with 1 minute clock period
51 |M8015|Clock stop and preset
52 |M8016|Stop time to read the display
53 |M8017|±30 seconds correction
54 |M8018|install and examine
55 |M8019|Real-time clock (RTC) error
56
57 === **1.5.2 High-speed counter ring counting function** ===
58
59 (% class="table-bordered" %)
60 |M8099|High-speed ring counter count start
61 |M8099|Ring count configuration
62
63 === **1.5.3 X0~~X5 pulse capture function** ===
64
65 (% class="table-bordered" %)
66 |M8170|X000 pulse capture
67 |M8171|X001 pulse capture
68 |M8172|X002 pulse capture
69 |M8173|X003 pulse capture
70 |M8174|X004 pulse capture
71 |M8175|X005 pulse capture
72
73 = **2. 5V function under development** =
74
75 N:N communication protocol
76
77 Interpolation instructions (G90G01, G90G02, G90G03, G91G01, G91G02, G91G03)
78
79 = **3. 3V and 5V incompatible functions (These can be automatically converted in the future)** =
80
81 == **3.1 General register** ==
82
83 (% class="table-bordered" %)
84 |**register**|**LX3V**|**LX5V**|**Remarks**
85 |Input|X0~~X377|X0~~X1777|
86 |Output|Y0~~Y377|Y0~~Y1777|
87 |Auxiliary|M0~~M3071|M0~~M7999|
88 |Status|S0~~S999|S0~~S4095|
89 |Timer|T0~~T255|T0~~T511|
90 |counter|C0~~C199|C0~~C255|
91 |Double word counter|C200~~C219|LC0~~LC99|Non-power-down save
92 |Double word counter|C220~~C234|LC100~~LC255|Power-down save
93 |High-speed counter|C235~~C255|HSC0~~HSC7|Check the high-speed input function
94 |Data Register|D0~~D7999|D0~~D7999 (R0~~R29999)|
95 |Pointer P|P0~~P127|P0~~P4095|
96 |Instruction I|I0~~I8xx|None|
97 |constant|K, H, E|K, H, E|
98
99 **Incompatible part**
100
101 ~1. T250~~T255 of LX3V are 100ms timers, while T250~~T255 of LX5V are 10ms timer.
102
103 2. C200~~C234 of LX3V are double word counters, LX5V is changed to single word, and LC0~~LC255 are added as double word counters.
104
105 3. LX3V's high-speed counters C235~~C255 are no longer used. In LX5V, the high-speed counter type is configured through the configuration table, and HSC0~~HSC7 is selected as the high-speed input counter according to the channel. See the high-speed input function for details.
106
107 4. CJ instruction uses pointer P63 to jump directly to END instruction in 3V, but P63 of LX5V is a normal label.
108
109 5. Pointer I is cancelled in LX5V, please check the programming mode for details.
110
111 == **3.2 Programming method** ==
112
113 === **3.2.1 Subroutine (For details, please refer to LX5V Programming Manual Chapter 1.4-Subroutine Branch)** ===
114
115 **Use of LX3V subroutines**
116 [[image:1652684087594-147.png]]
117
118 (% id="cke_bm_21076S" style="display:none" %)** **(%%)Use of LX5V subroutines
119
120 Add new subroutine: project management -> subroutine -> right click -> new
121
122 [[image:1652684473552-267.png]]
123
124 Subroutine can be directly used in the main program by calling its name.
125
126 [[image:1652684829740-769.png]]
127
128 === **3.2.2 Interrupt (For details, please refer to LX5V Programming Manual Chapter 1.4-Branch)** ===
129
130 **LX3V interrupt**
131
132 The interrupt program is under FEND and returns with IRET. The meaning of the specific interrupt is distinguished by the pointer I number.(Refer to EI/DI instruction in 3V)
133
134 The 1ms interrupt program of LX3V is as follows:
135
136 [[image:1652685542135-419.png]]
137
138 **LX5V interrupt**
139
140 Add new interrupt: Project Management -> program->Interrupt -> New
141
142 [[image:1652685665041-340.png]]
143
144 Interrupt configuration: select interrupt mode
145
146 [[image:1652685809566-630.png]]
147
148 === **3.2.3 Instructions** ===
149
150 **OUT command**
151
152 Double word counter[[image:file:///C:\Users\ANNAXU~~1\AppData\Local\Temp\ksohtml14432\wps28.png]]
153
154 LX3V: OUT C200 KXXX
155
156 LX5V: OUT LC0 KXXX
157
158 The C200~~C219 of LX3V are converted to LC0~~LC19 of LX5V (Un-power-down save).
159
160 The OUT C220~~C234 of LX3V is converted to OUT LC100~~LC114 of LX5V (Power-down save).
161
162 **CALL instruction**
163
164 LX3V: OUT C200 PXXX
165
166 LX5V: OUT LC0 subroutine name(See LX5V programming manual for details)
167
168 **CJ instruction**
169
170 LX5V does not support CJ P63 to jump directly to the END instruction.
171
172 LX5V does not support CJ instructions to jump into subroutines and interrupts.
173
174 **DI, EI instructions**
175
176 There is no need to connect the contact before the DI instruction of LX3V.
177
178 [[image:1652687225743-267.png]]
179
180 The contact must be connected before the DI instruction of LX5V.
181
182 [[image:1652687930224-987.png]]
183
184 **DHSCS instruction**
185
186 LX3V: calls interrupt using IXX
187
188 [[image:1652688357931-327.png]]
189
190 LX5V: calls interrupts by using the interrupt program name
191
192 [[image:1652688536392-339.png]]
193
194 **CPAVL instruction**
195
196 CPVAL is used to configure communication BD boards in 3V. LX5V does not currently support it.
197
198 CPVAL is used to switch electronic cam table in LX3V. LX5V uses ECAMCUT instruction(Refer to Chapter 9.1 of LX5V Programming Manual for details).
199
200 **TRH instruction**
201
202 LX3V: input parameters are floating
203
204 LX5V: input parameters are integer
205
206 **ASC instruction**
207
208 LX3V: input strings don't need double quotes
209
210 [[image:1652689598958-799.png]]
211
212 LX5V: input strings need double quotes
213
214 [[image:1652689626279-240.png]]
215
216 = **4. High-speed input function** =
217
218 == **4.1 Use on LX3V** ==
219
220 Find the high-speed input counter you need to use according to the following table:
221
222 [[image:1652689864332-317.png]]
223
224 Through special registers, configure the functions such as frequency multiplication and counting direction.
225
226 Use the OUT instruction to start the high-speed counter counting.
227
228 [[image:1652690126303-800.png]]
229
230 == **4.2 Use on LX5V** ==
231
232 According to channel, select the HSC register to use:
233
234 [[image:1652692297496-626.png]]
235
236 Configure the high-speed counter mode through the host computer configuration table:
237
238 [[image:1652692281566-353.png]]
239
240 Use the OUT instruction to start the high-speed counter counting.
241
242 [[image:1652692388207-617.png]]
243
244 == **4.3 Difference between high-speed counters on LX5V and LX3V** ==
245
246 LX3V updates the count value when the OUT instruction is executed, which is affected by the scan cycle.
247
248
249 LX5V is updated in the 100us interrupt, not affected by the scan cycle, and provides the REF instruction to refresh the current high-speed counter value immediately.
250
251 LX5V single-phase high-speed counter supports filtering function, configurable 0~~17us.
252
253 LX5V high-speed input counter will update the input frequency in the special soft element (SD) every 100us.
254
255 = **5. High-speed output function** =
256
257 **High-speed pulse commands are the same in the use of commands.**
258
259 (% class="table-bordered" %)
260 | |LX3V|LX5V
261 |DRVI|√|√
262 |DRVA|√|√
263 |PLSR|√|√
264 |PLSV|√|√
265 |PLSY|√|√
266 |DVIT|√|√
267 |ZRN|√|√
268 |PLSR2|√|√
269
270 **High-speed pulse command difference.**
271
272 PLSR2 instruction parameter address is different
273
274 **Special device change**
275
276 ~1. LX3V has multiple high-speed pulse devices that are shared by multiple axes, while LX5V is separated. Therefore, when converting the program, this type of special address needs to be assigned to all axes together. For example, D8148 of 3V is the acceleration and deceleration time of 4 axes Y0~~Y3, then in LX5V, Y0 acceleration time SD902, deceleration time SD962 and other axis acceleration and deceleration time need to be set to the value of D8148.
277
278 2. Comparison of bit devices
279
280 (% class="table-bordered" %)
281 |**3V**|**Description**|**5V**|**Description**
282 |M8145|Y000 pulse output stop|SM898|Y000 pulse output stop
283 |M8146|Y001 Pulse output stop|SM958|Y001 Pulse output stop
284 |M8152|Y002 pulse output stop|SM1018|Y002 pulse output stop
285 |M8153|Y003 Pulse output stop|SM1078|Y003 Pulse output stop
286 |M8147|Y000 monitoring during pulse output|SM880|Y000 monitoring during pulse output
287 |M8148|Y001 Monitoring during pulse output|SM940|Y001 Monitoring during pulse output
288 |M8149|Y002 Monitoring during pulse output|SM1000|Y002 Monitoring during pulse output
289 |M8150|Y003 Monitoring during pulse output|SM1060|Y003 Monitoring during pulse output
290 |(% rowspan="4" %)(((
291
292
293
294 M8029
295 )))|(% rowspan="4" %)(((
296
297
298 Some instructions (PLSR, etc.) instruction execution completed (Y0-Y3)
299 )))|SM882|Y0 pulse sending completed
300 |SM942|Y1 pulse sending completed
301 |SM1002|Y2 pulse transmission completed
302 |SM1062|Y3 pulse transmission completed
303 |M8134|Y0's thousandth control bit|SM897|Y0's thousandth control bit
304 |M8135|(((
305 The acceleration and deceleration time between each axis of Y1's thousandth control position positioning command is separated
306 )))|(((
307 SM957
308 )))|Y1 Perimeter control bit
309 |M8136|Y2 Perimeter control bit|SM1017|Y2 Perimeter control bit
310 |M8137|Y3 Perimeter control bit|SM1077|Y3 Perimeter control bit
311
312 3. Comparison of word devices
313
314 (% class="table-bordered" %)
315 |**3V**|**Description**|**5V**|**Description**
316 |D8104|Y0 acceleration and deceleration time (open M8135)|SD902/SD962|Y0 acceleration/deceleration time
317 |D8105|Y1 acceleration and deceleration time (open M8135)|SD1022/SD1082|Y1 acceleration/deceleration time
318 |D8106|Y2 acceleration and deceleration time (open M8135)|SD1142/SD1202|Y2 acceleration/deceleration time
319 |D8107|Y3 acceleration and deceleration time (open M8135)|SD1262/SD1322|Y3 acceleration/deceleration time
320 |D8140|Y000 Current position low|SD880|Y000 Current position low
321 |D8141|Y000 current position high|SD881|Y000 current position high
322 |D8142|Y001 Current position low|SD940|Y001 Current position low
323 |D8143|Y001 Current position high|SD941|Y001 Current position high
324 |D8150|Y002 current position low|SD1000|Y002 current position low
325 |D8151|Y002 current position high|SD1001|Y002 current position high
326 |D8152|Y003 Current position low|SD1060|Y003 Current position low
327 |D8153|Y003 Current position high|SD1061|Y003 Current position high
328 |(% rowspan="4" %)(((
329
330
331
332 D8145
333 )))|(% rowspan="4" %)(((
334
335
336
337 Y0-Y3 Paranoid speed (single word)
338 )))|SD900, SD901|Y0 Paranoid speed (double word)
339 |SD960, SD961|Y1 Paranoid speed (double word)
340 |SD1020, SD1021|Y2 Paranoid speed (double word)
341 |SD1080, SD1081|Y3 Paranoid speed (double word)
342 |(% rowspan="8" %)(((
343
344
345
346
347
348 D8146,D8147
349 )))|(% rowspan="8" %)(((
350
351
352
353
354
355 Y0-Y3 maximum frequency (double word)
356 )))|SD898|Y0 Maximum speed low
357 |SD899|Y0 Highest speed
358 |SD958|Y1 Maximum speed low
359 |SD959|Y1 Highest speed
360 |SD1018|Y2 Maximum speed low
361 |SD1019|Y2 Highest speed
362 |SD1078|Y3 Maximum speed low
363 |SD1079|Y3 Highest speed
364 |(% rowspan="4" %)(((
365
366
367
368 D8148
369 )))|(% rowspan="4" %)(((
370
371
372 4-axis acceleration/deceleration time (when M8135 is not turned on)
373 )))|SD902/SD962|Y0 acceleration/deceleration time
374 |SD1022/SD1082|Y1 acceleration/deceleration time
375 |SD1142/SD1202|Y2 acceleration/deceleration time
376 |SD1262/SD1322|Y3 acceleration/deceleration time
377
378 4. New features of high-speed pulse instructions on LX5V
379
380 ①Support lower frequency output
381
382 3V: 10hz-200KHZ 5V: 1HZ-200K
383
384 ②Support a larger range of acceleration/deceleration time, separate acceleration/deceleration
385
386 3V: 50ms-5000ms 5V: 15ms-32000ms
387
388 ③Support to directly set the start frequency
389
390 ④Support to modify the pulse frequency during operation
391
392 ⑤Support to modify the pulse position (number) during operation
393
394 ⑥Support direction delay (first output the direction and then delay and then output the pulse)
395
396 ⑦Support positive and negative limit
397
398 ⑧Provide different stopping methods (deceleration to stop or immediate stop)
399
400 ⑨Support direction reversal (can set the forward direction to low level)
401
402 = **6. Communication function** =
403
404 **~1. Communication parameter configuration**
405
406 There is a difference in the serial port parameter settings, mainly in the start bit of STX and ETX of the custom protocol. 3V is B8 B9 and 5V is B10 B11. The main reason is that 5V increases the baud rate of 921600.
407
408 **2. Differences in protocol settings**
409
410 3V settings:
411
412 (% class="table-bordered" %)
413 |**protocol**|**D8126 value setting**
414 |RS instruction (custom protocol)|00H
415 |HMI monitoring protocol (PLC protocol)|01H
416 |MODBUS-RTU slave|02H
417 |MODBUS-ASCII slave|03H
418 |N:N network communication protocol slave|04H
419 |RS instruction (custom protocol)|10H
420 |MODBUS-RTU master station|20H
421 |MODBUS-ASCII master station|30H
422 |N:N network communication protocol master station|40H
423
424 5V settings:
425
426 (% class="table-bordered" %)
427 |**SD2592 value setting**|**Protocol**
428 |0 H|Wecon Modbus slave
429 |2 H|ModbusRTU slave
430 |3 H|ModbusASCII slave
431 |10 H|User-defined protocol
432 |20 H|ModbusRTU master station
433 |30 H|(((
434 ModbusASCII master
435
436
437 )))
438
439 Although 5V does not have 3V HMI monitoring protocol. But the current HMI has matched the 5V Wecon Modbus slave protocol. The Wecon Modbus slave protocol is modified based on ModbusRTU slave,  Compatible with all ModbusRTU slave content.
440
441 **3. Differences in special devices**
442
443 3V only supports setting the serial port parameters in the first cycle of the scan cycle. The mode of the first cycle setting can be switched only by modifying the corresponding soft element setting according to the special soft element comparison table.
444
445 **4. Slave address difference**
446
447 5V address:
448
449 (% class="table-bordered" %)
450 |Port|Occupy|(% style="width:240px" %)Address range|(% style="width:221px" %)(((
451 10 hex Register
452 )))|(((
453 Total reserved land Address size
454 )))
455 |**Word address**| |(% style="width:240px" %) |(% style="width:221px" %) |
456 |T0~~T511|512 WORD|(% style="width:240px" %)0x0000-0x01ff|(% style="width:221px" %)0|1536
457 |C0~~C255|256 WORD|(% style="width:240px" %)0x0600-0x06ff|(% style="width:221px" %)1536|1024
458 |LC0~~LC255|512 WORD|(% style="width:240px" %)0x0A00-0x0BFF|(% style="width:221px" %)2560|1024
459 |HSC0~~HSC15|128 WORD|(% style="width:240px" %)0x0E00-0x0E1F|(% style="width:221px" %)3584|512
460 |D0~~D7999|8000 WORD|(% style="width:240px" %)0x1000-0x2F3F|(% style="width:221px" %)4096|16384
461 |SD0~~SD4095|4096 WORD|(% style="width:240px" %)0x5000-0x5FFF|(% style="width:221px" %)20480|12288
462 |R0~~R30000|30000 WORD|(% style="width:240px" %)0x8000-0xF52F|(% style="width:221px" %)32768|30000
463 |**Bit address**| |(% style="width:240px" %) |(% style="width:221px" %) |
464 |T0~~T511|512 bit|(% style="width:240px" %)0x0000-0x01ff|(% style="width:221px" %) |1536
465 |C0~~C255|256 bit|(% style="width:240px" %)0x0600-0x06ff|(% style="width:221px" %)1536|1024
466 |LC0~~LC255|256 bit|(% style="width:240px" %)0x0A00-0x0AFF|(% style="width:221px" %)2560|1024
467 |HSC0~~HSC15|64 bit|(% style="width:240px" %)0x0E00-0x0E0F|(% style="width:221px" %)3584|512
468 |M0~~M8000|8192bit|(% style="width:240px" %)0x1000-0x2F3F|(% style="width:221px" %)4096|16384
469 |SM0~~SM4095|4096bit|(% style="width:240px" %)0x5000-0x5FFF|(% style="width:221px" %)20480|12288
470 |Reserved| |(% style="width:240px" %)0x8000-0xBFFF|(% style="width:221px" %) |16383
471 |S0~~S4095|4096bit|(% style="width:240px" %)0xC000-0xCFFF|(% style="width:221px" %)49152|8192
472 |X0~~X1023|1024bit|(% style="width:240px" %)0xE000-0xE3FF|(% style="width:221px" %)57344|4096
473 |Y0~~Y1023|1024bit|(% style="width:240px" %)0xF000-0xF3FF|(% style="width:221px" %)61440|4096
474
475 **5. LX5V added functions**
476
477 Modify serial communication parameters during RUN. For example, use PROTOCOL instruction to modify the protocol during run. The corresponding instruction description can also find the method of setting without instruction. For details, please refer to the relevant instructions of the instruction. Commands are PROTOCOL (set serial port protocol), PROTPARA (set serial port parameters), STATION (set station number)
478
479
480