-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog_serial.txt
5990 lines (5990 loc) · 557 KB
/
log_serial.txt
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
2024-12-04 19:34:26 - [0m
2024-12-04 19:34:26 - [0;32mI (47976) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (47984) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:26 - [0;32mI (47988) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:26 - [0;32mI (47995) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48003) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:26 - [0;32mI (48013) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=9E6100FEECE1B3610010490016210460][cmd_sent=02][0m
2024-12-04 19:34:26 - [0;32mI (48023) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:26 - [0;32mI (48029) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:26 - [0;32mI (48035) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:26 - [0;32mI (48043) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:26 - [0;32mI (48046) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48054) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:26 - [0;32mI (48059) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:26 - [0;32mI (48065) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48074) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:26 - [0;32mI (48077) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:26 - [0;32mI (48084) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48092) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:26 - [0;32mI (48096) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:26 - [0;32mI (48104) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48111) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:26 - [0;32mI (48115) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:26 - [0;32mI (48121) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48129) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:26 - [0;32mI (48134) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:26 - [0;32mI (48140) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48148) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:26 - [0;32mI (48152) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:26 - [0;32mI (48159) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48167) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:26 - [0;32mI (48177) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=B3152028AEF14DBF0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:26 - [0;32mI (48187) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:26 - [0;32mI (48194) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:26 - [0;32mI (48200) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:26 - 045,13,A509F2D0
2024-12-04 19:34:26 - UHF1,0000,371262560,-044,13,CB6BBEDF
2024-12-04 19:34:26 - UHF1,0000,371262560,-045,13,A509F2D0
2024-12-04 19:34:26 - HTB0,0000,38,645CB8D1
2024-12-04 19:34:26 - UHF1,0[0;32mI (48217) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:26 - [0;32mI (48221) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48230) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:26 - [0;32mI (48233) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:26 - [0;32mI (48240) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48248) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:26 - [0;32mI (48252) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:26 - [0;32mI (48258) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48267) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:26 - [0;32mI (48271) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:26 - [0;32mI (48277) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48285) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:26 - [0;32mI (48290) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:26 - [0;32mI (48296) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48304) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:26 - [0;32mI (48308) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:26 - [0;32mI (48315) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48323) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:26 - [0;32mI (48327) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:26 - [0;32mI (48334) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48342) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:26 - [0;32mI (48352) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=329DB6421F619A500010490016210460][cmd_sent=02][0m
2024-12-04 19:34:26 - [0;32mI (48362) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:26 - [0;32mI (48368) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:26 - [0;32mI (48374) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:26 - [0;32mI (48382) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:26 - [0;32mI (48386) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48394) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:26 - [0;32mI (48398) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:26 - [0;32mI (48404) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48413) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:26 - [0;32mI (48417) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:26 - [0;32mI (48423) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48431) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:26 - [0;32mI (48435) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:26 - [0;32mI (48442) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48450) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:26 - [0;32mI (48454) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:26 - [0;32mI (48461) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48469) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:26 - [0;32mI (48473) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:26 - [0;32mI (48479) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:26 - [0;32mI (48488) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:26 - [0;32mI (48489) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:26 - [0;32mI (48498) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:27 - [0;32mI (48504) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:27 - [0;32mI (48509) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:27 - [0;31mE (48515) [app_uart_eth]: [task_uart_eth][UART_BUFFER_FULL][0m
2024-12-04 19:34:27 - [0;32mI (48522) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:27 - [0;32mI (48528) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;31mE (48532) [app_uart_eth]: [task_uart_eth][UART_BUFFER_FULL][0m
2024-12-04 19:34:27 - [0;32mI (48542) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:27 - [0;32mI (48548) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:27 - [0;32mI (48554) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:27 - [0;32mI (48564) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=0B2D68B1B5322BE20010490016210460][cmd_sent=02][0m
2024-12-04 19:34:27 - [0;32mI (48574) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:27 - [0;32mI (48580) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:27 - [0;32mI (48587) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:27 - [0;32mI (48594) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:27 - [0;32mI (48598) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48606) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:27 - [0;32mI (48610) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:27 - [0;32mI (48616) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48625) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:27 - [0;32mI (48629) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:27 - [0;32mI (48636) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48643) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:27 - [0;32mI (48647) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:27 - [0;32mI (48654) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48662) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:27 - [0;32mI (48666) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:27 - [0;32mI (48673) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48681) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:27 - [0;32mI (48685) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:27 - [0;32mI (48692) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48700) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:27 - [0;32mI (48704) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:27 - [0;32mI (48711) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48719) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:27 - [0;32mI (48729) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=5EDAB972CD972D180010490016210460][cmd_sent=02][0m
2024-12-04 19:34:27 - [0;32mI (48739) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:27 - [0;32mI (48744) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:27 - [0;32mI (48751) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:27 - 000,371262560,-044,9,A4DFBB03
2024-12-04 19:34:27 - UHF1,0000,371262560,-044,9,A4DFBB03
2024-12-04 19:34:27 - UHF1,0000,371262560,-045,9,252590A7
2024-12-04 19:34:27 - UHF1,0000,371262[0;32mI (48769) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:27 - [0;32mI (48772) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48781) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:27 - [0;32mI (48785) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:27 - [0;32mI (48791) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48800) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:27 - [0;32mI (48803) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:27 - [0;32mI (48810) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48818) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:27 - [0;32mI (48822) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:27 - [0;32mI (48830) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48837) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:27 - [0;32mI (48841) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:27 - [0;32mI (48848) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48856) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:27 - [0;32mI (48860) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:27 - [0;32mI (48866) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48875) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:27 - [0;32mI (48880) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:27 - [0;32mI (48885) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48893) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:27 - [0;32mI (48904) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=C006FDCFACA2179D0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:27 - [0;32mI (48913) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:27 - [0;32mI (48920) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:27 - [0;32mI (48926) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:27 - [0;32mI (48934) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:27 - [0;32mI (48937) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48945) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:27 - [0;32mI (48949) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:27 - [0;32mI (48956) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48965) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:27 - [0;32mI (48968) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:27 - [0;32mI (48975) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (48983) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:27 - [0;32mI (48987) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:27 - [0;32mI (48993) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49001) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:27 - [0;32mI (49006) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:27 - [0;32mI (49012) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49020) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:27 - [0;32mI (49025) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:27 - [0;32mI (49031) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49039) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:27 - [0;32mI (49043) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:27 - [0;32mI (49050) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49058) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:27 - [0;32mI (49068) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=7D1517075D721D440010490016210460][cmd_sent=02][0m
2024-12-04 19:34:27 - [0;32mI (49078) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:27 - [0;32mI (49085) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:27 - [0;32mI (49090) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:27 - 560,-044,5,BE19B3D5
2024-12-04 19:34:27 - UHF1,0000,371262560,-046,24,25BD21BF
2024-12-04 19:34:27 - UHF1,0000,371262560,-045,24,B20CA025
2024-12-04 19:34:27 - UHF1,0000,371262560,-045[0;32mI (49107) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:27 - [0;32mI (49112) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49120) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:27 - [0;32mI (49124) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:27 - [0;32mI (49130) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49139) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:27 - [0;32mI (49143) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:27 - [0;32mI (49149) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49158) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:27 - [0;32mI (49161) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:27 - [0;32mI (49168) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49176) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:27 - [0;32mI (49180) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:27 - [0;32mI (49188) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49195) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:27 - [0;32mI (49199) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:27 - [0;32mI (49206) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49214) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:27 - [0;32mI (49218) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:27 - [0;32mI (49225) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49233) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:27 - [0;32mI (49243) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=B55F9E4BAE10C7400010490016210460][cmd_sent=02][0m
2024-12-04 19:34:27 - [0;32mI (49253) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:27 - [0;32mI (49258) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:27 - [0;32mI (49265) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:27 - [0;32mI (49273) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:27 - [0;32mI (49276) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49285) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:27 - [0;32mI (49289) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:27 - [0;32mI (49295) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49303) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:27 - [0;32mI (49307) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:27 - [0;32mI (49315) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49322) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:27 - [0;32mI (49326) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:27 - [0;32mI (49333) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49341) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:27 - [0;32mI (49345) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:27 - [0;32mI (49351) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49359) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:27 - [0;32mI (49363) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:27 - [0;32mI (49370) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49378) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:27 - [0;32mI (49382) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:27 - [0;32mI (49389) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49397) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:27 - [0;32mI (49407) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=7E0704F66362D27C0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:27 - [0;32mI (49417) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:27 - [0;32mI (49423) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:27 - [0;32mI (49430) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:27 - [0;32mI (49438) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:27 - [0;32mI (49441) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49449) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:27 - [0;32mI (49453) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:27 - [0;32mI (49459) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49468) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:27 - [0;32mI (49472) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:27 - [0;32mI (49479) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:27 - [0;32mI (49486) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:28 - [0;32mI (49490) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (49497) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49505) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:28 - [0;32mI (49509) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:28 - [0;32mI (49516) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49524) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:28 - [0;32mI (49529) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:28 - [0;32mI (49535) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49543) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:28 - [0;32mI (49547) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:28 - [0;32mI (49554) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49562) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (49572) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=F1FD89C403755D460010490016210460][cmd_sent=02][0m
2024-12-04 19:34:28 - [0;32mI (49582) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:28 - [0;32mI (49587) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:28 - [0;32mI (49594) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:28 - ,23,F6BFC946
2024-12-04 19:34:28 - HTB0,0000,39,215E0B91
2024-12-04 19:34:28 - UHF1,0000,371262560,-045,23,F6BFC946
2024-12-04 19:34:28 - UHF1,0000,371262560,-044,7,42DBB30B
2024-12-04 19:34:28 - UHF1,0000,[0;32mI (49612) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:28 - [0;32mI (49615) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49624) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:28 - [0;32mI (49628) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:28 - [0;32mI (49634) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49643) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:28 - [0;32mI (49646) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:28 - [0;32mI (49653) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49661) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:28 - [0;32mI (49665) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (49673) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49680) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:28 - [0;32mI (49684) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:28 - [0;32mI (49690) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49699) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:28 - [0;32mI (49703) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:28 - [0;32mI (49709) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49718) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:28 - [0;32mI (49723) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:28 - [0;32mI (49728) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49736) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (49746) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=7B5808DE3E83E37E0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:28 - [0;32mI (49756) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:28 - [0;32mI (49763) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:28 - [0;32mI (49769) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:28 - [0;32mI (49777) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:28 - [0;32mI (49780) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49788) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:28 - [0;32mI (49792) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:28 - [0;32mI (49799) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49808) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:28 - [0;32mI (49811) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:28 - [0;32mI (49818) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49825) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:28 - [0;32mI (49830) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (49836) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49844) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:28 - [0;32mI (49849) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:28 - [0;32mI (49855) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49863) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:28 - [0;32mI (49867) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:28 - [0;32mI (49874) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49882) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:28 - [0;32mI (49886) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:28 - [0;32mI (49893) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49901) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (49911) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=68D0730A0091204B0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:28 - [0;32mI (49912) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:28 - [0;32mI (49927) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:28 - [0;32mI (49933) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:28 - [0;32mI (49938) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:28 - [0;32mI (49944) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:28 - [0;32mI (49950) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:28 - [0;32mI (49955) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:28 - [0;32mI (49963) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:28 - [0;32mI (49969) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:28 - [0;31mE (49971) [app_uart_eth]: [task_uart_eth][UART_BUFFER_FULL][0m
2024-12-04 19:34:28 - [0;32mI (49983) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:28 - [0;32mI (49986) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (49994) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:28 - [0;32mI (49998) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:28 - [0;32mI (50005) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50014) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:28 - [0;32mI (50017) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:28 - [0;32mI (50024) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50032) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:28 - [0;32mI (50036) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (50042) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50051) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:28 - [0;32mI (50055) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:28 - [0;32mI (50061) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50069) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:28 - [0;32mI (50074) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:28 - [0;32mI (50080) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50088) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:28 - [0;32mI (50092) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:28 - [0;32mI (50099) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50107) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (50117) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=7A48B36BA46B0F590010490016210460][cmd_sent=02][0m
2024-12-04 19:34:28 - [0;32mI (50127) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:28 - [0;32mI (50134) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:28 - [0;32mI (50139) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:28 - [0;32mI (50147) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:28 - [0;32mI (50151) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50159) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:28 - [0;32mI (50163) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:28 - [0;32mI (50169) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50178) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:28 - [0;32mI (50182) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:28 - [0;32mI (50188) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50196) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:28 - [0;32mI (50200) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (50208) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50215) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:28 - [0;32mI (50219) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:28 - [0;32mI (50226) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50234) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:28 - [0;32mI (50238) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:28 - [0;32mI (50244) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50253) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:28 - [0;32mI (50258) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:28 - [0;32mI (50263) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50271) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (50282) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=7623AF7740A6A8D80010490016210460][cmd_sent=02][0m
2024-12-04 19:34:28 - [0;32mI (50291) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:28 - [0;32mI (50298) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:28 - [0;32mI (50304) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:28 - 371262560,-044,7,42DBB30B
2024-12-04 19:34:28 - UHF1,0000,371262560,-044,7,42DBB30B
2024-12-04 19:34:28 - UHF1,0000,371262560,-046,28,10DE2907
2024-12-04 19:34:28 - HTB0,0000,40,2A935C[0;32mI (50322) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:28 - [0;32mI (50325) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50333) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:28 - [0;32mI (50338) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:28 - [0;32mI (50344) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50353) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:28 - [0;32mI (50356) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:28 - [0;32mI (50363) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50371) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:28 - [0;32mI (50375) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (50383) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50390) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:28 - [0;32mI (50394) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:28 - [0;32mI (50400) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50408) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:28 - [0;32mI (50413) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:28 - [0;32mI (50419) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50427) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:28 - [0;32mI (50431) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:28 - [0;32mI (50438) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50446) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:28 - [0;32mI (50456) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=134E85BD8D93F7810010490016210460][cmd_sent=02][0m
2024-12-04 19:34:28 - [0;32mI (50466) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:28 - [0;32mI (50473) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:28 - [0;32mI (50479) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:28 - [0;32mI (50487) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:28 - [0;32mI (50490) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:28 - [0;32mI (50498) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:29 - [0;32mI (50502) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:29 - [0;32mI (50508) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50517) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:29 - [0;32mI (50521) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:29 - [0;32mI (50528) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50535) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:29 - [0;32mI (50539) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (50546) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50554) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:29 - [0;32mI (50558) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:29 - [0;32mI (50565) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50573) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:29 - [0;32mI (50578) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:29 - [0;32mI (50584) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50592) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:29 - [0;32mI (50596) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:29 - [0;32mI (50603) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50611) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (50621) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=748668658E3B4A660010490016210460][cmd_sent=02][0m
2024-12-04 19:34:29 - [0;32mI (50631) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:29 - [0;32mI (50636) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:29 - [0;32mI (50643) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:29 - 6B
2024-12-04 19:34:29 - UHF1,0000,371262560,-045,32,032C2852
2024-12-04 19:34:29 - UHF1,0000,371262560,-046,32,C783FDDD
2024-12-04 19:34:29 - UHF1,0000,371262560,-045,25,809B5F17
2024-12-04 19:34:29 - UHF1[0;32mI (50661) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:29 - [0;32mI (50664) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50673) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:29 - [0;32mI (50677) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:29 - [0;32mI (50683) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50692) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:29 - [0;32mI (50695) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:29 - [0;32mI (50702) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50710) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:29 - [0;32mI (50714) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (50722) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50729) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:29 - [0;32mI (50733) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:29 - [0;32mI (50740) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50748) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:29 - [0;32mI (50752) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:29 - [0;32mI (50758) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50767) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:29 - [0;32mI (50771) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:29 - [0;32mI (50777) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50785) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (50796) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=A44AB4F76839DC8D0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:29 - [0;32mI (50805) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:29 - [0;32mI (50812) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:29 - [0;32mI (50818) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:29 - ,0000,371262560,-045,25,809B5F17
2024-12-04 19:34:29 - UHF1,0000,371262560,-045,25,809B5F17
2024-12-04 19:34:29 - UHF1,0000,371262560,-044,4,049F2B58
2024-12-04 19:34:29 - HTB0,0000,41[0;32mI (50835) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:29 - [0;32mI (50839) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50847) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:29 - [0;32mI (50852) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:29 - [0;32mI (50858) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50866) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:29 - [0;32mI (50870) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:29 - [0;32mI (50877) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50886) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:29 - [0;32mI (50889) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (50896) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50904) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:29 - [0;32mI (50908) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:29 - [0;32mI (50914) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50922) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:29 - [0;32mI (50926) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:29 - [0;32mI (50933) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50941) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:29 - [0;32mI (50946) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:29 - [0;32mI (50952) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (50960) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (50970) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=5618A2078063E2080010490016210460][cmd_sent=02][0m
2024-12-04 19:34:29 - [0;32mI (50980) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:29 - [0;32mI (50986) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:29 - [0;32mI (50993) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:29 - [0;32mI (51001) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:29 - [0;32mI (51004) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51012) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:29 - [0;32mI (51016) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:29 - [0;32mI (51022) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51031) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:29 - [0;32mI (51035) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:29 - [0;32mI (51042) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51049) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:29 - [0;32mI (51053) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (51060) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51068) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:29 - [0;32mI (51072) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:29 - [0;32mI (51079) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51087) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:29 - [0;32mI (51092) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:29 - [0;32mI (51098) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51106) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:29 - [0;32mI (51110) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:29 - [0;32mI (51117) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51125) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (51135) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=A3B7F13630AADB950010490016210460][cmd_sent=02][0m
2024-12-04 19:34:29 - [0;32mI (51145) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:29 - [0;32mI (51150) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:29 - [0;32mI (51157) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:29 - [0;32mI (51165) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:29 - [0;32mI (51168) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51176) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:29 - [0;32mI (51181) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:29 - [0;32mI (51187) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51196) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:29 - [0;32mI (51199) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:29 - [0;32mI (51206) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51214) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:29 - [0;32mI (51218) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (51226) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51233) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:29 - [0;32mI (51237) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:29 - [0;32mI (51243) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51251) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:29 - [0;32mI (51255) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:29 - [0;32mI (51262) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51270) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:29 - [0;32mI (51274) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:29 - [0;32mI (51281) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51289) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (51291) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:29 - [0;32mI (51305) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=89C8414DC56CB10C0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:29 - [0;32mI (51315) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:29 - [0;31mE (51317) [app_uart_eth]: [task_uart_eth][UART_BUFFER_FULL][0m
2024-12-04 19:34:29 - [0;32mI (51327) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:29 - [0;32mI (51333) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:29 - [0;32mI (51339) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:29 - [0;31mE (51342) [app_uart_eth]: [task_uart_eth][UART_BUFFER_FULL][0m
2024-12-04 19:34:29 - [0;32mI (51352) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:29 - [0;32mI (51360) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:29 - [0;32mI (51363) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51371) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:29 - [0;32mI (51375) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:29 - [0;32mI (51381) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51390) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:29 - [0;32mI (51394) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:29 - [0;32mI (51401) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51408) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:29 - [0;32mI (51412) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (51419) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51427) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:29 - [0;32mI (51431) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:29 - [0;32mI (51438) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51446) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:29 - [0;32mI (51451) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:29 - [0;32mI (51457) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51465) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:29 - [0;32mI (51469) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:29 - [0;32mI (51476) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:29 - [0;32mI (51484) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:29 - [0;32mI (51494) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=1818BC6230562F6D0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:29 - [0;32mI (51504) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:30 - [0;32mI (51509) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:30 - [0;32mI (51516) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:30 - [0;32mI (51524) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:30 - [0;32mI (51527) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51535) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:30 - [0;32mI (51540) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:30 - [0;32mI (51546) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51555) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:30 - [0;32mI (51558) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:30 - [0;32mI (51565) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51573) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:30 - [0;32mI (51577) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:30 - [0;32mI (51585) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51592) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:30 - [0;32mI (51596) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:30 - [0;32mI (51602) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51610) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:30 - [0;32mI (51615) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:30 - [0;32mI (51621) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51629) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:30 - [0;32mI (51633) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:30 - [0;32mI (51640) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51648) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:30 - [0;32mI (51658) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=B7FD2198883511A50010490016210460][cmd_sent=02][0m
2024-12-04 19:34:30 - [0;32mI (51668) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:30 - [0;32mI (51675) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:30 - [0;32mI (51681) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:30 - ,48DE4804
2024-12-04 19:34:30 - UHF1,0000,371262560,-044,4,049F2B58
2024-12-04 19:34:30 - UHF1,0000,371262560,-045,27,C20ADC95
2024-12-04 19:34:30 - UHF1,0000,371262560,-045,15,ADF05B6[0;32mI (51699) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:30 - [0;32mI (51702) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51710) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:30 - [0;32mI (51714) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:30 - [0;32mI (51721) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51730) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:30 - [0;32mI (51733) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:30 - [0;32mI (51740) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51748) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:30 - [0;32mI (51752) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:30 - [0;32mI (51758) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51766) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:30 - [0;32mI (51771) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:30 - [0;32mI (51777) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51785) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:30 - [0;32mI (51790) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:30 - [0;32mI (51796) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51804) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:30 - [0;32mI (51808) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:30 - [0;32mI (51815) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51823) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:30 - [0;32mI (51833) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=78AC81CA64CC8CBF0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:30 - [0;32mI (51843) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:30 - [0;32mI (51850) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:30 - [0;32mI (51855) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:30 - [0;32mI (51863) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:30 - [0;32mI (51866) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51875) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:30 - [0;32mI (51879) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:30 - [0;32mI (51885) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51894) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:30 - [0;32mI (51897) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:30 - [0;32mI (51904) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51912) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:30 - [0;32mI (51916) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:30 - [0;32mI (51924) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51931) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:30 - [0;32mI (51935) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:30 - [0;32mI (51942) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51950) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:30 - [0;32mI (51954) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:30 - [0;32mI (51960) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51969) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:30 - [0;32mI (51974) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:30 - [0;32mI (51979) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (51987) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:30 - [0;32mI (51998) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=2433FEAB84DBE20F0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:30 - [0;32mI (52007) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:30 - [0;32mI (52014) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:30 - [0;32mI (52020) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:30 - [0;32mI (52028) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:30 - [0;32mI (52031) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52039) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:30 - [0;32mI (52043) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:30 - [0;32mI (52050) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52059) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:30 - [0;32mI (52062) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:30 - [0;32mI (52069) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52077) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:30 - [0;32mI (52081) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:30 - [0;32mI (52087) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52095) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:30 - [0;32mI (52100) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:30 - [0;32mI (52106) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52114) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:30 - [0;32mI (52118) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:30 - [0;32mI (52125) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52133) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:30 - [0;32mI (52137) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:30 - [0;32mI (52144) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52152) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:30 - [0;32mI (52162) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=C134D4E1E18BBECE0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:30 - [0;32mI (52172) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:30 - [0;32mI (52179) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:30 - [0;32mI (52184) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:30 - 6
2024-12-04 19:34:30 - UHF1,0000,371262560,-045,15,ADF05B66
2024-12-04 19:34:30 - UHF1,0000,371262560,-045,12,E2D25F5E
2024-12-04 19:34:30 - UHF1,0000,371262560,-045,12,E2D25F5E
2024-12-04 19:34:30 - HTB0,[0;32mI (52202) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:30 - [0;32mI (52206) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52214) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:30 - [0;32mI (52218) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:30 - [0;32mI (52224) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52233) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:30 - [0;32mI (52237) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:30 - [0;32mI (52243) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52251) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:30 - [0;32mI (52255) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:30 - [0;32mI (52263) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52270) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:30 - [0;32mI (52274) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:30 - [0;32mI (52281) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52289) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:30 - [0;32mI (52293) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:30 - [0;32mI (52300) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52308) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:30 - [0;32mI (52313) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:30 - [0;32mI (52319) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52327) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:30 - [0;32mI (52337) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=7B9460F9BE18101B0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:30 - [0;32mI (52347) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:30 - [0;32mI (52353) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:30 - [0;32mI (52359) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:30 - [0;32mI (52367) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:30 - [0;32mI (52370) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52378) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:30 - [0;32mI (52383) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:30 - [0;32mI (52389) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52398) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:30 - [0;32mI (52401) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:30 - [0;32mI (52408) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52416) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:30 - [0;32mI (52420) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:30 - [0;32mI (52428) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52435) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:30 - [0;32mI (52439) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:30 - [0;32mI (52445) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52453) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:30 - [0;32mI (52457) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:30 - [0;32mI (52464) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52472) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:30 - [0;32mI (52476) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:30 - [0;32mI (52483) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:30 - [0;32mI (52491) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:31 - [0;32mI (52501) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=C7E7D7240BE650C90010490016210460][cmd_sent=02][0m
2024-12-04 19:34:31 - [0;32mI (52511) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:31 - [0;32mI (52517) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:31 - [0;32mI (52524) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:31 - 0000,42,DA0CEF05
2024-12-04 19:34:31 - UHF1,0000,371262560,-044,12,86C282F2
2024-12-04 19:34:31 - UHF1,0000,371262560,-045,20,8EEB6671
2024-12-04 19:34:31 - UHF1,0000,371262560,-045,20[0;31mE (52541) [app_uart_eth]: [task_uart_eth][UART_BUFFER_FULL][0m
2024-12-04 19:34:31 - [0;32mI (52547) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:31 - [0;32mI (52553) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:31 - [0;32mI (52557) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52565) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:31 - [0;31mE (52567) [app_uart_eth]: [task_uart_eth][UART_BUFFER_FULL][0m
2024-12-04 19:34:31 - [0;32mI (52576) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:31 - [0;32mI (52581) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:31 - [0;32mI (52588) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52596) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:31 - [0;32mI (52600) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:31 - [0;32mI (52607) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52615) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:31 - [0;32mI (52619) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:31 - [0;32mI (52625) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52634) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:31 - [0;32mI (52638) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:31 - [0;32mI (52644) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52653) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:31 - [0;32mI (52656) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:31 - [0;32mI (52663) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52671) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:31 - [0;32mI (52675) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:31 - [0;32mI (52683) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52690) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:31 - [0;32mI (52700) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=3CC544E2CACD54A90010490016210460][cmd_sent=02][0m
2024-12-04 19:34:31 - [0;32mI (52710) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:31 - [0;32mI (52716) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:31 - [0;32mI (52723) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:31 - [0;32mI (52731) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:31 - [0;32mI (52734) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52742) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:31 - [0;32mI (52746) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:31 - [0;32mI (52752) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52761) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:31 - [0;32mI (52765) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:31 - [0;32mI (52771) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52779) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:31 - [0;32mI (52783) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:31 - [0;32mI (52791) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52798) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:31 - [0;32mI (52802) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:31 - [0;32mI (52809) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52817) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:31 - [0;32mI (52821) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:31 - [0;32mI (52828) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52836) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:31 - [0;32mI (52841) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:31 - [0;32mI (52846) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52855) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:31 - [0;32mI (52865) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=DE1D6AA4D1EBAD400010490016210460][cmd_sent=02][0m
2024-12-04 19:34:31 - [0;32mI (52874) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:31 - [0;32mI (52881) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:31 - [0;32mI (52887) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:31 - [0;32mI (52895) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:31 - [0;32mI (52898) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52906) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:31 - [0;32mI (52910) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:31 - [0;32mI (52917) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52926) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:31 - [0;32mI (52929) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:31 - [0;32mI (52936) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52944) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:31 - [0;32mI (52948) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:31 - [0;32mI (52954) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52963) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:31 - [0;32mI (52967) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:31 - [0;32mI (52973) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (52981) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:31 - [0;32mI (52986) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:31 - [0;32mI (52992) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53000) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:31 - [0;32mI (53004) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:31 - [0;32mI (53011) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53019) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:31 - [0;32mI (53030) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=4253678259FFEF700010490016210460][cmd_sent=02][0m
2024-12-04 19:34:31 - [0;32mI (53039) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:31 - [0;32mI (53046) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:31 - [0;32mI (53051) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:31 - [0;32mI (53059) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:31 - [0;32mI (53063) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53071) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:31 - [0;32mI (53075) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:31 - [0;32mI (53081) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53090) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:31 - [0;32mI (53094) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:31 - [0;32mI (53100) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53108) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:31 - [0;32mI (53112) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:31 - [0;32mI (53120) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53127) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:31 - [0;32mI (53131) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:31 - [0;32mI (53138) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53146) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:31 - [0;32mI (53150) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:31 - [0;32mI (53157) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53165) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:31 - [0;32mI (53170) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:31 - [0;32mI (53175) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53184) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:31 - [0;32mI (53194) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=03E15E6F69201C120010490016210460][cmd_sent=02][0m
2024-12-04 19:34:31 - [0;32mI (53203) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:31 - [0;32mI (53210) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:31 - [0;32mI (53216) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:31 - ,8EEB6671
2024-12-04 19:34:31 - UHF1,0000,371262560,-044,2,EA0D3412
2024-12-04 19:34:31 - UHF1,0000,371262560,-044,2,EA0D3412
2024-12-04 19:34:31 - HTB0,0000,43,AB63746D
2024-12-04 19:34:31 - UHF1,0000,3712[0;32mI (53234) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:31 - [0;32mI (53237) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53245) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:31 - [0;32mI (53250) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:31 - [0;32mI (53256) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53265) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:31 - [0;32mI (53268) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:31 - [0;32mI (53275) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53283) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:31 - [0;32mI (53287) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:31 - [0;32mI (53295) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53302) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:31 - [0;32mI (53306) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:31 - [0;32mI (53312) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53320) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:31 - [0;32mI (53325) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:31 - [0;32mI (53331) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53339) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:31 - [0;32mI (53343) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:31 - [0;32mI (53350) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53358) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:31 - [0;32mI (53368) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=146E4413348F70EB0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:31 - [0;32mI (53378) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:31 - [0;32mI (53385) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:31 - [0;32mI (53391) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:31 - [0;32mI (53399) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:31 - [0;32mI (53402) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53410) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:31 - [0;32mI (53414) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:31 - [0;32mI (53420) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53430) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:31 - [0;32mI (53433) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:31 - [0;32mI (53440) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53447) [app_uart_eth]: [i=3][L=60][0m
2024-12-04 19:34:31 - [0;32mI (53452) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=11][0m
2024-12-04 19:34:31 - 62560,-044,2,EA0D3412
2024-12-04 19:34:31 - UHF1,0000,371262560,-045,22,7E75C151
2024-12-04 19:34:31 - UHF1,0000,371262560,-045,22,7E75C151
2024-12-04 19:34:31 - UHF1,0000,371262560,-0[0;32mI (53470) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:31 - [0;32mI (53474) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:31 - [0;32mI (53482) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:32 - [0;32mI (53486) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:32 - [0;32mI (53493) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53501) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:32 - [0;32mI (53506) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:32 - [0;32mI (53512) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53520) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:32 - [0;32mI (53524) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:32 - [0;32mI (53530) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53539) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:32 - [0;32mI (53543) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:32 - [0;32mI (53549) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53557) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:32 - [0;32mI (53561) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:32 - [0;32mI (53568) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53576) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:32 - [0;32mI (53580) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:32 - [0;32mI (53587) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53596) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:32 - [0;32mI (53606) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=F7374945B8ACD94A0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:32 - [0;32mI (53616) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:32 - [0;32mI (53621) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:32 - [0;32mI (53627) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:32 - [0;32mI (53636) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:32 - [0;32mI (53639) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53647) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:32 - [0;32mI (53651) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:32 - [0;32mI (53657) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53665) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:32 - [0;32mI (53670) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:32 - [0;32mI (53676) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53684) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:32 - [0;32mI (53689) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:32 - [0;32mI (53695) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53703) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:32 - [0;32mI (53707) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:32 - [0;32mI (53714) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53722) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:32 - [0;32mI (53726) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:32 - [0;32mI (53733) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53741) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:32 - [0;32mI (53745) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:32 - [0;32mI (53751) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53760) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:32 - [0;32mI (53770) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=DD799A95BBCED2EB0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:32 - [0;32mI (53779) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:32 - [0;32mI (53785) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:32 - [0;32mI (53792) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:32 - [0;32mI (53799) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:32 - [0;32mI (53803) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53811) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:32 - [0;32mI (53815) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:32 - [0;32mI (53822) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53824) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:32 - [0;31mE (53836) [app_uart_eth]: [task_uart_eth][UART_BUFFER_FULL][0m
2024-12-04 19:34:32 - [0;32mI (53842) [app_uart_eth]: [task_uart_eth][UART_FIFO_OVF][0m
2024-12-04 19:34:32 - [0;32mI (53848) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:32 - [0;32mI (53852) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:32 - [0;32mI (53859) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;31mE (53864) [app_uart_eth]: [task_uart_eth][UART_BUFFER_FULL][0m
2024-12-04 19:34:32 - [0;32mI (53873) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:32 - [0;32mI (53877) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:32 - [0;32mI (53884) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53892) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:32 - [0;32mI (53896) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:32 - [0;32mI (53902) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53910) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:32 - [0;32mI (53914) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:32 - [0;32mI (53921) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53929) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:32 - [0;32mI (53934) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:32 - [0;32mI (53940) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (53948) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:32 - [0;32mI (53958) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=EDCB237471C955480010490016210460][cmd_sent=02][0m
2024-12-04 19:34:32 - [0;32mI (53968) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:32 - [0;32mI (53974) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:32 - [0;32mI (53981) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:32 - [0;32mI (53989) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:32 - [0;32mI (53992) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54000) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:32 - [0;32mI (54004) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:32 - [0;32mI (54010) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54019) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:32 - [0;32mI (54023) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:32 - [0;32mI (54030) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54037) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:32 - [0;32mI (54041) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:32 - [0;32mI (54048) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54056) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:32 - [0;32mI (54060) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:32 - [0;32mI (54067) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54075) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:32 - [0;32mI (54080) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:32 - [0;32mI (54086) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54094) [app_uart_eth]: [i=6][L=1][0m
2024-12-04 19:34:32 - [0;32mI (54098) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:32 - [0;32mI (54105) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54113) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:32 - [0;32mI (54123) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=FDE2AE9F261882A10010490016210460][cmd_sent=02][0m
2024-12-04 19:34:32 - [0;32mI (54133) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:32 - [0;32mI (54138) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:32 - [0;32mI (54145) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:32 - 45,17,DFA20317
2024-12-04 19:34:32 - UHF1,0000,371262560,-045,17,DFA20317
2024-12-04 19:34:32 - UHF1,0000,371262560,-045,19,FC1E7F1D
2024-12-04 19:34:32 - HTB0,0000,44,053B8E93
2024-12-04 19:34:32 - UHF1,00[0;32mI (54162) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:32 - [0;32mI (54166) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54175) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:32 - [0;32mI (54179) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:32 - [0;32mI (54185) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54193) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:32 - [0;32mI (54197) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m
2024-12-04 19:34:32 - [0;32mI (54205) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54212) [app_uart_eth]: [i=3][L=65][0m
2024-12-04 19:34:32 - [0;32mI (54216) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CIPHER][0m
2024-12-04 19:34:32 - [0;32mI (54223) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54231) [app_uart_eth]: [i=4][L=5][0m
2024-12-04 19:34:32 - [0;32mI (54235) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RSSI][0m
2024-12-04 19:34:32 - [0;32mI (54241) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54250) [app_uart_eth]: [i=5][L=1][0m
2024-12-04 19:34:32 - [0;32mI (54255) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_ANTENNA][0m
2024-12-04 19:34:32 - [0;32mI (54260) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54269) [app_uart_eth]: [i=6][L=2][0m
2024-12-04 19:34:32 - [0;32mI (54273) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_CHANNEL][0m
2024-12-04 19:34:32 - [0;32mI (54279) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54287) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][CACHEFILL_RN96][CACHEFILL_CIPHER][0m
2024-12-04 19:34:32 - [0;32mI (54297) [app_spi_sec]: [app_spi_decrypt][CMD=02][ST=D2][DATA=8E37A3601B10CA9F0010490016210460][cmd_sent=02][0m
2024-12-04 19:34:32 - [0;32mI (54307) [app_uart_eth]: [task_uart_eth_proc] DECRYPT OK[0m
2024-12-04 19:34:32 - [0;32mI (54313) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID found[0m
2024-12-04 19:34:32 - [0;32mI (54320) [app_uart_eth]: [aux_uhfsftime_list_query] OBUID ok to send[0m
2024-12-04 19:34:32 - [0;32mI (54328) [app_uart_eth]: [i=0][L=7][0m
2024-12-04 19:34:32 - [0;32mI (54331) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54339) [app_uart_eth]: [i=1][L=13][0m
2024-12-04 19:34:32 - [0;32mI (54343) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_EPC][0m
2024-12-04 19:34:32 - [0;32mI (54350) [app_uart_eth]: [task_uart_eth_proc][aux_parse_reader_if2][ret_parse=0][0m
2024-12-04 19:34:32 - [0;32mI (54359) [app_uart_eth]: [i=2][L=25][0m
2024-12-04 19:34:32 - [0;32mI (54362) [app_uart_eth]: [task_uart_eth_proc][CACHEFILL_RN96][0m