summaryrefslogtreecommitdiff
path: root/decoder/test/modbus/wizmodbus_bus.output
blob: b93784f07c7725b699c894d9199f3fc0d21ba356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
113934-114768 modbus: sc-server-id: "Slave ID: 1"
113934-114768 modbus: cs-server-id: "Slave ID: 1"
114974-115808 modbus: sc-function: "Function 3: Read Holding Registers"
114974-115808 modbus: cs-function: "Function 3: Read Holding Registers"
116014-116848 modbus: sc-error: "Error: Odd byte count (3)"
116014-117888 modbus: cs-address: "Start at address 0x3E8 / 31001"
117054-118927 modbus: sc-data: "0xE800 / 59392"
118093-119967 modbus: cs-length: "Read 2 units of data"
120173-122046 modbus: cs-crc: "CRC correct"
122273-123107 modbus: sc-server-id: "Slave ID {} is invalid"
122273-123107 modbus: cs-server-id: "Broadcast message"
123107-123422 modbus: sc-error: "Message too short or not finished"
123107-123422 modbus: cs-error: "Message too short or not finished"
125190-126024 modbus: sc-server-id: "Slave ID: 1"
125190-126024 modbus: cs-server-id: "Slave ID: 1"
126232-127066 modbus: sc-function: "Function 3: Read Holding Registers"
126232-127066 modbus: cs-function: "Function 3: Read Holding Registers"
127273-128107 modbus: sc-length: "Byte count: 4"
127273-129149 modbus: cs-address: "Start at address 0x452 / 31107"
128315-130190 modbus: sc-data: "0x5266 / 21094"
129356-131232 modbus: cs-length: "Read 26199 units of data"
130398-132273 modbus: sc-data: "0x5707 / 22279"
131439-133315 modbus: cs-error: "CRC should be 143 117"
132481-134356 modbus: sc-crc: "CRC correct"
133522-134356 modbus: cs-error: "Unknown function"
134730-135564 modbus: sc-server-id: "Slave ID {} is invalid"
134730-135564 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
135564-135879 modbus: sc-error: "Message too short or not finished"
135564-135879 modbus: cs-error: "Message too short or not finished"
138569-139403 modbus: sc-server-id: "Slave ID: 1"
138569-139403 modbus: cs-server-id: "Slave ID: 1"
139609-140443 modbus: sc-function: "Function 3: Read Holding Registers"
139609-140443 modbus: cs-function: "Function 3: Read Holding Registers"
140648-141482 modbus: sc-error: "Error: Odd byte count (3)"
140648-142523 modbus: cs-address: "Start at address 0x3EA / 31003"
141689-143562 modbus: sc-data: "0xEA00 / 59904"
142728-144602 modbus: cs-length: "Read 2 units of data"
144808-146681 modbus: cs-crc: "CRC correct"
146907-147741 modbus: sc-server-id: "Slave ID {} is invalid"
146907-147741 modbus: cs-server-id: "Broadcast message"
147741-148056 modbus: sc-error: "Message too short or not finished"
147741-148056 modbus: cs-error: "Message too short or not finished"
150061-150895 modbus: sc-server-id: "Slave ID: 1"
150061-150895 modbus: cs-server-id: "Slave ID: 1"
151103-151937 modbus: sc-function: "Function 3: Read Holding Registers"
151103-151937 modbus: cs-function: "Function 3: Read Holding Registers"
152144-152978 modbus: sc-length: "Byte count: 4"
152144-154020 modbus: cs-address: "Start at address 0x4A4 / 31189"
153186-155061 modbus: sc-data: "0xA471 / 42097"
154227-156103 modbus: cs-length: "Read 28998 units of data"
155269-157144 modbus: sc-data: "0x462C / 17964"
156310-158185 modbus: cs-error: "CRC should be 160 187"
157351-159227 modbus: sc-crc: "CRC correct"
158393-159227 modbus: cs-error: "Unknown function"
159560-160394 modbus: sc-server-id: "Slave ID {} is invalid"
159560-160394 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
160394-160709 modbus: sc-error: "Message too short or not finished"
160394-160709 modbus: cs-error: "Message too short or not finished"
163439-164273 modbus: sc-server-id: "Slave ID: 1"
163439-164273 modbus: cs-server-id: "Slave ID: 1"
164479-165313 modbus: sc-function: "Function 3: Read Holding Registers"
164479-165313 modbus: cs-function: "Function 3: Read Holding Registers"
165519-166353 modbus: sc-error: "Error: Odd byte count (3)"
165519-167394 modbus: cs-address: "Start at address 0x3EC / 31005"
166560-168433 modbus: sc-data: "0xEC00 / 60416"
167599-169472 modbus: cs-length: "Read 2 units of data"
169679-171552 modbus: cs-crc: "CRC correct"
171778-172612 modbus: sc-server-id: "Slave ID {} is invalid"
171778-172612 modbus: cs-server-id: "Broadcast message"
172612-172927 modbus: sc-error: "Message too short or not finished"
172612-172927 modbus: cs-error: "Message too short or not finished"
174924-175758 modbus: sc-server-id: "Slave ID: 1"
174924-175758 modbus: cs-server-id: "Slave ID: 1"
175965-176799 modbus: sc-function: "Function 3: Read Holding Registers"
175965-176799 modbus: cs-function: "Function 3: Read Holding Registers"
177007-177841 modbus: sc-length: "Byte count: 4"
177007-178882 modbus: cs-address: "Start at address 0x420 / 31057"
178048-179924 modbus: sc-data: "0x2038 / 8248"
179090-180965 modbus: cs-length: "Read 14406 units of data"
180131-182007 modbus: sc-data: "0x46AD / 18093"
181173-183048 modbus: cs-error: "CRC should be 215 2"
182214-184090 modbus: sc-crc: "CRC correct"
183256-184090 modbus: cs-error: "Unknown function"
184419-185253 modbus: sc-server-id: "Slave ID {} is invalid"
184419-185253 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
185253-185568 modbus: sc-error: "Message too short or not finished"
185253-185568 modbus: cs-error: "Message too short or not finished"
188310-189144 modbus: sc-server-id: "Slave ID: 1"
188310-189144 modbus: cs-server-id: "Slave ID: 1"
189351-190185 modbus: sc-function: "Function 3: Read Holding Registers"
189351-190185 modbus: cs-function: "Function 3: Read Holding Registers"
190390-191224 modbus: sc-error: "Error: Odd byte count (3)"
190390-192265 modbus: cs-address: "Start at address 0x3EE / 31007"
191431-193304 modbus: sc-data: "0xEE00 / 60928"
192470-194343 modbus: cs-length: "Read 2 units of data"
194550-196424 modbus: cs-crc: "CRC correct"
196650-197484 modbus: sc-server-id: "Slave ID {} is invalid"
196650-197484 modbus: cs-server-id: "Broadcast message"
197484-197799 modbus: sc-error: "Message too short or not finished"
197484-197799 modbus: cs-error: "Message too short or not finished"
199804-200638 modbus: sc-server-id: "Slave ID: 1"
199804-200638 modbus: cs-server-id: "Slave ID: 1"
200846-201680 modbus: sc-function: "Function 3: Read Holding Registers"
200846-201680 modbus: cs-function: "Function 3: Read Holding Registers"
201887-202721 modbus: sc-length: "Byte count: 4"
201887-203763 modbus: cs-address: "Start at address 0x4F7 / 31272"
202929-204804 modbus: sc-data: "0xF71C / 63260"
203970-205846 modbus: cs-length: "Read 7239 units of data"
205012-206887 modbus: sc-data: "0x4701 / 18177"
206053-207929 modbus: cs-error: "CRC should be 189 250"
207095-208970 modbus: sc-crc: "CRC correct"
208136-208970 modbus: cs-error: "Unknown function"
209300-210134 modbus: sc-server-id: "Slave ID {} is invalid"
209300-210134 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
210134-210449 modbus: sc-error: "Message too short or not finished"
210134-210449 modbus: cs-error: "Message too short or not finished"
213179-214013 modbus: sc-server-id: "Slave ID: 1"
213179-214013 modbus: cs-server-id: "Slave ID: 1"
214219-215053 modbus: sc-function: "Function 3: Read Holding Registers"
214219-215053 modbus: cs-function: "Function 3: Read Holding Registers"
215259-216093 modbus: sc-error: "Error: Odd byte count (3)"
215259-217133 modbus: cs-address: "Start at address 0x3F0 / 31009"
216299-218173 modbus: sc-data: "0xF000 / 61440"
217339-219212 modbus: cs-length: "Read 2 units of data"
219419-221292 modbus: cs-crc: "CRC correct"
221519-222353 modbus: sc-server-id: "Slave ID {} is invalid"
221519-222353 modbus: cs-server-id: "Broadcast message"
222353-222668 modbus: sc-error: "Message too short or not finished"
222353-222668 modbus: cs-error: "Message too short or not finished"
224506-225340 modbus: sc-server-id: "Slave ID: 1"
224506-225340 modbus: cs-server-id: "Slave ID: 1"
225548-226382 modbus: sc-function: "Function 3: Read Holding Registers"
225548-226382 modbus: cs-function: "Function 3: Read Holding Registers"
226589-227423 modbus: sc-length: "Byte count: 4"
226589-228465 modbus: cs-address: "Start at address 0x45E / 31119"
227631-229506 modbus: sc-data: "0x5E1C / 24092"
228672-230548 modbus: cs-length: "Read 7239 units of data"
229714-231589 modbus: sc-data: "0x472D / 18221"
230755-232631 modbus: cs-error: "CRC should be 109 218"
231797-233672 modbus: sc-crc: "CRC correct"
232838-233672 modbus: cs-error: "Unknown function"
234002-234836 modbus: sc-server-id: "Slave ID {} is invalid"
234002-234836 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
234836-235151 modbus: sc-error: "Message too short or not finished"
234836-235151 modbus: cs-error: "Message too short or not finished"
237885-238719 modbus: sc-server-id: "Slave ID: 1"
237885-238719 modbus: cs-server-id: "Slave ID: 1"
238925-239759 modbus: sc-function: "Function 3: Read Holding Registers"
238925-239759 modbus: cs-function: "Function 3: Read Holding Registers"
239964-240798 modbus: sc-error: "Error: Odd byte count (3)"
239964-241839 modbus: cs-address: "Start at address 0x3F2 / 31011"
241005-242878 modbus: sc-data: "0xF200 / 61952"
242044-243918 modbus: cs-length: "Read 2 units of data"
244125-245999 modbus: cs-crc: "CRC correct"
246224-247058 modbus: sc-server-id: "Slave ID {} is invalid"
246224-247058 modbus: cs-server-id: "Broadcast message"
247058-247373 modbus: sc-error: "Message too short or not finished"
247058-247373 modbus: cs-error: "Message too short or not finished"
249383-250217 modbus: sc-server-id: "Slave ID: 1"
249383-250217 modbus: cs-server-id: "Slave ID: 1"
250424-251258 modbus: sc-function: "Function 3: Read Holding Registers"
250424-251258 modbus: cs-function: "Function 3: Read Holding Registers"
251466-252300 modbus: sc-length: "Byte count: 4"
251466-253341 modbus: cs-address: "Start at address 0x4A4 / 31189"
252507-254383 modbus: sc-data: "0xA4E1 / 42209"
253549-255424 modbus: cs-length: "Read 57670 units of data"
254590-256466 modbus: sc-data: "0x462C / 17964"
255632-257507 modbus: cs-error: "CRC should be 204 187"
256673-258549 modbus: sc-crc: "CRC correct"
257715-258549 modbus: cs-error: "Unknown function"
258882-259716 modbus: sc-server-id: "Slave ID {} is invalid"
258882-259716 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
259716-260031 modbus: sc-error: "Message too short or not finished"
259716-260031 modbus: cs-error: "Message too short or not finished"
262760-263594 modbus: sc-server-id: "Slave ID: 1"
262760-263594 modbus: cs-server-id: "Slave ID: 1"
263800-264634 modbus: sc-function: "Function 3: Read Holding Registers"
263800-264634 modbus: cs-function: "Function 3: Read Holding Registers"
264840-265674 modbus: sc-error: "Error: Odd byte count (3)"
264840-266715 modbus: cs-address: "Start at address 0x3F4 / 31013"
265881-267754 modbus: sc-data: "0xF400 / 62464"
266920-268793 modbus: cs-length: "Read 2 units of data"
269000-270873 modbus: cs-crc: "CRC correct"
271099-271933 modbus: sc-server-id: "Slave ID {} is invalid"
271099-271933 modbus: cs-server-id: "Broadcast message"
271933-272248 modbus: sc-error: "Message too short or not finished"
271933-272248 modbus: cs-error: "Message too short or not finished"
274266-275100 modbus: sc-server-id: "Slave ID: 1"
274266-275100 modbus: cs-server-id: "Slave ID: 1"
275308-276142 modbus: sc-function: "Function 3: Read Holding Registers"
275308-276142 modbus: cs-function: "Function 3: Read Holding Registers"
276349-277183 modbus: sc-length: "Byte count: 4"
276349-278225 modbus: cs-address: "Start at address 0x420 / 31057"
277391-279266 modbus: sc-data: "0x2071 / 8305"
278432-280308 modbus: cs-length: "Read 28998 units of data"
279474-281349 modbus: sc-data: "0x46AD / 18093"
280515-282391 modbus: cs-error: "CRC should be 224 146"
281557-283432 modbus: sc-crc: "CRC correct"
282598-283432 modbus: cs-error: "Unknown function"
283762-284596 modbus: sc-server-id: "Slave ID {} is invalid"
283762-284596 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
284596-284911 modbus: sc-error: "Message too short or not finished"
284596-284911 modbus: cs-error: "Message too short or not finished"
287656-288490 modbus: sc-server-id: "Slave ID: 1"
287656-288490 modbus: cs-server-id: "Slave ID: 1"
288697-289531 modbus: sc-function: "Function 3: Read Holding Registers"
288697-289531 modbus: cs-function: "Function 3: Read Holding Registers"
289736-290570 modbus: sc-error: "Error: Odd byte count (3)"
289736-291610 modbus: cs-address: "Start at address 0x3F6 / 31015"
290776-292650 modbus: sc-data: "0xF600 / 62976"
291816-293690 modbus: cs-length: "Read 2 units of data"
293896-295769 modbus: cs-crc: "CRC correct"
295996-296830 modbus: sc-server-id: "Slave ID {} is invalid"
295996-296830 modbus: cs-server-id: "Broadcast message"
296830-297145 modbus: sc-error: "Message too short or not finished"
296830-297145 modbus: cs-error: "Message too short or not finished"
299205-300039 modbus: sc-server-id: "Slave ID: 1"
299205-300039 modbus: cs-server-id: "Slave ID: 1"
300247-301081 modbus: sc-function: "Function 3: Read Holding Registers"
300247-301081 modbus: cs-function: "Function 3: Read Holding Registers"
301288-302122 modbus: sc-length: "Byte count: 4"
301288-303164 modbus: cs-address: "Start at address 0x4F7 / 31272"
302330-304205 modbus: sc-data: "0xF738 / 63288"
303371-305247 modbus: cs-length: "Read 14407 units of data"
304413-306288 modbus: sc-data: "0x4701 / 18177"
305454-307330 modbus: cs-error: "CRC should be 166 250"
306496-308371 modbus: sc-crc: "CRC correct"
307537-308371 modbus: cs-error: "Unknown function"
308703-309537 modbus: sc-server-id: "Slave ID {} is invalid"
308703-309537 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
309537-309852 modbus: sc-error: "Message too short or not finished"
309537-309852 modbus: cs-error: "Message too short or not finished"
312576-313410 modbus: sc-server-id: "Slave ID: 1"
312576-313410 modbus: cs-server-id: "Slave ID: 1"
313616-314450 modbus: sc-function: "Function 3: Read Holding Registers"
313616-314450 modbus: cs-function: "Function 3: Read Holding Registers"
314656-315490 modbus: sc-error: "Error: Odd byte count (3)"
314656-316531 modbus: cs-address: "Start at address 0x3F8 / 31017"
315697-317570 modbus: sc-data: "0xF800 / 63488"
316736-318610 modbus: cs-length: "Read 2 units of data"
318816-320689 modbus: cs-crc: "CRC correct"
320916-321750 modbus: sc-server-id: "Slave ID {} is invalid"
320916-321750 modbus: cs-server-id: "Broadcast message"
321750-322065 modbus: sc-error: "Message too short or not finished"
321750-322065 modbus: cs-error: "Message too short or not finished"
324071-324905 modbus: sc-server-id: "Slave ID: 1"
324071-324905 modbus: cs-server-id: "Slave ID: 1"
325113-325947 modbus: sc-function: "Function 3: Read Holding Registers"
325113-325947 modbus: cs-function: "Function 3: Read Holding Registers"
326154-326988 modbus: sc-length: "Byte count: 4"
326154-328030 modbus: cs-address: "Start at address 0x45E / 31119"
327196-329071 modbus: sc-data: "0x5E38 / 24120"
328237-330113 modbus: cs-length: "Read 14407 units of data"
329279-331154 modbus: sc-data: "0x472D / 18221"
330320-332196 modbus: cs-error: "CRC should be 118 218"
331362-333237 modbus: sc-crc: "CRC correct"
332403-333237 modbus: cs-error: "Unknown function"
333567-334401 modbus: sc-server-id: "Slave ID {} is invalid"
333567-334401 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
334401-334716 modbus: sc-error: "Message too short or not finished"
334401-334716 modbus: cs-error: "Message too short or not finished"
337444-338278 modbus: sc-server-id: "Slave ID: 1"
337444-338278 modbus: cs-server-id: "Slave ID: 1"
338485-339319 modbus: sc-function: "Function 3: Read Holding Registers"
338485-339319 modbus: cs-function: "Function 3: Read Holding Registers"
339524-340358 modbus: sc-error: "Error: Odd byte count (3)"
339524-341399 modbus: cs-address: "Start at address 0x3FA / 31019"
340565-342438 modbus: sc-data: "0xFA00 / 64000"
341604-343478 modbus: cs-length: "Read 2 units of data"
343684-345558 modbus: cs-crc: "CRC correct"
345783-346617 modbus: sc-server-id: "Slave ID {} is invalid"
345783-346617 modbus: cs-server-id: "Broadcast message"
346617-346932 modbus: sc-error: "Message too short or not finished"
346617-346932 modbus: cs-error: "Message too short or not finished"
348956-349790 modbus: sc-server-id: "Slave ID: 1"
348956-349790 modbus: cs-server-id: "Slave ID: 1"
349997-350831 modbus: sc-function: "Function 3: Read Holding Registers"
349997-350831 modbus: cs-function: "Function 3: Read Holding Registers"
351039-351873 modbus: sc-length: "Byte count: 4"
351039-352914 modbus: cs-address: "Start at address 0x4A5 / 31190"
352080-353956 modbus: sc-data: "0xA552 / 42322"
353122-354997 modbus: cs-length: "Read 21062 units of data"
354163-356039 modbus: sc-data: "0x462C / 17964"
355205-357080 modbus: cs-error: "CRC should be 232 75"
356246-358122 modbus: sc-crc: "CRC correct"
357288-358122 modbus: cs-error: "Unknown function"
358453-359287 modbus: sc-server-id: "Slave ID {} is invalid"
358453-359287 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
359287-359602 modbus: sc-error: "Message too short or not finished"
359287-359602 modbus: cs-error: "Message too short or not finished"
362345-363179 modbus: sc-server-id: "Slave ID: 1"
362345-363179 modbus: cs-server-id: "Slave ID: 1"
363385-364219 modbus: sc-function: "Function 3: Read Holding Registers"
363385-364219 modbus: cs-function: "Function 3: Read Holding Registers"
364425-365259 modbus: sc-error: "Error: Odd byte count (3)"
364425-366300 modbus: cs-address: "Start at address 0x3FC / 31021"
365466-367339 modbus: sc-data: "0xFC00 / 64512"
366505-368378 modbus: cs-length: "Read 2 units of data"
368584-370458 modbus: cs-crc: "CRC correct"
370684-371518 modbus: sc-server-id: "Slave ID {} is invalid"
370684-371518 modbus: cs-server-id: "Broadcast message"
371518-371833 modbus: sc-error: "Message too short or not finished"
371518-371833 modbus: cs-error: "Message too short or not finished"
373847-374681 modbus: sc-server-id: "Slave ID: 1"
373847-374681 modbus: cs-server-id: "Slave ID: 1"
374888-375722 modbus: sc-function: "Function 3: Read Holding Registers"
374888-375722 modbus: cs-function: "Function 3: Read Holding Registers"
375929-376763 modbus: sc-length: "Byte count: 4"
375929-377805 modbus: cs-address: "Start at address 0x420 / 31057"
376971-378846 modbus: sc-data: "0x20A9 / 8361"
378012-379888 modbus: cs-length: "Read 43334 units of data"
379054-380929 modbus: sc-data: "0x46AD / 18093"
380095-381971 modbus: cs-error: "CRC should be 186 146"
381137-383012 modbus: sc-crc: "CRC correct"
382178-383012 modbus: cs-error: "Unknown function"
383343-384177 modbus: sc-server-id: "Slave ID {} is invalid"
383343-384177 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
384177-384492 modbus: sc-error: "Message too short or not finished"
384177-384492 modbus: cs-error: "Message too short or not finished"
387221-388055 modbus: sc-server-id: "Slave ID: 1"
387221-388055 modbus: cs-server-id: "Slave ID: 1"
388262-389096 modbus: sc-function: "Function 3: Read Holding Registers"
388262-389096 modbus: cs-function: "Function 3: Read Holding Registers"
389301-390135 modbus: sc-error: "Error: Odd byte count (3)"
389301-391176 modbus: cs-address: "Start at address 0x3FE / 31023"
390342-392215 modbus: sc-data: "0xFE00 / 65024"
391381-393256 modbus: cs-length: "Read 2 units of data"
393461-395335 modbus: cs-crc: "CRC correct"
395561-396395 modbus: sc-server-id: "Slave ID {} is invalid"
395561-396395 modbus: cs-server-id: "Broadcast message"
396395-396710 modbus: sc-error: "Message too short or not finished"
396395-396710 modbus: cs-error: "Message too short or not finished"
398558-399392 modbus: sc-server-id: "Slave ID: 1"
398558-399392 modbus: cs-server-id: "Slave ID: 1"
399599-400433 modbus: sc-function: "Function 3: Read Holding Registers"
399599-400433 modbus: cs-function: "Function 3: Read Holding Registers"
400641-401475 modbus: sc-length: "Byte count: 4"
400641-402516 modbus: cs-address: "Start at address 0x4F7 / 31272"
401682-403558 modbus: sc-data: "0xF754 / 63316"
402724-404599 modbus: cs-length: "Read 21575 units of data"
403765-405641 modbus: sc-data: "0x4701 / 18177"
404807-406682 modbus: cs-error: "CRC should be 139 250"
405848-407724 modbus: sc-crc: "CRC correct"
406890-407724 modbus: cs-error: "Unknown function"
408055-408889 modbus: sc-server-id: "Slave ID {} is invalid"
408055-408889 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
408889-409204 modbus: sc-error: "Message too short or not finished"
408889-409204 modbus: cs-error: "Message too short or not finished"
411940-412774 modbus: sc-server-id: "Slave ID: 1"
411940-412774 modbus: cs-server-id: "Slave ID: 1"
412980-413814 modbus: sc-function: "Function 3: Read Holding Registers"
412980-413814 modbus: cs-function: "Function 3: Read Holding Registers"
414021-414855 modbus: sc-length: "Byte count: 4"
414021-415894 modbus: cs-address: "Start at address 0x400 / 31025"
415060-416935 modbus: sc-data: "0x0000 / 0"
416101-417974 modbus: cs-length: "Read 2 units of data"
417140-419015 modbus: sc-data: "0x02C5 / 709"
418181-420055 modbus: cs-crc: "CRC correct"
419015-420370 modbus: sc-error: "Message too short or not finished"
420281-421115 modbus: sc-server-id: "Slave ID {} is invalid"
420281-421115 modbus: cs-server-id: "Broadcast message"
421115-421430 modbus: sc-error: "Message too short or not finished"
421115-421430 modbus: cs-error: "Message too short or not finished"
423431-424265 modbus: sc-server-id: "Slave ID: 1"
423431-424265 modbus: cs-server-id: "Slave ID: 1"
424473-425307 modbus: sc-function: "Function 3: Read Holding Registers"
424473-425307 modbus: cs-function: "Function 3: Read Holding Registers"
425514-426348 modbus: sc-length: "Byte count: 4"
425514-427390 modbus: cs-address: "Start at address 0x45E / 31119"
426556-428431 modbus: sc-data: "0x5E54 / 24148"
427597-429473 modbus: cs-length: "Read 21575 units of data"
428639-430514 modbus: sc-data: "0x472D / 18221"
429680-431556 modbus: cs-error: "CRC should be 91 218"
430722-432597 modbus: sc-crc: "CRC correct"
431763-432597 modbus: cs-error: "Unknown function"
432927-433761 modbus: sc-server-id: "Slave ID {} is invalid"
432927-433761 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
433761-434076 modbus: sc-error: "Message too short or not finished"
433761-434076 modbus: cs-error: "Message too short or not finished"
436817-437651 modbus: sc-server-id: "Slave ID: 1"
436817-437651 modbus: cs-server-id: "Slave ID: 1"
437858-438692 modbus: sc-function: "Function 3: Read Holding Registers"
437858-438692 modbus: cs-function: "Function 3: Read Holding Registers"
438897-439731 modbus: sc-length: "Byte count: 4"
438897-440772 modbus: cs-address: "Start at address 0x405 / 31030"
439938-441810 modbus: sc-data: "0x0500 / 1280"
440976-442850 modbus: cs-length: "Read 1 units of data"
442016-443890 modbus: sc-data: "0x0195 / 405"
443056-444930 modbus: cs-crc: "CRC correct"
443890-445245 modbus: sc-error: "Message too short or not finished"
445156-445990 modbus: sc-server-id: "Slave ID {} is invalid"
445156-445990 modbus: cs-server-id: "Broadcast message"
445990-446305 modbus: sc-error: "Message too short or not finished"
445990-446305 modbus: cs-error: "Message too short or not finished"
448289-449123 modbus: sc-server-id: "Slave ID: 1"
448289-449123 modbus: cs-server-id: "Slave ID: 1"
449331-450165 modbus: sc-function: "Function 3: Read Holding Registers"
449331-450165 modbus: cs-function: "Function 3: Read Holding Registers"
450372-451206 modbus: sc-length: "Byte count: 2"
450372-452248 modbus: cs-address: "Start at address 0x200 / 30513"
451414-453289 modbus: sc-data: "0x0000 / 0"
452455-454331 modbus: cs-length: "Read 184 units of data"
453497-455372 modbus: sc-crc: "CRC correct"
454331-455687 modbus: cs-error: "Message too short or not finished"
455702-456536 modbus: sc-server-id: "Slave ID {} is invalid"
455702-456536 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
456536-456851 modbus: sc-error: "Message too short or not finished"
456536-456851 modbus: cs-error: "Message too short or not finished"
459573-460407 modbus: sc-server-id: "Slave ID: 1"
459573-460407 modbus: cs-server-id: "Slave ID: 1"
460613-461447 modbus: sc-function: "Function 6: Write Single Register"
460613-461447 modbus: cs-function: "Function 6: Write Single Register"
461652-463527 modbus: sc-address: "Address 0x404 / 31028"
461652-463527 modbus: cs-address: "Address 0x404 / 31028"
463732-465606 modbus: sc-data: "Register Value 0x1 / 1"
463732-465606 modbus: cs-data: "Register Value 0x1 / 1"
465606-466961 modbus: sc-error: "Message too short or not finished"
465606-466961 modbus: cs-error: "Message too short or not finished"
466856-467690 modbus: sc-server-id: "Slave ID {} is invalid"
466856-467690 modbus: cs-server-id: "Slave ID: 251 (reserved address)"
467690-468005 modbus: sc-error: "Message too short or not finished"
467690-468005 modbus: cs-error: "Message too short or not finished"
467912-468746 modbus: sc-server-id: "Slave ID {} is invalid"
467912-468746 modbus: cs-server-id: "Broadcast message"
468746-469061 modbus: sc-error: "Message too short or not finished"
468746-469061 modbus: cs-error: "Message too short or not finished"
471017-471851 modbus: sc-server-id: "Slave ID: 1"
471017-471851 modbus: cs-server-id: "Slave ID: 1"
472058-472892 modbus: sc-function: "Function 6: Write Single Register"
472058-472892 modbus: cs-function: "Function 6: Write Single Register"
473100-474975 modbus: sc-address: "Address 0x404 / 31028"
473100-474975 modbus: cs-address: "Address 0x404 / 31028"
475183-477058 modbus: sc-data: "Register Value 0x1 / 1"
475183-477058 modbus: cs-data: "Register Value 0x1 / 1"
477266-479141 modbus: sc-crc: "CRC correct"
477266-479141 modbus: cs-crc: "CRC correct"
479471-480305 modbus: sc-server-id: "Slave ID {} is invalid"
479471-480305 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
480305-480620 modbus: sc-error: "Message too short or not finished"
480305-480620 modbus: cs-error: "Message too short or not finished"
483329-484163 modbus: sc-server-id: "Slave ID: 1"
483329-484163 modbus: cs-server-id: "Slave ID: 1"
484368-485202 modbus: sc-function: "Function 6: Write Single Register"
484368-485202 modbus: cs-function: "Function 6: Write Single Register"
485409-487283 modbus: sc-address: "Address 0x405 / 31029"
485409-487283 modbus: cs-address: "Address 0x405 / 31029"
487489-489363 modbus: sc-data: "Register Value 0x0 / 0"
487489-489363 modbus: cs-data: "Register Value 0x0 / 0"
489569-491443 modbus: sc-crc: "CRC correct"
489569-491443 modbus: cs-crc: "CRC correct"
491669-492503 modbus: sc-server-id: "Slave ID {} is invalid"
491669-492503 modbus: cs-server-id: "Broadcast message"
492503-492818 modbus: sc-error: "Message too short or not finished"
492503-492818 modbus: cs-error: "Message too short or not finished"
494826-495660 modbus: sc-server-id: "Slave ID: 1"
494826-495660 modbus: cs-server-id: "Slave ID: 1"
495867-496701 modbus: sc-function: "Function 6: Write Single Register"
495867-496701 modbus: cs-function: "Function 6: Write Single Register"
496909-498784 modbus: sc-address: "Address 0x405 / 31029"
496909-498784 modbus: cs-address: "Address 0x405 / 31029"
498992-500867 modbus: sc-data: "Register Value 0x0 / 0"
498992-500867 modbus: cs-data: "Register Value 0x0 / 0"
501075-502950 modbus: sc-crc: "CRC correct"
501075-502950 modbus: cs-crc: "CRC correct"
503280-504114 modbus: sc-server-id: "Slave ID {} is invalid"
503280-504114 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
504114-504429 modbus: sc-error: "Message too short or not finished"
504114-504429 modbus: cs-error: "Message too short or not finished"
507111-507945 modbus: sc-server-id: "Slave ID: 1"
507111-507945 modbus: cs-server-id: "Slave ID: 1"
508151-508985 modbus: sc-function: "Function 3: Read Holding Registers"
508151-508985 modbus: cs-function: "Function 3: Read Holding Registers"
509190-510024 modbus: sc-length: "Byte count: 4"
509190-511065 modbus: cs-address: "Start at address 0x406 / 31031"
510231-512104 modbus: sc-data: "0x0600 / 1536"
511270-513144 modbus: cs-length: "Read 1 units of data"
512310-514184 modbus: sc-data: "0x0165 / 357"
513350-515224 modbus: cs-crc: "CRC correct"
514184-515539 modbus: sc-error: "Message too short or not finished"
515450-516284 modbus: sc-server-id: "Slave ID {} is invalid"
515450-516284 modbus: cs-server-id: "Broadcast message"
516284-516599 modbus: sc-error: "Message too short or not finished"
516284-516599 modbus: cs-error: "Message too short or not finished"
518137-518971 modbus: sc-server-id: "Slave ID: 1"
518137-518971 modbus: cs-server-id: "Slave ID: 1"
519179-520013 modbus: sc-function: "Function 3: Read Holding Registers"
519179-520013 modbus: cs-function: "Function 3: Read Holding Registers"
520220-521054 modbus: sc-length: "Byte count: 2"
520220-522096 modbus: cs-address: "Start at address 0x200 / 30513"
521262-523137 modbus: sc-data: "0x002C / 44"
522303-524179 modbus: cs-length: "Read 11449 units of data"
523345-525220 modbus: sc-crc: "CRC correct"
524179-525535 modbus: cs-error: "Message too short or not finished"
525551-526385 modbus: sc-server-id: "Slave ID {} is invalid"
525551-526385 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
526385-526700 modbus: sc-error: "Message too short or not finished"
526385-526700 modbus: cs-error: "Message too short or not finished"
529393-530227 modbus: sc-server-id: "Slave ID: 1"
529393-530227 modbus: cs-server-id: "Slave ID: 1"
530434-531268 modbus: sc-function: "Function 3: Read Holding Registers"
530434-531268 modbus: cs-function: "Function 3: Read Holding Registers"
531472-532306 modbus: sc-length: "Byte count: 4"
531472-533347 modbus: cs-address: "Start at address 0x407 / 31032"
532513-534386 modbus: sc-data: "0x0700 / 1792"
533552-535426 modbus: cs-length: "Read 1 units of data"
534592-536466 modbus: sc-data: "0x0134 / 308"
535632-537506 modbus: cs-crc: "CRC correct"
536466-537821 modbus: sc-error: "Message too short or not finished"
537733-538567 modbus: sc-server-id: "Slave ID {} is invalid"
537733-538567 modbus: cs-server-id: "Broadcast message"
538567-538882 modbus: sc-error: "Message too short or not finished"
538567-538882 modbus: cs-error: "Message too short or not finished"
540885-541719 modbus: sc-server-id: "Slave ID: 1"
540885-541719 modbus: cs-server-id: "Slave ID: 1"
541926-542760 modbus: sc-function: "Function 3: Read Holding Registers"
541926-542760 modbus: cs-function: "Function 3: Read Holding Registers"
542968-543802 modbus: sc-length: "Byte count: 2"
542968-544843 modbus: cs-address: "Start at address 0x200 / 30513"
544009-545885 modbus: sc-data: "0x0000 / 0"
545051-546926 modbus: cs-length: "Read 184 units of data"
546092-547968 modbus: sc-crc: "CRC correct"
546926-548283 modbus: cs-error: "Message too short or not finished"
548298-549132 modbus: sc-server-id: "Slave ID {} is invalid"
548298-549132 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
549132-549447 modbus: sc-error: "Message too short or not finished"
549132-549447 modbus: cs-error: "Message too short or not finished"
552140-552974 modbus: sc-server-id: "Slave ID: 1"
552140-552974 modbus: cs-server-id: "Slave ID: 1"
553180-554014 modbus: sc-function: "Function 3: Read Holding Registers"
553180-554014 modbus: cs-function: "Function 3: Read Holding Registers"
554220-555054 modbus: sc-length: "Byte count: 4"
554220-556094 modbus: cs-address: "Start at address 0x408 / 31033"
555260-557134 modbus: sc-data: "0x0800 / 2048"
556300-558174 modbus: cs-length: "Read 1 units of data"
557340-559214 modbus: sc-data: "0x0104 / 260"
558380-560254 modbus: cs-crc: "CRC correct"
559214-560569 modbus: sc-error: "Message too short or not finished"
560479-561313 modbus: sc-server-id: "Slave ID {} is invalid"
560479-561313 modbus: cs-server-id: "Broadcast message"
561313-561628 modbus: sc-error: "Message too short or not finished"
561313-561628 modbus: cs-error: "Message too short or not finished"
563169-564003 modbus: sc-server-id: "Slave ID: 1"
563169-564003 modbus: cs-server-id: "Slave ID: 1"
564210-565044 modbus: sc-function: "Function 3: Read Holding Registers"
564210-565044 modbus: cs-function: "Function 3: Read Holding Registers"
565252-566086 modbus: sc-length: "Byte count: 2"
565252-567127 modbus: cs-address: "Start at address 0x200 / 30513"
566293-568169 modbus: sc-data: "0x0000 / 0"
567335-569210 modbus: cs-length: "Read 184 units of data"
568376-570252 modbus: sc-crc: "CRC correct"
569210-570567 modbus: cs-error: "Message too short or not finished"
570582-571416 modbus: sc-server-id: "Slave ID {} is invalid"
570582-571416 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
571416-571731 modbus: sc-error: "Message too short or not finished"
571416-571731 modbus: cs-error: "Message too short or not finished"
574420-575254 modbus: sc-server-id: "Slave ID: 1"
574420-575254 modbus: cs-server-id: "Slave ID: 1"
575460-576294 modbus: sc-function: "Function 3: Read Holding Registers"
575460-576294 modbus: cs-function: "Function 3: Read Holding Registers"
576500-577334 modbus: sc-length: "Byte count: 4"
576500-578375 modbus: cs-address: "Start at address 0x402 / 31027"
577541-579414 modbus: sc-data: "0x0200 / 512"
578580-580453 modbus: cs-length: "Read 1 units of data"
579619-581493 modbus: sc-data: "0x0124 / 292"
580659-582534 modbus: cs-crc: "CRC correct"
581493-582849 modbus: sc-error: "Message too short or not finished"
582760-583594 modbus: sc-server-id: "Slave ID {} is invalid"
582760-583594 modbus: cs-server-id: "Broadcast message"
583594-583909 modbus: sc-error: "Message too short or not finished"
583594-583909 modbus: cs-error: "Message too short or not finished"
585909-586743 modbus: sc-server-id: "Slave ID: 1"
585909-586743 modbus: cs-server-id: "Slave ID: 1"
586951-587785 modbus: sc-function: "Function 3: Read Holding Registers"
586951-587785 modbus: cs-function: "Function 3: Read Holding Registers"
587992-588826 modbus: sc-length: "Byte count: 2"
587992-589868 modbus: cs-address: "Start at address 0x200 / 30513"
589034-590909 modbus: sc-data: "0x0002 / 2"
590075-591951 modbus: cs-length: "Read 569 units of data"
591117-592992 modbus: sc-crc: "CRC correct"
591951-593307 modbus: cs-error: "Message too short or not finished"
593321-594155 modbus: sc-server-id: "Slave ID {} is invalid"
593321-594155 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
594155-594470 modbus: sc-error: "Message too short or not finished"
594155-594470 modbus: cs-error: "Message too short or not finished"
597159-597993 modbus: sc-server-id: "Slave ID: 1"
597159-597993 modbus: cs-server-id: "Slave ID: 1"
598200-599034 modbus: sc-function: "Function 3: Read Holding Registers"
598200-599034 modbus: cs-function: "Function 3: Read Holding Registers"
599239-600073 modbus: sc-length: "Byte count: 4"
599239-601113 modbus: cs-address: "Start at address 0x403 / 31028"
600279-602152 modbus: sc-data: "0x0300 / 768"
601318-603192 modbus: cs-length: "Read 1 units of data"
602358-604232 modbus: sc-data: "0x0175 / 373"
603398-605272 modbus: cs-crc: "CRC correct"
604232-605587 modbus: sc-error: "Message too short or not finished"
605498-606332 modbus: sc-server-id: "Slave ID {} is invalid"
605498-606332 modbus: cs-server-id: "Broadcast message"
606332-606647 modbus: sc-error: "Message too short or not finished"
606332-606647 modbus: cs-error: "Message too short or not finished"
608194-609028 modbus: sc-server-id: "Slave ID: 1"
608194-609028 modbus: cs-server-id: "Slave ID: 1"
609235-610069 modbus: sc-function: "Function 3: Read Holding Registers"
609235-610069 modbus: cs-function: "Function 3: Read Holding Registers"
610277-611111 modbus: sc-length: "Byte count: 2"
610277-612152 modbus: cs-address: "Start at address 0x200 / 30513"
611318-613194 modbus: sc-data: "0x0001 / 1"
612360-614235 modbus: cs-length: "Read 377 units of data"
613401-615277 modbus: sc-crc: "CRC correct"
614235-615592 modbus: cs-error: "Message too short or not finished"
615606-616440 modbus: sc-server-id: "Slave ID {} is invalid"
615606-616440 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
616440-616755 modbus: sc-error: "Message too short or not finished"
616440-616755 modbus: cs-error: "Message too short or not finished"
619447-620281 modbus: sc-server-id: "Slave ID: 1"
619447-620281 modbus: cs-server-id: "Slave ID: 1"
620487-621321 modbus: sc-function: "Function 3: Read Holding Registers"
620487-621321 modbus: cs-function: "Function 3: Read Holding Registers"
621526-622360 modbus: sc-length: "Byte count: 4"
621526-623401 modbus: cs-address: "Start at address 0x404 / 31029"
622567-624440 modbus: sc-data: "0x0400 / 1024"
623606-625480 modbus: cs-length: "Read 1 units of data"
624646-626519 modbus: sc-data: "0x01C4 / 452"
625685-627560 modbus: cs-crc: "CRC correct"
626519-627875 modbus: sc-error: "Message too short or not finished"
627786-628620 modbus: sc-server-id: "Slave ID {} is invalid"
627786-628620 modbus: cs-server-id: "Broadcast message"
628620-628935 modbus: sc-error: "Message too short or not finished"
628620-628935 modbus: cs-error: "Message too short or not finished"
630946-631780 modbus: sc-server-id: "Slave ID: 1"
630946-631780 modbus: cs-server-id: "Slave ID: 1"
631988-632822 modbus: sc-function: "Function 3: Read Holding Registers"
631988-632822 modbus: cs-function: "Function 3: Read Holding Registers"
633029-633863 modbus: sc-length: "Byte count: 2"
633029-634905 modbus: cs-address: "Start at address 0x200 / 30513"
634071-635946 modbus: sc-data: "0x0001 / 1"
635112-636988 modbus: cs-length: "Read 377 units of data"
636154-638029 modbus: sc-crc: "CRC correct"
636988-638344 modbus: cs-error: "Message too short or not finished"
638359-639193 modbus: sc-server-id: "Slave ID {} is invalid"
638359-639193 modbus: cs-server-id: "Broadcast message"
639193-639508 modbus: sc-error: "Message too short or not finished"
639193-639508 modbus: cs-error: "Message too short or not finished"
5113494-5114328 modbus: sc-server-id: "Slave ID: 1"
5113494-5114328 modbus: cs-server-id: "Slave ID: 1"
5114533-5115367 modbus: sc-function: "Function 3: Read Holding Registers"
5114533-5115367 modbus: cs-function: "Function 3: Read Holding Registers"
5115573-5116407 modbus: sc-error: "Error: Odd byte count (3)"
5115573-5117448 modbus: cs-address: "Start at address 0x3E8 / 31001"
5116614-5118487 modbus: sc-data: "0xE800 / 59392"
5117653-5119526 modbus: cs-length: "Read 2 units of data"
5119733-5121606 modbus: cs-crc: "CRC correct"
5121832-5122666 modbus: sc-server-id: "Slave ID {} is invalid"
5121832-5122666 modbus: cs-server-id: "Broadcast message"
5122666-5122981 modbus: sc-error: "Message too short or not finished"
5122666-5122981 modbus: cs-error: "Message too short or not finished"
5125071-5125905 modbus: sc-server-id: "Slave ID: 1"
5125071-5125905 modbus: cs-server-id: "Slave ID: 1"
5126113-5126947 modbus: sc-function: "Function 3: Read Holding Registers"
5126113-5126947 modbus: cs-function: "Function 3: Read Holding Registers"
5127154-5127988 modbus: sc-length: "Byte count: 4"
5127154-5129029 modbus: cs-address: "Start at address 0x452 / 31107"
5128195-5130071 modbus: sc-data: "0x5266 / 21094"
5129237-5131112 modbus: cs-length: "Read 26199 units of data"
5130278-5132154 modbus: sc-data: "0x5707 / 22279"
5131320-5133195 modbus: cs-error: "CRC should be 143 117"
5132361-5134237 modbus: sc-crc: "CRC correct"
5133403-5134237 modbus: cs-error: "Unknown function"
5134568-5135402 modbus: sc-server-id: "Slave ID {} is invalid"
5134568-5135402 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5135402-5135717 modbus: sc-error: "Message too short or not finished"
5135402-5135717 modbus: cs-error: "Message too short or not finished"
5138444-5139278 modbus: sc-server-id: "Slave ID: 1"
5138444-5139278 modbus: cs-server-id: "Slave ID: 1"
5139484-5140318 modbus: sc-function: "Function 3: Read Holding Registers"
5139484-5140318 modbus: cs-function: "Function 3: Read Holding Registers"
5140523-5141357 modbus: sc-error: "Error: Odd byte count (3)"
5140523-5142398 modbus: cs-address: "Start at address 0x3EA / 31003"
5141564-5143437 modbus: sc-data: "0xEA00 / 59904"
5142603-5144477 modbus: cs-length: "Read 2 units of data"
5144683-5146556 modbus: cs-crc: "CRC correct"
5146782-5147616 modbus: sc-server-id: "Slave ID {} is invalid"
5146782-5147616 modbus: cs-server-id: "Broadcast message"
5147616-5147931 modbus: sc-error: "Message too short or not finished"
5147616-5147931 modbus: cs-error: "Message too short or not finished"
5149943-5150777 modbus: sc-server-id: "Slave ID: 1"
5149943-5150777 modbus: cs-server-id: "Slave ID: 1"
5150984-5151818 modbus: sc-function: "Function 3: Read Holding Registers"
5150984-5151818 modbus: cs-function: "Function 3: Read Holding Registers"
5152026-5152860 modbus: sc-length: "Byte count: 4"
5152026-5153901 modbus: cs-address: "Start at address 0x4A4 / 31189"
5153067-5154943 modbus: sc-data: "0xA471 / 42097"
5154109-5155984 modbus: cs-length: "Read 28998 units of data"
5155150-5157026 modbus: sc-data: "0x462C / 17964"
5156192-5158067 modbus: cs-error: "CRC should be 160 187"
5157233-5159109 modbus: sc-crc: "CRC correct"
5158275-5159109 modbus: cs-error: "Unknown function"
5159443-5160277 modbus: sc-server-id: "Slave ID {} is invalid"
5159443-5160277 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5160277-5160592 modbus: sc-error: "Message too short or not finished"
5160277-5160592 modbus: cs-error: "Message too short or not finished"
5163314-5164148 modbus: sc-server-id: "Slave ID: 1"
5163314-5164148 modbus: cs-server-id: "Slave ID: 1"
5164353-5165187 modbus: sc-function: "Function 3: Read Holding Registers"
5164353-5165187 modbus: cs-function: "Function 3: Read Holding Registers"
5165393-5166227 modbus: sc-error: "Error: Odd byte count (3)"
5165393-5167268 modbus: cs-address: "Start at address 0x3EC / 31005"
5166434-5168307 modbus: sc-data: "0xEC00 / 60416"
5167473-5169346 modbus: cs-length: "Read 2 units of data"
5169553-5171426 modbus: cs-crc: "CRC correct"
5171653-5172487 modbus: sc-server-id: "Slave ID {} is invalid"
5171653-5172487 modbus: cs-server-id: "Broadcast message"
5172487-5172802 modbus: sc-error: "Message too short or not finished"
5172487-5172802 modbus: cs-error: "Message too short or not finished"
5174634-5175468 modbus: sc-server-id: "Slave ID: 1"
5174634-5175468 modbus: cs-server-id: "Slave ID: 1"
5175676-5176510 modbus: sc-function: "Function 3: Read Holding Registers"
5175676-5176510 modbus: cs-function: "Function 3: Read Holding Registers"
5176717-5177551 modbus: sc-length: "Byte count: 4"
5176717-5178593 modbus: cs-address: "Start at address 0x420 / 31057"
5177759-5179634 modbus: sc-data: "0x2038 / 8248"
5178800-5180676 modbus: cs-length: "Read 14406 units of data"
5179842-5181717 modbus: sc-data: "0x46AD / 18093"
5180883-5182759 modbus: cs-error: "CRC should be 215 2"
5181925-5183800 modbus: sc-crc: "CRC correct"
5182966-5183800 modbus: cs-error: "Unknown function"
5184139-5184973 modbus: sc-server-id: "Slave ID {} is invalid"
5184139-5184973 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5184973-5185288 modbus: sc-error: "Message too short or not finished"
5184973-5185288 modbus: cs-error: "Message too short or not finished"
5188006-5188840 modbus: sc-server-id: "Slave ID: 1"
5188006-5188840 modbus: cs-server-id: "Slave ID: 1"
5189046-5189880 modbus: sc-function: "Function 3: Read Holding Registers"
5189046-5189880 modbus: cs-function: "Function 3: Read Holding Registers"
5190085-5190919 modbus: sc-error: "Error: Odd byte count (3)"
5190085-5191960 modbus: cs-address: "Start at address 0x3EE / 31007"
5191126-5192999 modbus: sc-data: "0xEE00 / 60928"
5192165-5194039 modbus: cs-length: "Read 2 units of data"
5194245-5196119 modbus: cs-crc: "CRC correct"
5196344-5197178 modbus: sc-server-id: "Slave ID {} is invalid"
5196344-5197178 modbus: cs-server-id: "Broadcast message"
5197178-5197493 modbus: sc-error: "Message too short or not finished"
5197178-5197493 modbus: cs-error: "Message too short or not finished"
5199516-5200350 modbus: sc-server-id: "Slave ID: 1"
5199516-5200350 modbus: cs-server-id: "Slave ID: 1"
5200558-5201392 modbus: sc-function: "Function 3: Read Holding Registers"
5200558-5201392 modbus: cs-function: "Function 3: Read Holding Registers"
5201599-5202433 modbus: sc-length: "Byte count: 4"
5201599-5203475 modbus: cs-address: "Start at address 0x4F7 / 31272"
5202641-5204516 modbus: sc-data: "0xF71C / 63260"
5203682-5205558 modbus: cs-length: "Read 7239 units of data"
5204724-5206599 modbus: sc-data: "0x4701 / 18177"
5205765-5207641 modbus: cs-error: "CRC should be 189 250"
5206807-5208682 modbus: sc-crc: "CRC correct"
5207848-5208682 modbus: cs-error: "Unknown function"
5209013-5209847 modbus: sc-server-id: "Slave ID {} is invalid"
5209013-5209847 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5209847-5210162 modbus: sc-error: "Message too short or not finished"
5209847-5210162 modbus: cs-error: "Message too short or not finished"
5212890-5213724 modbus: sc-server-id: "Slave ID: 1"
5212890-5213724 modbus: cs-server-id: "Slave ID: 1"
5213930-5214764 modbus: sc-function: "Function 3: Read Holding Registers"
5213930-5214764 modbus: cs-function: "Function 3: Read Holding Registers"
5214970-5215804 modbus: sc-error: "Error: Odd byte count (3)"
5214970-5216844 modbus: cs-address: "Start at address 0x3F0 / 31009"
5216010-5217883 modbus: sc-data: "0xF000 / 61440"
5217049-5218922 modbus: cs-length: "Read 2 units of data"
5219129-5221002 modbus: cs-crc: "CRC correct"
5221228-5222062 modbus: sc-server-id: "Slave ID {} is invalid"
5221228-5222062 modbus: cs-server-id: "Broadcast message"
5222062-5222377 modbus: sc-error: "Message too short or not finished"
5222062-5222377 modbus: cs-error: "Message too short or not finished"
5224394-5225228 modbus: sc-server-id: "Slave ID: 1"
5224394-5225228 modbus: cs-server-id: "Slave ID: 1"
5225435-5226269 modbus: sc-function: "Function 3: Read Holding Registers"
5225435-5226269 modbus: cs-function: "Function 3: Read Holding Registers"
5226477-5227311 modbus: sc-length: "Byte count: 4"
5226477-5228352 modbus: cs-address: "Start at address 0x45E / 31119"
5227518-5229394 modbus: sc-data: "0x5E1C / 24092"
5228560-5230435 modbus: cs-length: "Read 7239 units of data"
5229601-5231476 modbus: sc-data: "0x472D / 18221"
5230642-5232518 modbus: cs-error: "CRC should be 109 218"
5231684-5233559 modbus: sc-crc: "CRC correct"
5232725-5233559 modbus: cs-error: "Unknown function"
5233890-5234724 modbus: sc-server-id: "Slave ID {} is invalid"
5233890-5234724 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5234724-5235039 modbus: sc-error: "Message too short or not finished"
5234724-5235039 modbus: cs-error: "Message too short or not finished"
5237769-5238603 modbus: sc-server-id: "Slave ID: 1"
5237769-5238603 modbus: cs-server-id: "Slave ID: 1"
5238810-5239644 modbus: sc-function: "Function 3: Read Holding Registers"
5238810-5239644 modbus: cs-function: "Function 3: Read Holding Registers"
5239848-5240682 modbus: sc-error: "Error: Odd byte count (3)"
5239848-5241722 modbus: cs-address: "Start at address 0x3F2 / 31011"
5240888-5242762 modbus: sc-data: "0xF200 / 61952"
5241928-5243801 modbus: cs-length: "Read 2 units of data"
5244007-5245881 modbus: cs-crc: "CRC correct"
5246107-5246941 modbus: sc-server-id: "Slave ID {} is invalid"
5246107-5246941 modbus: cs-server-id: "Broadcast message"
5246941-5247256 modbus: sc-error: "Message too short or not finished"
5246941-5247256 modbus: cs-error: "Message too short or not finished"
5249271-5250105 modbus: sc-server-id: "Slave ID: 1"
5249271-5250105 modbus: cs-server-id: "Slave ID: 1"
5250312-5251146 modbus: sc-function: "Function 3: Read Holding Registers"
5250312-5251146 modbus: cs-function: "Function 3: Read Holding Registers"
5251354-5252188 modbus: sc-length: "Byte count: 4"
5251354-5253229 modbus: cs-address: "Start at address 0x4A4 / 31189"
5252395-5254270 modbus: sc-data: "0xA4E1 / 42209"
5253436-5255312 modbus: cs-length: "Read 57670 units of data"
5254478-5256353 modbus: sc-data: "0x462C / 17964"
5255519-5257395 modbus: cs-error: "CRC should be 204 187"
5256561-5258436 modbus: sc-crc: "CRC correct"
5257602-5258436 modbus: cs-error: "Unknown function"
5258766-5259600 modbus: sc-server-id: "Slave ID {} is invalid"
5258766-5259600 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5259600-5259915 modbus: sc-error: "Message too short or not finished"
5259600-5259915 modbus: cs-error: "Message too short or not finished"
5262640-5263474 modbus: sc-server-id: "Slave ID: 1"
5262640-5263474 modbus: cs-server-id: "Slave ID: 1"
5263680-5264514 modbus: sc-function: "Function 3: Read Holding Registers"
5263680-5264514 modbus: cs-function: "Function 3: Read Holding Registers"
5264720-5265554 modbus: sc-error: "Error: Odd byte count (3)"
5264720-5266594 modbus: cs-address: "Start at address 0x3F4 / 31013"
5265760-5267634 modbus: sc-data: "0xF400 / 62464"
5266800-5268674 modbus: cs-length: "Read 2 units of data"
5268880-5270753 modbus: cs-crc: "CRC correct"
5270980-5271814 modbus: sc-server-id: "Slave ID {} is invalid"
5270980-5271814 modbus: cs-server-id: "Broadcast message"
5271814-5272129 modbus: sc-error: "Message too short or not finished"
5271814-5272129 modbus: cs-error: "Message too short or not finished"
5274142-5274976 modbus: sc-server-id: "Slave ID: 1"
5274142-5274976 modbus: cs-server-id: "Slave ID: 1"
5275183-5276017 modbus: sc-function: "Function 3: Read Holding Registers"
5275183-5276017 modbus: cs-function: "Function 3: Read Holding Registers"
5276224-5277058 modbus: sc-length: "Byte count: 4"
5276224-5278100 modbus: cs-address: "Start at address 0x420 / 31057"
5277266-5279141 modbus: sc-data: "0x2071 / 8305"
5278307-5280183 modbus: cs-length: "Read 28998 units of data"
5279349-5281224 modbus: sc-data: "0x46AD / 18093"
5280390-5282266 modbus: cs-error: "CRC should be 224 146"
5281432-5283307 modbus: sc-crc: "CRC correct"
5282473-5283307 modbus: cs-error: "Unknown function"
5283637-5284471 modbus: sc-server-id: "Slave ID {} is invalid"
5283637-5284471 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5284471-5284786 modbus: sc-error: "Message too short or not finished"
5284471-5284786 modbus: cs-error: "Message too short or not finished"
5287517-5288351 modbus: sc-server-id: "Slave ID: 1"
5287517-5288351 modbus: cs-server-id: "Slave ID: 1"
5288558-5289392 modbus: sc-function: "Function 3: Read Holding Registers"
5288558-5289392 modbus: cs-function: "Function 3: Read Holding Registers"
5289597-5290431 modbus: sc-error: "Error: Odd byte count (3)"
5289597-5291472 modbus: cs-address: "Start at address 0x3F6 / 31015"
5290638-5292511 modbus: sc-data: "0xF600 / 62976"
5291677-5293550 modbus: cs-length: "Read 2 units of data"
5293757-5295630 modbus: cs-crc: "CRC correct"
5295857-5296691 modbus: sc-server-id: "Slave ID {} is invalid"
5295857-5296691 modbus: cs-server-id: "Broadcast message"
5296691-5297006 modbus: sc-error: "Message too short or not finished"
5296691-5297006 modbus: cs-error: "Message too short or not finished"
5298857-5299691 modbus: sc-server-id: "Slave ID: 1"
5298857-5299691 modbus: cs-server-id: "Slave ID: 1"
5299898-5300732 modbus: sc-function: "Function 3: Read Holding Registers"
5299898-5300732 modbus: cs-function: "Function 3: Read Holding Registers"
5300940-5301774 modbus: sc-length: "Byte count: 4"
5300940-5302815 modbus: cs-address: "Start at address 0x4F7 / 31272"
5301981-5303857 modbus: sc-data: "0xF738 / 63288"
5303023-5304898 modbus: cs-length: "Read 14407 units of data"
5304064-5305940 modbus: sc-data: "0x4701 / 18177"
5305106-5306981 modbus: cs-error: "CRC should be 166 250"
5306147-5308023 modbus: sc-crc: "CRC correct"
5307189-5308023 modbus: cs-error: "Unknown function"
5308353-5309187 modbus: sc-server-id: "Slave ID {} is invalid"
5308353-5309187 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5309187-5309502 modbus: sc-error: "Message too short or not finished"
5309187-5309502 modbus: cs-error: "Message too short or not finished"
5312225-5313059 modbus: sc-server-id: "Slave ID: 1"
5312225-5313059 modbus: cs-server-id: "Slave ID: 1"
5313265-5314099 modbus: sc-function: "Function 3: Read Holding Registers"
5313265-5314099 modbus: cs-function: "Function 3: Read Holding Registers"
5314305-5315139 modbus: sc-error: "Error: Odd byte count (3)"
5314305-5316179 modbus: cs-address: "Start at address 0x3F8 / 31017"
5315345-5317218 modbus: sc-data: "0xF800 / 63488"
5316384-5318258 modbus: cs-length: "Read 2 units of data"
5318464-5320337 modbus: cs-crc: "CRC correct"
5320564-5321398 modbus: sc-server-id: "Slave ID {} is invalid"
5320564-5321398 modbus: cs-server-id: "Broadcast message"
5321398-5321713 modbus: sc-error: "Message too short or not finished"
5321398-5321713 modbus: cs-error: "Message too short or not finished"
5323723-5324557 modbus: sc-server-id: "Slave ID: 1"
5323723-5324557 modbus: cs-server-id: "Slave ID: 1"
5324764-5325598 modbus: sc-function: "Function 3: Read Holding Registers"
5324764-5325598 modbus: cs-function: "Function 3: Read Holding Registers"
5325806-5326640 modbus: sc-length: "Byte count: 4"
5325806-5327681 modbus: cs-address: "Start at address 0x45E / 31119"
5326847-5328723 modbus: sc-data: "0x5E38 / 24120"
5327889-5329764 modbus: cs-length: "Read 14407 units of data"
5328930-5330806 modbus: sc-data: "0x472D / 18221"
5329972-5331847 modbus: cs-error: "CRC should be 118 218"
5331013-5332889 modbus: sc-crc: "CRC correct"
5332055-5332889 modbus: cs-error: "Unknown function"
5333264-5334098 modbus: sc-server-id: "Slave ID {} is invalid"
5333264-5334098 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5334098-5334413 modbus: sc-error: "Message too short or not finished"
5334098-5334413 modbus: cs-error: "Message too short or not finished"
5337109-5337943 modbus: sc-server-id: "Slave ID: 1"
5337109-5337943 modbus: cs-server-id: "Slave ID: 1"
5338150-5338984 modbus: sc-function: "Function 3: Read Holding Registers"
5338150-5338984 modbus: cs-function: "Function 3: Read Holding Registers"
5339188-5340022 modbus: sc-error: "Error: Odd byte count (3)"
5339188-5341063 modbus: cs-address: "Start at address 0x3FA / 31019"
5340229-5342102 modbus: sc-data: "0xFA00 / 64000"
5341268-5343142 modbus: cs-length: "Read 2 units of data"
5343348-5345221 modbus: cs-crc: "CRC correct"
5345447-5346281 modbus: sc-server-id: "Slave ID {} is invalid"
5345447-5346281 modbus: cs-server-id: "Broadcast message"
5346281-5346596 modbus: sc-error: "Message too short or not finished"
5346281-5346596 modbus: cs-error: "Message too short or not finished"
5348607-5349441 modbus: sc-server-id: "Slave ID: 1"
5348607-5349441 modbus: cs-server-id: "Slave ID: 1"
5349649-5350483 modbus: sc-function: "Function 3: Read Holding Registers"
5349649-5350483 modbus: cs-function: "Function 3: Read Holding Registers"
5350690-5351524 modbus: sc-length: "Byte count: 4"
5350690-5352566 modbus: cs-address: "Start at address 0x4A5 / 31190"
5351732-5353607 modbus: sc-data: "0xA552 / 42322"
5352773-5354649 modbus: cs-length: "Read 21062 units of data"
5353815-5355690 modbus: sc-data: "0x462C / 17964"
5354856-5356732 modbus: cs-error: "CRC should be 232 75"
5355898-5357773 modbus: sc-crc: "CRC correct"
5356939-5357773 modbus: cs-error: "Unknown function"
5358103-5358937 modbus: sc-server-id: "Slave ID {} is invalid"
5358103-5358937 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5358937-5359252 modbus: sc-error: "Message too short or not finished"
5358937-5359252 modbus: cs-error: "Message too short or not finished"
5361990-5362824 modbus: sc-server-id: "Slave ID: 1"
5361990-5362824 modbus: cs-server-id: "Slave ID: 1"
5363029-5363863 modbus: sc-function: "Function 3: Read Holding Registers"
5363029-5363863 modbus: cs-function: "Function 3: Read Holding Registers"
5364069-5364903 modbus: sc-error: "Error: Odd byte count (3)"
5364069-5365944 modbus: cs-address: "Start at address 0x3FC / 31021"
5365110-5366983 modbus: sc-data: "0xFC00 / 64512"
5366149-5368022 modbus: cs-length: "Read 2 units of data"
5368229-5370102 modbus: cs-crc: "CRC correct"
5370328-5371162 modbus: sc-server-id: "Slave ID {} is invalid"
5370328-5371162 modbus: cs-server-id: "Broadcast message"
5371162-5371477 modbus: sc-error: "Message too short or not finished"
5371162-5371477 modbus: cs-error: "Message too short or not finished"
5373512-5374346 modbus: sc-server-id: "Slave ID: 1"
5373512-5374346 modbus: cs-server-id: "Slave ID: 1"
5374554-5375388 modbus: sc-function: "Function 3: Read Holding Registers"
5374554-5375388 modbus: cs-function: "Function 3: Read Holding Registers"
5375595-5376429 modbus: sc-length: "Byte count: 4"
5375595-5377471 modbus: cs-address: "Start at address 0x420 / 31057"
5376637-5378512 modbus: sc-data: "0x20A9 / 8361"
5377678-5379554 modbus: cs-length: "Read 43334 units of data"
5378720-5380595 modbus: sc-data: "0x46AD / 18093"
5379761-5381636 modbus: cs-error: "CRC should be 186 146"
5380802-5382678 modbus: sc-crc: "CRC correct"
5381844-5382678 modbus: cs-error: "Unknown function"
5383008-5383842 modbus: sc-server-id: "Slave ID {} is invalid"
5383008-5383842 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5383842-5384157 modbus: sc-error: "Message too short or not finished"
5383842-5384157 modbus: cs-error: "Message too short or not finished"
5386899-5387733 modbus: sc-server-id: "Slave ID: 1"
5386899-5387733 modbus: cs-server-id: "Slave ID: 1"
5387939-5388773 modbus: sc-function: "Function 3: Read Holding Registers"
5387939-5388773 modbus: cs-function: "Function 3: Read Holding Registers"
5388978-5389812 modbus: sc-error: "Error: Odd byte count (3)"
5388978-5390852 modbus: cs-address: "Start at address 0x3FE / 31023"
5390018-5391891 modbus: sc-data: "0xFE00 / 65024"
5391057-5392932 modbus: cs-length: "Read 2 units of data"
5393137-5395010 modbus: cs-crc: "CRC correct"
5395236-5396070 modbus: sc-server-id: "Slave ID {} is invalid"
5395236-5396070 modbus: cs-server-id: "Broadcast message"
5396070-5396385 modbus: sc-error: "Message too short or not finished"
5396070-5396385 modbus: cs-error: "Message too short or not finished"
5398414-5399248 modbus: sc-server-id: "Slave ID: 1"
5398414-5399248 modbus: cs-server-id: "Slave ID: 1"
5399456-5400290 modbus: sc-function: "Function 3: Read Holding Registers"
5399456-5400290 modbus: cs-function: "Function 3: Read Holding Registers"
5400497-5401331 modbus: sc-length: "Byte count: 4"
5400497-5402373 modbus: cs-address: "Start at address 0x4F7 / 31272"
5401539-5403414 modbus: sc-data: "0xF754 / 63316"
5402580-5404455 modbus: cs-length: "Read 21575 units of data"
5403621-5405497 modbus: sc-data: "0x4701 / 18177"
5404663-5406538 modbus: cs-error: "CRC should be 139 250"
5405704-5407580 modbus: sc-crc: "CRC correct"
5406746-5407580 modbus: cs-error: "Unknown function"
5407916-5408750 modbus: sc-server-id: "Slave ID {} is invalid"
5407916-5408750 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5408750-5409065 modbus: sc-error: "Message too short or not finished"
5408750-5409065 modbus: cs-error: "Message too short or not finished"
5411788-5412622 modbus: sc-server-id: "Slave ID: 1"
5411788-5412622 modbus: cs-server-id: "Slave ID: 1"
5412828-5413662 modbus: sc-function: "Function 3: Read Holding Registers"
5412828-5413662 modbus: cs-function: "Function 3: Read Holding Registers"
5413868-5414702 modbus: sc-length: "Byte count: 4"
5413868-5415741 modbus: cs-address: "Start at address 0x400 / 31025"
5414907-5416782 modbus: sc-data: "0x0000 / 0"
5415948-5417821 modbus: cs-length: "Read 2 units of data"
5416987-5418861 modbus: sc-data: "0x02C5 / 709"
5418027-5419901 modbus: cs-crc: "CRC correct"
5418861-5420216 modbus: sc-error: "Message too short or not finished"
5420126-5420960 modbus: sc-server-id: "Slave ID {} is invalid"
5420126-5420960 modbus: cs-server-id: "Broadcast message"
5420960-5421275 modbus: sc-error: "Message too short or not finished"
5420960-5421275 modbus: cs-error: "Message too short or not finished"
5423287-5424121 modbus: sc-server-id: "Slave ID: 1"
5423287-5424121 modbus: cs-server-id: "Slave ID: 1"
5424329-5425163 modbus: sc-function: "Function 3: Read Holding Registers"
5424329-5425163 modbus: cs-function: "Function 3: Read Holding Registers"
5425370-5426204 modbus: sc-length: "Byte count: 4"
5425370-5427246 modbus: cs-address: "Start at address 0x45E / 31119"
5426412-5428287 modbus: sc-data: "0x5E54 / 24148"
5427453-5429329 modbus: cs-length: "Read 21575 units of data"
5428495-5430370 modbus: sc-data: "0x472D / 18221"
5429536-5431412 modbus: cs-error: "CRC should be 91 218"
5430578-5432453 modbus: sc-crc: "CRC correct"
5431619-5432453 modbus: cs-error: "Unknown function"
5432782-5433616 modbus: sc-server-id: "Slave ID {} is invalid"
5432782-5433616 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5433616-5433931 modbus: sc-error: "Message too short or not finished"
5433616-5433931 modbus: cs-error: "Message too short or not finished"
5436661-5437495 modbus: sc-server-id: "Slave ID: 1"
5436661-5437495 modbus: cs-server-id: "Slave ID: 1"
5437701-5438535 modbus: sc-function: "Function 3: Read Holding Registers"
5437701-5438535 modbus: cs-function: "Function 3: Read Holding Registers"
5438740-5439574 modbus: sc-length: "Byte count: 4"
5438740-5440615 modbus: cs-address: "Start at address 0x405 / 31030"
5439781-5441653 modbus: sc-data: "0x0500 / 1280"
5440819-5442693 modbus: cs-length: "Read 1 units of data"
5441859-5443733 modbus: sc-data: "0x0195 / 405"
5442899-5444773 modbus: cs-crc: "CRC correct"
5443733-5445088 modbus: sc-error: "Message too short or not finished"
5444998-5445832 modbus: sc-server-id: "Slave ID {} is invalid"
5444998-5445832 modbus: cs-server-id: "Broadcast message"
5445832-5446147 modbus: sc-error: "Message too short or not finished"
5445832-5446147 modbus: cs-error: "Message too short or not finished"
5447973-5448807 modbus: sc-server-id: "Slave ID: 1"
5447973-5448807 modbus: cs-server-id: "Slave ID: 1"
5449014-5449848 modbus: sc-function: "Function 3: Read Holding Registers"
5449014-5449848 modbus: cs-function: "Function 3: Read Holding Registers"
5450056-5450890 modbus: sc-length: "Byte count: 2"
5450056-5451931 modbus: cs-address: "Start at address 0x200 / 30513"
5451097-5452973 modbus: sc-data: "0x0000 / 0"
5452139-5454014 modbus: cs-length: "Read 184 units of data"
5453180-5455056 modbus: sc-crc: "CRC correct"
5454014-5455371 modbus: cs-error: "Message too short or not finished"
5455387-5456221 modbus: sc-server-id: "Slave ID {} is invalid"
5455387-5456221 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5456221-5456536 modbus: sc-error: "Message too short or not finished"
5456221-5456536 modbus: cs-error: "Message too short or not finished"
5459256-5460090 modbus: sc-server-id: "Slave ID: 1"
5459256-5460090 modbus: cs-server-id: "Slave ID: 1"
5460296-5461130 modbus: sc-function: "Function 6: Write Single Register"
5460296-5461130 modbus: cs-function: "Function 6: Write Single Register"
5461335-5463210 modbus: sc-address: "Address 0x404 / 31028"
5461335-5463210 modbus: cs-address: "Address 0x404 / 31028"
5463415-5465289 modbus: sc-data: "Register Value 0x1 / 1"
5463415-5465289 modbus: cs-data: "Register Value 0x1 / 1"
5465494-5467369 modbus: sc-crc: "CRC correct"
5465494-5467369 modbus: cs-crc: "CRC correct"
5467594-5468428 modbus: sc-server-id: "Slave ID {} is invalid"
5467594-5468428 modbus: cs-server-id: "Broadcast message"
5468428-5468743 modbus: sc-error: "Message too short or not finished"
5468428-5468743 modbus: cs-error: "Message too short or not finished"
5470750-5471584 modbus: sc-server-id: "Slave ID: 1"
5470750-5471584 modbus: cs-server-id: "Slave ID: 1"
5471791-5472625 modbus: sc-function: "Function 6: Write Single Register"
5471791-5472625 modbus: cs-function: "Function 6: Write Single Register"
5472832-5474708 modbus: sc-address: "Address 0x404 / 31028"
5472832-5474708 modbus: cs-address: "Address 0x404 / 31028"
5474915-5476791 modbus: sc-data: "Register Value 0x1 / 1"
5474915-5476791 modbus: cs-data: "Register Value 0x1 / 1"
5476998-5478874 modbus: sc-crc: "CRC correct"
5476998-5478874 modbus: cs-crc: "CRC correct"
5479204-5480038 modbus: sc-server-id: "Slave ID {} is invalid"
5479204-5480038 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5480038-5480353 modbus: sc-error: "Message too short or not finished"
5480038-5480353 modbus: cs-error: "Message too short or not finished"
5483061-5483895 modbus: sc-server-id: "Slave ID: 1"
5483061-5483895 modbus: cs-server-id: "Slave ID: 1"
5484100-5484934 modbus: sc-function: "Function 6: Write Single Register"
5484100-5484934 modbus: cs-function: "Function 6: Write Single Register"
5485140-5487014 modbus: sc-address: "Address 0x405 / 31029"
5485140-5487014 modbus: cs-address: "Address 0x405 / 31029"
5487219-5489093 modbus: sc-data: "Register Value 0x0 / 0"
5487219-5489093 modbus: cs-data: "Register Value 0x0 / 0"
5489299-5491173 modbus: sc-crc: "CRC correct"
5489299-5491173 modbus: cs-crc: "CRC correct"
5491398-5492232 modbus: sc-server-id: "Slave ID {} is invalid"
5491398-5492232 modbus: cs-server-id: "Broadcast message"
5492232-5492547 modbus: sc-error: "Message too short or not finished"
5492232-5492547 modbus: cs-error: "Message too short or not finished"
5494511-5495345 modbus: sc-server-id: "Slave ID: 1"
5494511-5495345 modbus: cs-server-id: "Slave ID: 1"
5495552-5496386 modbus: sc-function: "Function 6: Write Single Register"
5495552-5496386 modbus: cs-function: "Function 6: Write Single Register"
5496594-5498469 modbus: sc-address: "Address 0x405 / 31029"
5496594-5498469 modbus: cs-address: "Address 0x405 / 31029"
5498677-5500552 modbus: sc-data: "Register Value 0x0 / 0"
5498677-5500552 modbus: cs-data: "Register Value 0x0 / 0"
5500760-5502635 modbus: sc-crc: "CRC correct"
5500760-5502635 modbus: cs-crc: "CRC correct"
5502965-5503799 modbus: sc-server-id: "Slave ID {} is invalid"
5502965-5503799 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5503799-5504114 modbus: sc-error: "Message too short or not finished"
5503799-5504114 modbus: cs-error: "Message too short or not finished"
5506803-5507637 modbus: sc-server-id: "Slave ID: 1"
5506803-5507637 modbus: cs-server-id: "Slave ID: 1"
5507844-5508678 modbus: sc-function: "Function 3: Read Holding Registers"
5507844-5508678 modbus: cs-function: "Function 3: Read Holding Registers"
5508882-5509716 modbus: sc-length: "Byte count: 4"
5508882-5510757 modbus: cs-address: "Start at address 0x406 / 31031"
5509923-5511796 modbus: sc-data: "0x0600 / 1536"
5510962-5512836 modbus: cs-length: "Read 1 units of data"
5512002-5513876 modbus: sc-data: "0x0165 / 357"
5513042-5514916 modbus: cs-crc: "CRC correct"
5513876-5515231 modbus: sc-error: "Message too short or not finished"
5515141-5515975 modbus: sc-server-id: "Slave ID {} is invalid"
5515141-5515975 modbus: cs-server-id: "Broadcast message"
5515975-5516290 modbus: sc-error: "Message too short or not finished"
5515975-5516290 modbus: cs-error: "Message too short or not finished"
5518335-5519169 modbus: sc-server-id: "Slave ID: 1"
5518335-5519169 modbus: cs-server-id: "Slave ID: 1"
5519376-5520210 modbus: sc-function: "Function 3: Read Holding Registers"
5519376-5520210 modbus: cs-function: "Function 3: Read Holding Registers"
5520418-5521252 modbus: sc-length: "Byte count: 2"
5520418-5522293 modbus: cs-address: "Start at address 0x200 / 30513"
5521459-5523335 modbus: sc-data: "0x0030 / 48"
5522501-5524376 modbus: cs-length: "Read 12472 units of data"
5523542-5525418 modbus: sc-crc: "CRC correct"
5524376-5525733 modbus: cs-error: "Message too short or not finished"
5525749-5526583 modbus: sc-server-id: "Slave ID {} is invalid"
5525749-5526583 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5526583-5526898 modbus: sc-error: "Message too short or not finished"
5526583-5526898 modbus: cs-error: "Message too short or not finished"
5529576-5530410 modbus: sc-server-id: "Slave ID: 1"
5529576-5530410 modbus: cs-server-id: "Slave ID: 1"
5530617-5531451 modbus: sc-function: "Function 3: Read Holding Registers"
5530617-5531451 modbus: cs-function: "Function 3: Read Holding Registers"
5531656-5532490 modbus: sc-length: "Byte count: 4"
5531656-5533531 modbus: cs-address: "Start at address 0x407 / 31032"
5532697-5534570 modbus: sc-data: "0x0700 / 1792"
5533736-5535610 modbus: cs-length: "Read 1 units of data"
5534776-5536649 modbus: sc-data: "0x0134 / 308"
5535815-5537689 modbus: cs-crc: "CRC correct"
5536649-5538004 modbus: sc-error: "Message too short or not finished"
5537916-5538750 modbus: sc-server-id: "Slave ID {} is invalid"
5537916-5538750 modbus: cs-server-id: "Broadcast message"
5538750-5539065 modbus: sc-error: "Message too short or not finished"
5538750-5539065 modbus: cs-error: "Message too short or not finished"
5541076-5541910 modbus: sc-server-id: "Slave ID: 1"
5541076-5541910 modbus: cs-server-id: "Slave ID: 1"
5542118-5542952 modbus: sc-function: "Function 3: Read Holding Registers"
5542118-5542952 modbus: cs-function: "Function 3: Read Holding Registers"
5543159-5543993 modbus: sc-length: "Byte count: 2"
5543159-5545035 modbus: cs-address: "Start at address 0x200 / 30513"
5544201-5546076 modbus: sc-data: "0x0000 / 0"
5545242-5547118 modbus: cs-length: "Read 184 units of data"
5546284-5548159 modbus: sc-crc: "CRC correct"
5547118-5548474 modbus: cs-error: "Message too short or not finished"
5548490-5549324 modbus: sc-server-id: "Slave ID {} is invalid"
5548490-5549324 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5549324-5549639 modbus: sc-error: "Message too short or not finished"
5549324-5549639 modbus: cs-error: "Message too short or not finished"
5552321-5553155 modbus: sc-server-id: "Slave ID: 1"
5552321-5553155 modbus: cs-server-id: "Slave ID: 1"
5553360-5554194 modbus: sc-function: "Function 3: Read Holding Registers"
5553360-5554194 modbus: cs-function: "Function 3: Read Holding Registers"
5554400-5555234 modbus: sc-length: "Byte count: 4"
5554400-5556274 modbus: cs-address: "Start at address 0x408 / 31033"
5555440-5557314 modbus: sc-data: "0x0800 / 2048"
5556480-5558354 modbus: cs-length: "Read 1 units of data"
5557520-5559393 modbus: sc-data: "0x0104 / 260"
5558559-5560433 modbus: cs-crc: "CRC correct"
5559393-5560748 modbus: sc-error: "Message too short or not finished"
5560659-5561493 modbus: sc-server-id: "Slave ID {} is invalid"
5560659-5561493 modbus: cs-server-id: "Broadcast message"
5561493-5561808 modbus: sc-error: "Message too short or not finished"
5561493-5561808 modbus: cs-error: "Message too short or not finished"
5563361-5564195 modbus: sc-server-id: "Slave ID: 1"
5563361-5564195 modbus: cs-server-id: "Slave ID: 1"
5564403-5565237 modbus: sc-function: "Function 3: Read Holding Registers"
5564403-5565237 modbus: cs-function: "Function 3: Read Holding Registers"
5565444-5566278 modbus: sc-length: "Byte count: 2"
5565444-5567320 modbus: cs-address: "Start at address 0x200 / 30513"
5566486-5568361 modbus: sc-data: "0x0000 / 0"
5567527-5569403 modbus: cs-length: "Read 184 units of data"
5568569-5570444 modbus: sc-crc: "CRC correct"
5569403-5570759 modbus: cs-error: "Message too short or not finished"
5570774-5571608 modbus: sc-server-id: "Slave ID {} is invalid"
5570774-5571608 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5571608-5571923 modbus: sc-error: "Message too short or not finished"
5571608-5571923 modbus: cs-error: "Message too short or not finished"
5574616-5575450 modbus: sc-server-id: "Slave ID: 1"
5574616-5575450 modbus: cs-server-id: "Slave ID: 1"
5575655-5576489 modbus: sc-function: "Function 3: Read Holding Registers"
5575655-5576489 modbus: cs-function: "Function 3: Read Holding Registers"
5576695-5577529 modbus: sc-length: "Byte count: 4"
5576695-5578570 modbus: cs-address: "Start at address 0x402 / 31027"
5577736-5579609 modbus: sc-data: "0x0200 / 512"
5578775-5580649 modbus: cs-length: "Read 1 units of data"
5579815-5581688 modbus: sc-data: "0x0124 / 292"
5580854-5582729 modbus: cs-crc: "CRC correct"
5581688-5583044 modbus: sc-error: "Message too short or not finished"
5582954-5583788 modbus: sc-server-id: "Slave ID {} is invalid"
5582954-5583788 modbus: cs-server-id: "Broadcast message"
5583788-5584103 modbus: sc-error: "Message too short or not finished"
5583788-5584103 modbus: cs-error: "Message too short or not finished"
5586101-5586935 modbus: sc-server-id: "Slave ID: 1"
5586101-5586935 modbus: cs-server-id: "Slave ID: 1"
5587143-5587977 modbus: sc-function: "Function 3: Read Holding Registers"
5587143-5587977 modbus: cs-function: "Function 3: Read Holding Registers"
5588184-5589018 modbus: sc-length: "Byte count: 2"
5588184-5590060 modbus: cs-address: "Start at address 0x200 / 30513"
5589226-5591101 modbus: sc-data: "0x0002 / 2"
5590267-5592143 modbus: cs-length: "Read 569 units of data"
5591309-5593184 modbus: sc-crc: "CRC correct"
5592143-5593499 modbus: cs-error: "Message too short or not finished"
5593514-5594348 modbus: sc-server-id: "Slave ID {} is invalid"
5593514-5594348 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5594348-5594663 modbus: sc-error: "Message too short or not finished"
5594348-5594663 modbus: cs-error: "Message too short or not finished"
5597352-5598186 modbus: sc-server-id: "Slave ID: 1"
5597352-5598186 modbus: cs-server-id: "Slave ID: 1"
5598393-5599227 modbus: sc-function: "Function 3: Read Holding Registers"
5598393-5599227 modbus: cs-function: "Function 3: Read Holding Registers"
5599431-5600265 modbus: sc-length: "Byte count: 4"
5599431-5601306 modbus: cs-address: "Start at address 0x403 / 31028"
5600472-5602345 modbus: sc-data: "0x0300 / 768"
5601511-5603385 modbus: cs-length: "Read 1 units of data"
5602551-5604425 modbus: sc-data: "0x0175 / 373"
5603591-5605464 modbus: cs-crc: "CRC correct"
5604425-5605779 modbus: sc-error: "Message too short or not finished"
5605690-5606524 modbus: sc-server-id: "Slave ID {} is invalid"
5605690-5606524 modbus: cs-server-id: "Broadcast message"
5606524-5606839 modbus: sc-error: "Message too short or not finished"
5606524-5606839 modbus: cs-error: "Message too short or not finished"
5608385-5609219 modbus: sc-server-id: "Slave ID: 1"
5608385-5609219 modbus: cs-server-id: "Slave ID: 1"
5609427-5610261 modbus: sc-function: "Function 3: Read Holding Registers"
5609427-5610261 modbus: cs-function: "Function 3: Read Holding Registers"
5610468-5611302 modbus: sc-length: "Byte count: 2"
5610468-5612344 modbus: cs-address: "Start at address 0x200 / 30513"
5611510-5613385 modbus: sc-data: "0x0001 / 1"
5612551-5614427 modbus: cs-length: "Read 377 units of data"
5613593-5615468 modbus: sc-crc: "CRC correct"
5614427-5615783 modbus: cs-error: "Message too short or not finished"
5615798-5616632 modbus: sc-server-id: "Slave ID {} is invalid"
5615798-5616632 modbus: cs-server-id: "Slave ID: 254 (reserved address)"
5616632-5616947 modbus: sc-error: "Message too short or not finished"
5616632-5616947 modbus: cs-error: "Message too short or not finished"
5619637-5620471 modbus: sc-server-id: "Slave ID: 1"
5619637-5620471 modbus: cs-server-id: "Slave ID: 1"
5620677-5621511 modbus: sc-function: "Function 3: Read Holding Registers"
5620677-5621511 modbus: cs-function: "Function 3: Read Holding Registers"
5621716-5622550 modbus: sc-length: "Byte count: 4"
5621716-5623591 modbus: cs-address: "Start at address 0x404 / 31029"
5622757-5624630 modbus: sc-data: "0x0400 / 1024"
5623796-5625669 modbus: cs-length: "Read 1 units of data"
5624835-5626709 modbus: sc-data: "0x01C4 / 452"
5625875-5627749 modbus: cs-crc: "CRC correct"
5626709-5628064 modbus: sc-error: "Message too short or not finished"
5627975-5628809 modbus: sc-server-id: "Slave ID {} is invalid"
5627975-5628809 modbus: cs-server-id: "Broadcast message"
5628809-5629124 modbus: sc-error: "Message too short or not finished"
5628809-5629124 modbus: cs-error: "Message too short or not finished"
5631137-5631971 modbus: sc-server-id: "Slave ID: 1"
5631137-5631971 modbus: cs-server-id: "Slave ID: 1"
5632179-5633013 modbus: sc-function: "Function 3: Read Holding Registers"
5632179-5633013 modbus: cs-function: "Function 3: Read Holding Registers"
5633220-5634054 modbus: sc-length: "Byte count: 2"
5633220-5635096 modbus: cs-address: "Start at address 0x200 / 30513"
5634262-5636137 modbus: sc-data: "0x0001 / 1"
5635303-5637179 modbus: cs-length: "Read 377 units of data"
5636345-5638220 modbus: sc-crc: "CRC correct"
5637179-5638535 modbus: cs-error: "Message too short or not finished"
5638549-5639383 modbus: sc-server-id: "Slave ID {} is invalid"
5638549-5639383 modbus: cs-server-id: "Broadcast message"