forked from bewest/decoding-carelink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatus-quo.log
More file actions
2932 lines (2932 loc) · 149 KB
/
status-quo.log
File metadata and controls
2932 lines (2932 loc) · 149 KB
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
INFO:auditor:hello world
INFO:auditor.io:hello world
INFO:auditor.io:sendComLink2Command:write:04
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:readProductInfo:result
INFO:auditor:product info: {'description': 'ComLink II',
'interfaces': [(0, 'Paradigm RF'), (1, 'USB')],
'product.version': '0.0',
'rf.freq': '916.5Mhz',
'serial': '0b2c00',
'software.version': '1.16'}
INFO:auditor.io:sendComLink2Command:write:06
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:<__main__.Link object at 0x1166f10>:readSignalStrength:189
INFO:auditor:execute attempt: 1
INFO:auditor.io:sendDeviceCommand:write:<pump.commands.ReadErrorStatus object at 0x116b650>
INFO:auditor:sleeping: 0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 02
INFO:auditor:STATUS: receive in progress!
DEBUG:auditor:<__main__.Device object at 0x116b5d0>:getNumBytesAvailable:attempt:0
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:sleeping in getNumBytesAvailable, .100
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:0:expectedCRC:0:data:0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0008 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0010 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0018 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0020 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0030 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0038 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
INFO:auditor:comm:<pump.commands.ReadErrorStatus object at 0x116b650>:data:
INFO:auditor:execute attempt: 1
INFO:auditor.io:sendDeviceCommand:write:<pump.commands.ReadPumpState object at 0x116b910>
INFO:auditor:sleeping: 0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 02
INFO:auditor:STATUS: receive in progress!
DEBUG:auditor:<__main__.Device object at 0x116b5d0>:getNumBytesAvailable:attempt:0
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:sleeping in getNumBytesAvailable, .100
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:48:expectedCRC:48:data:0000 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0008 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0010 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0018 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0020 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0030 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0038 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
INFO:auditor:comm:<pump.commands.ReadPumpState object at 0x116b910>:data:
INFO:auditor:read cur page number
INFO:auditor:execute attempt: 1
INFO:auditor.io:sendDeviceCommand:write:<pump.commands.ReadCurPageNumber object at 0x116b650>
INFO:auditor:sleeping: 0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 02
INFO:auditor:STATUS: receive in progress!
DEBUG:auditor:<__main__.Device object at 0x116b5d0>:getNumBytesAvailable:attempt:0
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:sleeping in getNumBytesAvailable, .100
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:203:expectedCRC:203:data:0000 0x00 0x00 0x00 0x07 0x00 0x00 0x00 0x00 ........
0008 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0010 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0018 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0020 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0030 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0038 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
INFO:auditor:attempting to read 7 pages of history
INFO:auditor:comm:READ HISTORY DATA page number: 0
INFO:auditor:execute attempt: 1
INFO:auditor.io:sendDeviceCommand:write:<pump.commands.ReadHistoryData object at 0x116b950>
INFO:auditor:sleeping: 0.1
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 00
DEBUG:auditor:<__main__.Device object at 0x116b5d0>:getNumBytesAvailable:attempt:0
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:sleeping in getNumBytesAvailable, .100
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:214:expectedCRC:214:data:0000 0x5b 0x64 0x6f 0xd7 0x08 0x01 0x06 0x03 [do.....
0008 0x50 0x0a 0x32 0x64 0x00 0x03 0x00 0x00 P.2d....
0010 0x00 0x00 0x03 0x64 0x01 0x03 0x03 0x00 ...d....
0018 0x6f 0xd7 0x28 0x01 0x06 0x5b 0x67 0x6b o.(..[gk
0020 0xd8 0x08 0x01 0x06 0x07 0x50 0x0a 0x32 .....P.2
0028 0x64 0x00 0x07 0x00 0x00 0x03 0x00 0x07 d.......
0030 0x64 0x5c 0x05 0x0c 0x01 0x44 0x01 0x07 d\...D..
0038 0x07 0x00 0x6b 0xd8 0x28 0x01 0x06 0x5b ..k.(..[
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 03
INFO:auditor:STATUS: receive in progress!
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:1:expectedCRC:1:data:0000 0x57 0x77 0xda 0x08 0x01 0x06 0x01 0x52 Ww.....R
0008 0x0a 0x32 0x64 0x63 0x01 0x00 0x00 0x0a .2dc....
0010 0x00 0x5a 0x64 0x5c 0x05 0x28 0x03 0x44 .Zd\.(.D
0018 0x01 0x5a 0x5a 0x00 0x77 0xda 0x28 0x01 .ZZ.w.(.
0020 0x06 0x1e 0x00 0x55 0xe4 0x08 0x41 0x06 ...U..A.
0028 0x1f 0x00 0x6b 0xe4 0x08 0x41 0x06 0x07 ..k..A..
0030 0x00 0x00 0x04 0x52 0x61 0x86 0x6c 0x61 ...Ra.la
0038 0x86 0x05 0x21 0x0b 0x64 0x57 0x03 0x00 ..!.dW..
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:73:expectedCRC:73:data:0000 0x00 0x04 0x52 0x02 0xc2 0x40 0x01 0x90 ..R..@..
0008 0x24 0x00 0x0b 0x01 0x90 0x24 0x00 0x2c $....$.,
0010 0x0b 0x01 0x64 0x59 0x00 0x00 0x00 0x03 ..dY....
0018 0x02 0x00 0x01 0x00 0x1e 0x00 0x60 0xdd ......`.
0020 0x12 0x42 0x06 0x1f 0x00 0x58 0xde 0x12 .B...X..
0028 0x42 0x06 0x1e 0x00 0x57 0xe5 0x12 0x42 B...W..B
0030 0x06 0x1f 0x00 0x69 0xe5 0x12 0x42 0x06 ...i..B.
0038 0x1e 0x00 0x63 0xf9 0x12 0x42 0x06 0x1f ..c..B..
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:37:expectedCRC:37:data:0000 0x00 0x7a 0xfa 0x12 0x42 0x06 0x07 0x00 .z..B...
0008 0x00 0x03 0x32 0x62 0x86 0x6c 0x62 0x86 ..2b.lb.
0010 0x05 0x0c 0x00 0xe8 0x00 0x00 0x00 0x00 ........
0018 0x03 0x32 0x03 0x32 0x64 0x00 0x00 0x00 .2.2d...
0020 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0030 0x00 0x00 0x00 0x1e 0x00 0x4e 0xc0 0x0a .....N..
0038 0x43 0x06 0x1f 0x00 0x60 0xc0 0x0a 0x43 C...`..C
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:206:expectedCRC:206:data:0000 0x06 0x07 0x00 0x00 0x03 0x36 0x63 0x86 .....6c.
0008 0x6c 0x63 0x86 0x05 0x0c 0x00 0xe8 0x00 lc......
0010 0x00 0x00 0x00 0x03 0x36 0x03 0x36 0x64 ....6.6d
0018 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0020 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x07 0x00 ........
0030 0x00 0x03 0x36 0x64 0x86 0x6c 0x64 0x86 ..6d.ld.
0038 0x05 0x0c 0x00 0xe8 0x00 0x00 0x00 0x00 ........
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:25:expectedCRC:25:data:0000 0x03 0x36 0x03 0x36 0x64 0x00 0x00 0x00 .6.6d...
0008 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0010 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0018 0x00 0x00 0x00 0x07 0x00 0x00 0x03 0x36 .......6
0020 0x65 0x86 0x6c 0x65 0x86 0x05 0x0c 0x00 e.le....
0028 0xe8 0x00 0x00 0x00 0x00 0x03 0x36 0x03 ......6.
0030 0x36 0x64 0x00 0x00 0x00 0x00 0x00 0x00 6d......
0038 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:25:expectedCRC:25:data:0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0008 0x34 0xc8 0x40 0xcc 0x0f 0x06 0x06 0x07 4.@.....
0010 0x00 0x00 0x03 0x36 0x66 0x86 0x6c 0x66 ...6f.lf
0018 0x86 0x05 0x0c 0x00 0xe8 0x00 0x00 0x00 ........
0020 0x00 0x03 0x36 0x03 0x36 0x64 0x00 0x00 ..6.6d..
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0030 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0038 0x00 0x00 0x00 0x00 0x34 0x64 0x41 0xde ....4dA.
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:205:expectedCRC:205:data:0000 0x02 0x07 0x06 0x5b 0x75 0x43 0xc5 0x0f ...[uC..
0008 0x07 0x06 0x03 0x50 0x0a 0x32 0x64 0x03 ...P.2d.
0010 0x03 0x00 0x00 0x00 0x00 0x06 0x64 0x01 ......d.
0018 0x06 0x06 0x00 0x43 0xc5 0x2f 0x07 0x06 ...C./..
0020 0x5b 0x75 0x45 0xce 0x10 0x07 0x06 0x06 [uE.....
0028 0x50 0x0a 0x32 0x64 0x03 0x06 0x00 0x00 P.2d....
0030 0x05 0x00 0x06 0x64 0x5c 0x05 0x18 0x47 ...d\..G
0038 0x44 0x01 0x06 0x06 0x00 0x45 0xce 0x30 D....E.0
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:100:expectedCRC:100:data:0000 0x07 0x06 0x21 0x00 0x79 0xef 0x10 0x07 ..!.y...
0008 0x06 0x03 0x00 0x00 0x00 0x13 0x74 0xf0 ......t.
0010 0x30 0x07 0x06 0x03 0x00 0x03 0x00 0x03 0.......
0018 0x4c 0xf1 0x10 0x07 0x06 0x03 0x00 0x03 L.......
0020 0x00 0x03 0x66 0xca 0x11 0x07 0x06 0x03 ..f.....
0028 0x00 0x03 0x00 0x03 0x73 0xdc 0x11 0x07 ....s...
0030 0x06 0x03 0x00 0x03 0x00 0x03 0x4e 0xe9 ......N.
0038 0x11 0x07 0x06 0x03 0x00 0x03 0x00 0x03 ........
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 05
INFO:auditor:STATUS: transmit in progress!
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:105:expectedCRC:105:data:0000 0x42 0xf9 0x11 0x07 0x06 0x03 0x00 0x03 B.......
0008 0x00 0x03 0x45 0xc2 0x12 0x07 0x06 0x1e ..E.....
0010 0x00 0x60 0xd6 0x12 0x47 0x06 0x1f 0x00 .`..G...
0018 0x73 0xd6 0x12 0x47 0x06 0x07 0x00 0x00 s..G....
0020 0x03 0x64 0x67 0x86 0x6c 0x67 0x86 0x05 .dg.lg..
0028 0x00 0x75 0x75 0x75 0x05 0x00 0x00 0x03 .uuu....
0030 0x64 0x03 0x34 0x5e 0x00 0x30 0x06 0x00 d.4^.0..
0038 0x09 0x00 0x30 0x06 0x00 0x24 0x4b 0x00 ..0..$K.
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:100:expectedCRC:100:data:0000 0x0c 0x19 0x00 0x00 0x00 0x02 0x01 0x00 ........
0008 0x01 0x00 0x03 0x00 0x03 0x00 0x03 0x71 .......q
0010 0xd6 0x05 0x08 0x06 0x1e 0x00 0x47 0xf1 ......G.
0018 0x05 0x48 0x06 0x1f 0x00 0x5a 0xf1 0x05 .H...Z..
0020 0x48 0x06 0x64 0x00 0x65 0xcb 0x07 0x08 H.d.e...
0028 0x06 0x17 0x00 0x4c 0xcc 0x07 0x08 0x06 ...L....
0030 0x18 0x00 0x80 0x1e 0x17 0x1f 0x06 0x07 ........
0038 0x00 0x00 0x00 0x58 0x68 0x86 0x6c 0x68 ...Xh.lh
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:151:expectedCRC:151:data:0000 0x86 0x05 0x0c 0x00 0xe8 0x00 0x00 0x00 ........
0008 0x00 0x00 0x58 0x00 0x58 0x64 0x00 0x00 ..X.Xd..
0010 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0018 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0020 0x00 0x00 0x00 0x00 0x03 0x00 0x03 0x00 ........
0028 0x03 0x9c 0x21 0x17 0x1f 0x06 0x03 0x00 ..!.....
0030 0x05 0x00 0x05 0xb6 0x21 0x17 0x1f 0x06 ....!...
0038 0x03 0x00 0x03 0x00 0x03 0x9c 0x22 0x17 ......".
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:65:expectedCRC:65:data:0000 0x1f 0x06 0x07 0x00 0x00 0x00 0x06 0x9f ........
0008 0x06 0x6c 0x9f 0x06 0x05 0x0c 0x00 0xe8 .l......
0010 0x00 0x00 0x00 0x00 0x00 0x06 0x00 0x06 ........
0018 0x64 0x00 0x00 0x00 0x00 0x00 0x00 0x00 d.......
0020 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 ........
0030 0x00 0x03 0x00 0x03 0xa9 0x4c 0x00 0x01 .....L..
0038 0x06 0x1e 0x00 0x9d 0x6c 0x00 0x41 0x06 ....l.A.
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:249:expectedCRC:249:data:0000 0x1f 0x00 0xb0 0x6c 0x00 0x41 0x06 0x64 ...l.A.d
0008 0x00 0x8a 0x53 0x01 0x01 0x06 0x17 0x00 ..S.....
0010 0xa2 0x53 0x01 0x01 0x06 0x18 0x00 0x80 .S......
0018 0x94 0x0b 0x01 0x06 0x07 0x00 0x00 0x00 ........
0020 0x02 0x81 0x86 0x6c 0x81 0x86 0x05 0x0c ...l....
0028 0x00 0xe8 0x00 0x00 0x00 0x00 0x00 0x02 ........
0030 0x00 0x02 0x64 0x00 0x00 0x00 0x00 0x00 ..d.....
0038 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:184:expectedCRC:184:data:0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0008 0x00 0x03 0x00 0x03 0x00 0x03 0x92 0x9e ........
0010 0x0b 0x01 0x06 0x07 0x00 0x00 0x02 0x4c .......L
0018 0xa1 0x06 0x6c 0xa1 0x06 0x05 0x0c 0x00 ..l.....
0020 0xe8 0x00 0x00 0x00 0x00 0x02 0x4c 0x02 ......L.
0028 0x4c 0x64 0x00 0x00 0x00 0x00 0x00 0x00 Ld......
0030 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0038 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:224:expectedCRC:224:data:0000 0x34 0xc8 0xaf 0xad 0x13 0x02 0x06 0x07 4.......
0008 0x00 0x00 0x03 0x36 0xa2 0x06 0x6c 0xa2 ...6..l.
0010 0x06 0x05 0x0c 0x00 0xe8 0x00 0x00 0x00 ........
0018 0x00 0x03 0x36 0x03 0x36 0x64 0x00 0x00 ..6.6d..
0020 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0030 0x00 0x00 0x00 0x00 0x34 0x64 0x8d 0x89 ....4d..
0038 0x0d 0x03 0x06 0x00 0x00 0x00 0xa0 0xbe ........
INFO:auditor:comm:READ HISTORY DATA page number: 1
INFO:auditor:execute attempt: 1
INFO:auditor.io:sendDeviceCommand:write:<pump.commands.ReadHistoryData object at 0x116b650>
INFO:auditor:sleeping: 0.1
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 00
DEBUG:auditor:<__main__.Device object at 0x116b5d0>:getNumBytesAvailable:attempt:0
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:sleeping in getNumBytesAvailable, .100
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:113:expectedCRC:113:data:0000 0x03 0x00 0x00 0x00 0x0a 0x9e 0x1c 0x35 .......5
0008 0x01 0x0c 0x03 0x00 0x03 0x00 0x03 0xa7 ........
0010 0x1c 0x15 0x01 0x0c 0x26 0x01 0x8d 0x19 ....&...
0018 0x16 0x01 0x0c 0x27 0x00 0x00 0x00 0x00 ...'....
0020 0x00 0x00 0x28 0x00 0x00 0x00 0x00 0x00 ..(.....
0028 0x00 0x26 0x01 0xa2 0x19 0x16 0x01 0x0c .&......
0030 0x27 0x01 0xe2 0x40 0x00 0x00 0x00 0x28 '..@...(
0038 0x00 0x00 0x00 0x00 0x00 0x00 0x26 0x01 ......&.
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 03
INFO:auditor:STATUS: receive in progress!
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:151:expectedCRC:151:data:0000 0xaf 0x1f 0x16 0x01 0x0c 0x27 0x01 0xe2 .....'..
0008 0x40 0x03 0x42 0x2a 0x28 0x00 0x00 0x00 @.B*(...
0010 0x00 0x00 0x00 0x26 0x01 0xa0 0x20 0x16 ...&.. .
0018 0x01 0x0c 0x27 0x01 0xe2 0x40 0x03 0x42 ..'..@.B
0020 0x2a 0x28 0x0c 0x89 0x92 0x00 0x00 0x00 *(......
0028 0x33 0x30 0x96 0x26 0x16 0x01 0x0c 0x00 30.&....
0030 0x16 0x03 0x96 0x26 0x16 0x01 0x0c 0x33 ...&...3
0038 0x30 0xa7 0x30 0x16 0x01 0x0c 0x00 0x16 0.0.....
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:219:expectedCRC:219:data:0000 0x02 0xa7 0x30 0x16 0x01 0x0c 0x33 0x00 ..0...3.
0008 0xa0 0x33 0x16 0x01 0x0c 0x00 0x16 0x00 .3......
0010 0xa0 0x33 0x16 0x01 0x0c 0x33 0x4c 0x91 .3...3L.
0018 0x34 0x16 0x01 0x0c 0x00 0x16 0x06 0x91 4.......
0020 0x34 0x16 0x01 0x0c 0x33 0x4c 0xb6 0x04 4...3L..
0028 0x17 0x01 0x0c 0x00 0x16 0x06 0xb6 0x04 ........
0030 0x17 0x01 0x0c 0x63 0x04 0x94 0x23 0x17 ...c..#.
0038 0x01 0x0c 0x63 0x03 0xb9 0x26 0x17 0x01 ..c..&..
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:69:expectedCRC:69:data:0000 0x0c 0x07 0x00 0x00 0x00 0x80 0x81 0x0c ........
0008 0x6c 0x81 0x0c 0x05 0x0c 0x00 0xe8 0x00 l.......
0010 0x00 0x00 0x00 0x00 0x80 0x00 0x80 0x64 .......d
0018 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0020 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x5b 0x64 ......[d
0030 0xa9 0x34 0x06 0x02 0x0c 0x0a 0x50 0x0a .4....P.
0038 0x32 0x64 0x00 0x0a 0x00 0x00 0x00 0x00 2d......
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:179:expectedCRC:179:data:0000 0x0a 0x64 0x01 0x0a 0x0a 0x00 0xa9 0x34 .d.....4
0008 0x26 0x02 0x0c 0x5b 0x64 0xa2 0x35 0x06 &..[d.5.
0010 0x02 0x0c 0x0a 0x50 0x0a 0x32 0x64 0x00 ...P.2d.
0018 0x0a 0x00 0x00 0x0a 0x00 0x0a 0x64 0x5c ......d\
0020 0x08 0x14 0x00 0x44 0x14 0x0a 0x44 0x01 ...D..D.
0028 0x0a 0x0a 0x00 0xa2 0x35 0x26 0x02 0x0c ....5&..
0030 0x5b 0x64 0x9e 0x36 0x06 0x02 0x0c 0x0a [d.6....
0038 0x50 0x0a 0x32 0x64 0x00 0x0a 0x00 0x00 P.2d....
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:131:expectedCRC:131:data:0000 0x14 0x00 0x0a 0x64 0x5c 0x08 0x3c 0x01 ...d\.<.
0008 0x44 0x14 0x0b 0x44 0x01 0x0a 0x0a 0x00 D..D....
0010 0x9e 0x36 0x26 0x02 0x0c 0x5b 0x64 0x96 .6&..[d.
0018 0x37 0x06 0x02 0x0c 0x0a 0x50 0x0a 0x32 7....P.2
0020 0x64 0x00 0x0a 0x00 0x00 0x1e 0x00 0x0a d.......
0028 0x64 0x5c 0x08 0x64 0x02 0x44 0x14 0x0c d\.d.D..
0030 0x44 0x01 0x0a 0x0a 0x00 0x97 0x37 0x26 D.....7&
0038 0x02 0x0c 0x5b 0x64 0xa5 0x38 0x06 0x02 ..[d.8..
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:242:expectedCRC:242:data:0000 0x0c 0x0a 0x50 0x0a 0x32 0x64 0x00 0x0a ..P.2d..
0008 0x00 0x00 0x28 0x00 0x0a 0x64 0x5c 0x08 ..(..d\.
0010 0x8c 0x03 0x44 0x14 0x0d 0x44 0x01 0x0a ..D..D..
0018 0x0a 0x00 0xa5 0x38 0x26 0x02 0x0c 0x5b ...8&..[
0020 0x64 0xa1 0x39 0x06 0x02 0x0c 0x0a 0x50 d.9....P
0028 0x0a 0x32 0x64 0x00 0x0a 0x00 0x00 0x32 .2d....2
0030 0x00 0x0a 0x64 0x5c 0x08 0xb4 0x04 0x44 ..d\...D
0038 0x14 0x0e 0x44 0x01 0x0a 0x0a 0x00 0xa1 ..D.....
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:125:expectedCRC:125:data:0000 0x39 0x26 0x02 0x0c 0x5b 0x64 0x97 0x3a 9&..[d.:
0008 0x06 0x02 0x0c 0x0a 0x50 0x0a 0x32 0x64 ....P.2d
0010 0x00 0x0a 0x00 0x00 0x3c 0x00 0x0a 0x64 ....<..d
0018 0x5c 0x08 0xdc 0x05 0x44 0x14 0x0f 0x44 \...D..D
0020 0x01 0x0a 0x0a 0x00 0x97 0x3a 0x26 0x02 .....:&.
0028 0x0c 0x5b 0x65 0xb3 0x06 0x07 0x02 0x0c .[e.....
0030 0x01 0x50 0x0a 0x32 0x64 0x00 0x01 0x00 .P.2d...
0038 0x00 0x46 0x00 0x01 0x64 0x5c 0x08 0x04 .F..d\..
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:5:expectedCRC:5:data:0000 0x0d 0x45 0x14 0x17 0x44 0x01 0x01 0x01 .E..D...
0008 0x00 0xb3 0x06 0x27 0x02 0x0c 0x5b 0x65 ...'..[e
0010 0x85 0x07 0x07 0x02 0x0c 0x01 0x50 0x0a ......P.
0018 0x32 0x64 0x00 0x01 0x00 0x00 0x47 0x00 2d....G.
0020 0x01 0x64 0x5c 0x0b 0x04 0x04 0x44 0x04 .d\...D.
0028 0x0e 0x45 0x14 0x18 0x44 0x01 0x01 0x01 .E..D...
0030 0x00 0x85 0x07 0x27 0x02 0x0c 0x5b 0x65 ...'..[e
0038 0x94 0x07 0x07 0x02 0x0c 0x01 0x50 0x0a ......P.
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:78:expectedCRC:78:data:0000 0x32 0x64 0x00 0x01 0x00 0x00 0x48 0x00 2d....H.
0008 0x01 0x64 0x5c 0x0b 0x08 0x04 0x44 0x04 .d\...D.
0010 0x0e 0x45 0x14 0x18 0x44 0x01 0x01 0x01 .E..D...
0018 0x00 0x95 0x07 0x27 0x02 0x0c 0x5b 0x65 ...'..[e
0020 0x90 0x08 0x07 0x02 0x0c 0x01 0x50 0x0a ......P.
0028 0x32 0x64 0x00 0x01 0x00 0x00 0x49 0x00 2d....I.
0030 0x01 0x64 0x5c 0x0b 0x0c 0x05 0x44 0x04 .d\...D.
0038 0x0f 0x45 0x14 0x19 0x44 0x01 0x01 0x01 .E..D...
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:53:expectedCRC:53:data:0000 0x00 0x90 0x08 0x27 0x02 0x0c 0x5b 0x66 ...'..[f
0008 0xb3 0x11 0x07 0x02 0x0c 0x01 0x50 0x0a ......P.
0010 0x32 0x64 0x00 0x01 0x00 0x00 0x49 0x00 2d....I.
0018 0x01 0x64 0x5c 0x0b 0x10 0x0e 0x44 0x04 .d\...D.
0020 0x18 0x45 0x14 0x22 0x44 0x01 0x01 0x01 .E."D...
0028 0x00 0xb3 0x11 0x27 0x02 0x0c 0x5b 0x65 ...'..[e
0030 0x80 0x12 0x07 0x02 0x0c 0x01 0x50 0x0a ......P.
0038 0x32 0x64 0x00 0x01 0x00 0x00 0x4a 0x00 2d....J.
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:75:expectedCRC:75:data:0000 0x01 0x64 0x5c 0x0e 0x04 0x05 0x44 0x10 .d\...D.
0008 0x0f 0x44 0x04 0x19 0x45 0x14 0x23 0x44 .D..E.#D
0010 0x01 0x01 0x01 0x00 0x81 0x12 0x27 0x02 ......'.
0018 0x0c 0x5b 0x65 0x8f 0x12 0x07 0x02 0x0c .[e.....
0020 0x01 0x50 0x0a 0x32 0x64 0x00 0x01 0x00 .P.2d...
0028 0x00 0x4b 0x00 0x01 0x64 0x5c 0x0e 0x08 .K..d\..
0030 0x05 0x44 0x10 0x0f 0x44 0x04 0x19 0x45 .D..D..E
0038 0x14 0x23 0x44 0x01 0x01 0x01 0x00 0x8f .#D.....
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:155:expectedCRC:155:data:0000 0x12 0x27 0x02 0x0c 0x5b 0x65 0x99 0x12 .'..[e..
0008 0x07 0x02 0x0c 0x01 0x50 0x0a 0x32 0x64 ....P.2d
0010 0x00 0x01 0x00 0x00 0x4c 0x00 0x01 0x64 ....L..d
0018 0x5c 0x0e 0x0c 0x05 0x44 0x10 0x0f 0x44 \...D..D
0020 0x04 0x19 0x45 0x14 0x23 0x44 0x01 0x01 ..E.#D..
0028 0x01 0x00 0x99 0x12 0x27 0x02 0x0c 0x5b ....'..[
0030 0x65 0xa8 0x12 0x07 0x02 0x0c 0x01 0x50 e......P
0038 0x0a 0x32 0x64 0x00 0x01 0x00 0x00 0x4d .2d....M
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:18:expectedCRC:18:data:0000 0x00 0x01 0x64 0x5c 0x0e 0x10 0x05 0x44 ..d\...D
0008 0x10 0x0f 0x44 0x04 0x19 0x45 0x14 0x23 ..D..E.#
0010 0x44 0x01 0x01 0x01 0x00 0xa8 0x12 0x27 D......'
0018 0x02 0x0c 0x1e 0x00 0x90 0x3b 0x12 0x42 .....;.B
0020 0x0c 0x1f 0x00 0xa8 0x3b 0x12 0x42 0x0c ....;.B.
0028 0x64 0x01 0x83 0x0a 0x14 0x02 0x0c 0x17 d.......
0030 0x00 0xa3 0x0a 0x14 0x02 0x0c 0x18 0x00 ........
0038 0x40 0xca 0x06 0x01 0x06 0x07 0x00 0x00 @.......
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:238:expectedCRC:238:data:0000 0x04 0xda 0x82 0x0c 0x6c 0x82 0x0c 0x05 ....l...
0008 0x00 0x65 0x64 0x66 0x12 0x00 0x00 0x04 .edf....
0010 0xda 0x03 0x9e 0x4b 0x01 0x3c 0x19 0x00 ...K.<..
0018 0x4f 0x01 0x3c 0x19 0x01 0x3c 0x64 0x00 O.<..<d.
0020 0x00 0x00 0x00 0x00 0x00 0x10 0x10 0x00 ........
0028 0x00 0x00 0x64 0x01 0x56 0xca 0x06 0x01 ..d.V...
0030 0x06 0x17 0x00 0x60 0xca 0x06 0x01 0x06 ...`....
0038 0x18 0x00 0x40 0xca 0x08 0x01 0x06 0x1e ..@.....
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:154:expectedCRC:154:data:0000 0x00 0x66 0xcc 0x08 0x01 0x06 0x1f 0x00 .f......
0008 0x48 0xcd 0x08 0x01 0x06 0x14 0x02 0x6d H......m
0010 0xd1 0x28 0x01 0x06 0x14 0x01 0x45 0xd2 .(....E.
0018 0x48 0x01 0x06 0x14 0x02 0x46 0xd3 0x28 H....F.(
0020 0x01 0x06 0x14 0x01 0x48 0xd4 0x48 0x01 ....H.H.
0028 0x06 0x64 0x00 0x6f 0xd4 0x08 0x01 0x06 .d.o....
0030 0x64 0x01 0x4d 0xd5 0x08 0x01 0x06 0x64 d.M....d
0038 0x00 0x4a 0xd6 0x08 0x01 0x06 0xde 0x58 .J.....X
INFO:auditor:comm:READ HISTORY DATA page number: 2
INFO:auditor:execute attempt: 1
INFO:auditor.io:sendDeviceCommand:write:<pump.commands.ReadHistoryData object at 0x116b950>
INFO:auditor:sleeping: 0.1
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 00
DEBUG:auditor:<__main__.Device object at 0x116b5d0>:getNumBytesAvailable:attempt:0
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:sleeping in getNumBytesAvailable, .100
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:97:expectedCRC:97:data:0000 0x18 0x00 0x00 0xe3 0x07 0x04 0x02 0x07 ........
0008 0x00 0x00 0x00 0x02 0x21 0x01 0x6c 0x21 ....!.l!
0010 0x01 0x05 0x0c 0x00 0xe8 0x00 0x00 0x00 ........
0018 0x00 0x00 0x02 0x00 0x02 0x64 0x00 0x00 .....d..
0020 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0030 0x00 0x00 0x00 0x00 0x64 0x00 0x10 0xe8 ....d...
0038 0x07 0x04 0x02 0x17 0x00 0x22 0xe8 0x07 ....."..
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 03
INFO:auditor:STATUS: receive in progress!
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:163:expectedCRC:163:data:0000 0x04 0x02 0x18 0x00 0x00 0xc0 0x08 0x04 ........
0008 0x02 0x64 0x00 0x25 0xc2 0x08 0x04 0x02 .d.%....
0010 0x64 0x00 0x27 0xc2 0x08 0x04 0x02 0x64 d.'....d
0018 0x00 0x29 0xc2 0x08 0x04 0x02 0x17 0x00 .)......
0020 0x34 0xc2 0x08 0x04 0x02 0x18 0x00 0x00 4.......
0028 0xd3 0x09 0x04 0x02 0x64 0x00 0x0e 0xd9 ....d...
0030 0x09 0x04 0x02 0x64 0x00 0x19 0xd9 0x09 ...d....
0038 0x04 0x02 0x17 0x00 0x28 0xd9 0x09 0x04 ....(...
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:190:expectedCRC:190:data:0000 0x02 0x18 0x00 0x00 0xd9 0x0f 0x01 0x03 ........
0008 0x07 0x00 0x00 0x00 0x08 0x24 0x82 0x6c .....$.l
0010 0x24 0x82 0x05 0x0c 0x00 0xe8 0x00 0x00 $.......
0018 0x00 0x00 0x00 0x08 0x00 0x08 0x64 0x00 ......d.
0020 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0030 0x00 0x00 0x00 0x00 0x00 0x64 0x00 0x17 .....d..
0038 0xdb 0x0f 0x01 0x03 0x17 0x00 0x22 0xdb ......".
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:176:expectedCRC:176:data:0000 0x0f 0x01 0x03 0x18 0x00 0x00 0xdb 0x0f ........
0008 0x01 0x04 0x07 0x00 0x00 0x00 0x02 0x21 .......!
0010 0x83 0x6c 0x21 0x83 0x05 0x0c 0x00 0xe8 .l!.....
0018 0x00 0x00 0x00 0x00 0x00 0x02 0x00 0x02 ........
0020 0x64 0x00 0x00 0x00 0x00 0x00 0x00 0x00 d.......
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0030 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x64 .......d
0038 0x00 0x21 0xdb 0x0f 0x01 0x04 0x17 0x00 .!......
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:34:expectedCRC:34:data:0000 0x31 0xdb 0x0f 0x01 0x04 0x18 0x00 0x40 1......@
0008 0x1b 0x0f 0x01 0x0c 0x07 0x00 0x00 0x00 ........
0010 0x00 0x21 0x84 0x6c 0x21 0x84 0x05 0x0c .!.l!...
0018 0x00 0xe8 0x00 0x00 0x00 0x00 0x00 0x00 ........
0020 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0030 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0038 0x00 0x64 0x01 0x71 0x1c 0x0f 0x01 0x0c .d.q....
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:60:expectedCRC:60:data:0000 0x17 0x00 0x50 0x1d 0x0f 0x01 0x0c 0x18 ..P.....
0008 0x00 0x40 0xc7 0x06 0x08 0x05 0x07 0x00 .@......
0010 0x00 0x00 0x02 0x41 0x0c 0x6c 0x41 0x0c ...A.lA.
0018 0x05 0x0c 0x00 0xe8 0x00 0x00 0x00 0x00 ........
0020 0x00 0x02 0x00 0x02 0x64 0x00 0x00 0x00 ....d...
0028 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0030 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ........
0038 0x00 0x00 0x00 0x01 0x28 0x28 0x00 0x65 ....((.e
INFO:auditor.io:sendComLink2Command:write:03
INFO:auditor:retry:<bound method Link.checkAck of <__main__.Link object at 0x1166f10>>:0
INFO:auditor:checkAck sleeping .100
INFO:auditor.io:checkAck:read
INFO:auditor:checkACK OK, found 64 total bytes
INFO:auditor:status byte: 01
INFO:auditor:getNumBytesAvailable:78
INFO:auditor.io:writeAndRead:
INFO:auditor:readData validating remote response: 02
INFO:auditor:readData; foreign response should be at least 14 bytes? 78 True
INFO:auditor:readData; retries 0
INFO:auditor:readData ACK
INFO:auditor:XXX resLength: 64
INFO:auditor:readDeviceDataIO:msgCRC:41:expectedCRC:41:data:0000 0xd7 0x26 0x08 0x05 0x07 0x00 0x00 0x03 .&......
0008 0x96 0x68 0x85 0x6c 0x68 0x85 0x05 0x00 .h.lh...
0010 0x60 0x60 0x60 0x01 0x00 0x00 0x03 0x96 ```.....
0018 0x02 0xf6 0x53 0x00 0xa0 0x11 0x00 0x00 ..S.....
0020 0x00 0xa0 0x11 0x00 0x00 0x00 0x00 0x00 ........
0028 0x00 0x00 0xa0 0x64 0x01 0x00 0x00 0x00 ...d....
0030 0x01 0x5b 0x64 0x75 0xed 0x05 0x09 0x05 .[du....
0038 0x01 0x50 0x0a 0x32 0x64 0x00 0x01 0x00 .P.2d...