-
Notifications
You must be signed in to change notification settings - Fork 1
/
logs.txt
13636 lines (6818 loc) · 585 KB
/
logs.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
--------- beginning of crash
E/AndroidRuntime( 3942): FATAL EXCEPTION: Thread-238
E/AndroidRuntime( 3942): Process: com.google.android.gms, PID: 3942
E/AndroidRuntime( 3942): java.lang.RuntimeException: An error occured while executing doInBackground()
E/AndroidRuntime( 3942): at android.os.AsyncTask$3.done(AsyncTask.java:304)
E/AndroidRuntime( 3942): at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:355)
E/AndroidRuntime( 3942): at java.util.concurrent.FutureTask.setException(FutureTask.java:222)
E/AndroidRuntime( 3942): at java.util.concurrent.FutureTask.run(FutureTask.java:242)
E/AndroidRuntime( 3942): at java.lang.Thread.run(Thread.java:818)
E/AndroidRuntime( 3942): Caused by: java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/system/framework/com.android.location.provider.jar", zip file "/system/framework/com.android.media.remotedisplay.jar", zip file "/system/priv-app/GmsCore/GmsCore.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]] couldn't find "libgmscore.so"
E/AndroidRuntime( 3942): at java.lang.Runtime.loadLibrary(Runtime.java:366)
E/AndroidRuntime( 3942): at java.lang.System.loadLibrary(System.java:988)
E/AndroidRuntime( 3942): at com.google.android.gms.org.conscrypt.NativeCrypto.<clinit>(:com.google.android.gms:1026)
E/AndroidRuntime( 3942): at com.google.android.gms.org.conscrypt.OpenSSLContextImpl$TLSv12.<init>(:com.google.android.gms:152)
E/AndroidRuntime( 3942): at com.google.android.gms.org.conscrypt.OpenSSLContextImpl.getPreferred(:com.google.android.gms:55)
E/AndroidRuntime( 3942): at com.google.android.gms.common.net.SocketFactoryCreatorImpl.a(:com.google.android.gms:65)
E/AndroidRuntime( 3942): at com.google.android.gms.common.net.SocketFactoryCreatorImpl.newSocketFactory(:com.google.android.gms:32)
E/AndroidRuntime( 3942): at lff.a(:com.google.android.gms:24)
E/AndroidRuntime( 3942): at com.google.android.gms.common.net.SSLCertificateSocketFactory.getDelegate(:com.google.android.gms:242)
E/AndroidRuntime( 3942): at com.google.android.gms.common.net.SSLCertificateSocketFactory.createSocket(:com.google.android.gms:498)
E/AndroidRuntime( 3942): at com.android.okhttp.Connection.upgradeToTls(Connection.java:175)
E/AndroidRuntime( 3942): at com.android.okhttp.Connection.connect(Connection.java:155)
E/AndroidRuntime( 3942): at com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:276)
E/AndroidRuntime( 3942): at com.android.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:211)
E/AndroidRuntime( 3942): at com.android.okhttp.internal.http.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:382)
E/AndroidRuntime( 3942): at com.android.okhttp.internal.http.HttpURLConnectionImpl.connect(HttpURLConnectionImpl.java:106)
E/AndroidRuntime( 3942): at com.android.okhttp.internal.http.HttpURLConnectionImpl.getOutputStream(HttpURLConnectionImpl.java:217)
E/AndroidRuntime( 3942): at com.android.okhttp.internal.http.DelegatingHttpsURLConnection.getOutputStream(DelegatingHttpsURLConnection.java:218)
E/AndroidRuntime( 3942): at com.android.okhttp.internal.http.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:25)
E/AndroidRuntime( 3942): at jgf.a(:com.google.android.gms:677)
E/AndroidRuntime( 3942): at jgf.a(:com.google.android.gms:332)
E/AndroidRuntime( 3942): at jfw.a(:com.google.android.gms:1213)
E/AndroidRuntime( 3942): at jfw.doInBackground(:com.google.android.gms:1154)
E/AndroidRuntime( 3942): at android.os.AsyncTask$2.call(AsyncTask.java:292)
E/AndroidRuntime( 3942): at java.util.concurrent.FutureTask.run(FutureTask.java:237)
E/AndroidRuntime( 3942): ... 1 more
E/AndroidRuntime( 5539): FATAL EXCEPTION: Thread-245
E/AndroidRuntime( 5539): Process: com.google.android.gms, PID: 5539
E/AndroidRuntime( 5539): java.lang.RuntimeException: An error occured while executing doInBackground()
E/AndroidRuntime( 5539): at android.os.AsyncTask$3.done(AsyncTask.java:304)
E/AndroidRuntime( 5539): at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:355)
E/AndroidRuntime( 5539): at java.util.concurrent.FutureTask.setException(FutureTask.java:222)
E/AndroidRuntime( 5539): at java.util.concurrent.FutureTask.run(FutureTask.java:242)
E/AndroidRuntime( 5539): at java.lang.Thread.run(Thread.java:818)
E/AndroidRuntime( 5539): Caused by: java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/system/framework/com.android.location.provider.jar", zip file "/system/framework/com.android.media.remotedisplay.jar", zip file "/system/priv-app/GmsCore/GmsCore.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]] couldn't find "libgmscore.so"
E/AndroidRuntime( 5539): at java.lang.Runtime.loadLibrary(Runtime.java:366)
E/AndroidRuntime( 5539): at java.lang.System.loadLibrary(System.java:988)
E/AndroidRuntime( 5539): at com.google.android.gms.org.conscrypt.NativeCrypto.<clinit>(:com.google.android.gms:1026)
E/AndroidRuntime( 5539): at com.google.android.gms.org.conscrypt.OpenSSLContextImpl$TLSv12.<init>(:com.google.android.gms:152)
E/AndroidRuntime( 5539): at com.google.android.gms.org.conscrypt.OpenSSLContextImpl.getPreferred(:com.google.android.gms:55)
E/AndroidRuntime( 5539): at com.google.android.gms.common.net.SocketFactoryCreatorImpl.a(:com.google.android.gms:65)
E/AndroidRuntime( 5539): at com.google.android.gms.common.net.SocketFactoryCreatorImpl.newSocketFactory(:com.google.android.gms:32)
E/AndroidRuntime( 5539): at lff.a(:com.google.android.gms:24)
E/AndroidRuntime( 5539): at com.google.android.gms.common.net.SSLCertificateSocketFactory.getDelegate(:com.google.android.gms:242)
E/AndroidRuntime( 5539): at com.google.android.gms.common.net.SSLCertificateSocketFactory.createSocket(:com.google.android.gms:498)
E/AndroidRuntime( 5539): at com.android.okhttp.Connection.upgradeToTls(Connection.java:175)
E/AndroidRuntime( 5539): at com.android.okhttp.Connection.connect(Connection.java:155)
E/AndroidRuntime( 5539): at com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:276)
E/AndroidRuntime( 5539): at com.android.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:211)
E/AndroidRuntime( 5539): at com.android.okhttp.internal.http.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:382)
E/AndroidRuntime( 5539): at com.android.okhttp.internal.http.HttpURLConnectionImpl.connect(HttpURLConnectionImpl.java:106)
E/AndroidRuntime( 5539): at com.android.okhttp.internal.http.HttpURLConnectionImpl.getOutputStream(HttpURLConnectionImpl.java:217)
E/AndroidRuntime( 5539): at com.android.okhttp.internal.http.DelegatingHttpsURLConnection.getOutputStream(DelegatingHttpsURLConnection.java:218)
E/AndroidRuntime( 5539): at com.android.okhttp.internal.http.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:25)
E/AndroidRuntime( 5539): at jgf.a(:com.google.android.gms:677)
E/AndroidRuntime( 5539): at jgf.a(:com.google.android.gms:332)
E/AndroidRuntime( 5539): at jfw.a(:com.google.android.gms:1213)
E/AndroidRuntime( 5539): at jfw.doInBackground(:com.google.android.gms:1154)
E/AndroidRuntime( 5539): at android.os.AsyncTask$2.call(AsyncTask.java:292)
E/AndroidRuntime( 5539): at java.util.concurrent.FutureTask.run(FutureTask.java:237)
E/AndroidRuntime( 5539): ... 1 more
E/AndroidRuntime( 5977): FATAL EXCEPTION: main
E/AndroidRuntime( 5977): Process: com.interswitchng.interswitchpossdkdemo.pax.v2.debug, PID: 5977
E/AndroidRuntime( 5977): java.lang.RuntimeException: Unable to create application com.interswitchng.interswitchpossdkdemo.POSApplication: java.lang.Exception: PLS INSTALL NEPTUNE
E/AndroidRuntime( 5977): at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4556)
E/AndroidRuntime( 5977): at android.app.ActivityThread.access$1500(ActivityThread.java:151)
E/AndroidRuntime( 5977): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1364)
E/AndroidRuntime( 5977): at android.os.Handler.dispatchMessage(Handler.java:102)
E/AndroidRuntime( 5977): at android.os.Looper.loop(Looper.java:135)
E/AndroidRuntime( 5977): at android.app.ActivityThread.main(ActivityThread.java:5254)
E/AndroidRuntime( 5977): at java.lang.reflect.Method.invoke(Native Method)
E/AndroidRuntime( 5977): at java.lang.reflect.Method.invoke(Method.java:372)
E/AndroidRuntime( 5977): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:925)
E/AndroidRuntime( 5977): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:720)
E/AndroidRuntime( 5977): Caused by: java.lang.Exception: PLS INSTALL NEPTUNE
E/AndroidRuntime( 5977): at com.pax.neptunelite.api.Utils.checkNeptuneLiteService(Utils.java:44)
E/AndroidRuntime( 5977): at com.pax.neptunelite.api.NeptuneLiteUser.getDal(NeptuneLiteUser.java:33)
E/AndroidRuntime( 5977): at com.interswitchng.smartpos.emv.pax.services.POSDeviceImpl$Companion.setupDevice(POSDeviceImpl.kt:123)
E/AndroidRuntime( 5977): at com.interswitchng.smartpos.emv.pax.services.POSDeviceImpl$Companion.create$smart_pos_emv_pax_debug(POSDeviceImpl.kt:88)
E/AndroidRuntime( 5977): at com.interswitchng.smartpos.emv.pax.services.POSDeviceImpl$Companion.create(POSDeviceImpl.kt:111)
E/AndroidRuntime( 5977): at com.interswitchng.smartpos.emv.pax.services.POSDeviceImpl.create(POSDeviceImpl.kt)
E/AndroidRuntime( 5977): at com.interswitchng.interswitchpossdkdemo.POSApplication.configureTerminal(POSApplication.java:153)
E/AndroidRuntime( 5977): at com.interswitchng.interswitchpossdkdemo.POSApplication.onCreate(POSApplication.java:61)
E/AndroidRuntime( 5977): at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1012)
E/AndroidRuntime( 5977): at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4553)
E/AndroidRuntime( 5977): ... 9 more
--------- beginning of main
I/WifiHAL ( 775): event ignored!!
D/wpa_supplicant( 5246): wlan0: Scan completed in 0.066595 seconds
D/wpa_supplicant( 5246): nl80211: Associated on 2442 MHz
D/wpa_supplicant( 5246): nl80211: Associated with fc:dd:55:70:0b:6b
D/wpa_supplicant( 5246): nl80211: Received scan results (1 BSSes)
D/wpa_supplicant( 5246): nl80211: Scan results indicate BSS status with fc:dd:55:70:0b:6b as associated
D/wpa_supplicant( 5246): wlan0: BSS: Start scan result update 23
V/WLAN_PSA( 314): NL MSG, len[4017], NL type[0x1C] WNI type[0x5900] len[39183]
D/wpa_supplicant( 5246): BSS: last_scan_res_used=1/32
V/WLAN_PSA( 314): NL MSG, PID: 314
D/wpa_supplicant( 5246): wlan0: Scan-only results received
D/wpa_supplicant( 5246): CTRL_IFACE monitor sent successfully to /data/misc/wifi/sockets/wpa_ctrl_329-1\x00
D/wpa_supplicant( 5246): CTRL_IFACE monitor sent successfully to /data/misc/wifi/sockets/wpa_ctrl_775-3\x00
D/wpa_supplicant( 5246): wlan0: Radio work 'scan'@0xb7fb3b60 done in 0.069807 seconds
D/wpa_supplicant( 5246): wlan0: Control interface command 'BSS RANGE=0- MASK=0x21987'
D/wpa_supplicant( 5246): wlan0: Control interface command 'STATUS-NO_EVENTS'
D/BatteryMeterView( 2940): onDraw level = 95
I/SurfaceFlinger( 262): FPS: 5
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
D/BatteryMeterView( 2940): onDraw level = 100
D/BatteryMeterView( 2940): onDraw level = 55
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 65
D/BatteryMeterView( 2940): onDraw level = 75
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 85
D/BatteryMeterView( 2940): onDraw level = 95
I/SurfaceFlinger( 262): FPS: 4
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
V/WLAN_PSA( 314): NL MSG, len[4077], NL type[0x1C] WNI type[0x5900] len[54543]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/BatteryMeterView( 2940): onDraw level = 100
D/BatteryMeterView( 2940): onDraw level = 55
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 65
D/BatteryMeterView( 2940): onDraw level = 75
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 85
D/BatteryMeterView( 2940): onDraw level = 95
I/SurfaceFlinger( 262): FPS: 4
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
D/BatteryMeterView( 2940): onDraw level = 100
D/BatteryMeterView( 2940): onDraw level = 55
I/SurfaceFlinger( 262): FPS: 4
V/WLAN_PSA( 314): NL MSG, len[4023], NL type[0x1C] WNI type[0x5900] len[40719]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/BatteryMeterView( 2940): onDraw level = 65
D/BatteryMeterView( 2940): onDraw level = 75
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 85
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
D/BatteryMeterView( 2940): onDraw level = 95
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 100
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4316357 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4316357 last_ocv=4316357 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4315390 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.794413 rbatt=0.122000 slope=0.200000 ibatt=4.274266 ocv=4.315390 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=348
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4314432 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.798549 rbatt=0.122000 slope=0.200000 ibatt=4.232478 ocv=4.314433 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=348
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4313476 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.798832 rbatt=0.122000 slope=0.200000 ibatt=4.222316 ocv=4.313477 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=348
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4312522 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.798538 rbatt=0.122000 slope=0.200000 ibatt=4.216894 ocv=4.312522 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=348
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4311569 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.798538 rbatt=0.122000 slope=0.200000 ibatt=4.209080 ocv=4.311570 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=348
I/VM_BMS ( 461): power_supply_update: ocv_uv=4311569 ibatt=4209080 soc=100 seq_num=348
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
D/BatteryMeterView( 2940): onDraw level = 55
I/SurfaceFlinger( 262): FPS: 5
D/BatteryMeterView( 2940): onDraw level = 65
D/BatteryMeterView( 2940): onDraw level = 75
I/SurfaceFlinger( 262): FPS: 5
D/BatteryMeterView( 2940): onDraw level = 85
V/WLAN_PSA( 314): NL MSG, len[4018], NL type[0x1C] WNI type[0x5900] len[39439]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
D/BatteryMeterView( 2940): onDraw level = 95
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 100
D/BatteryMeterView( 2940): onDraw level = 55
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 65
D/BatteryMeterView( 2940): onDraw level = 75
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 85
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
D/BatteryMeterView( 2940): onDraw level = 95
I/SurfaceFlinger( 262): FPS: 4
V/WLAN_PSA( 314): NL MSG, len[4075], NL type[0x1C] WNI type[0x5900] len[54031]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/BatteryMeterView( 2940): onDraw level = 100
D/BatteryMeterView( 2940): onDraw level = 55
I/SurfaceFlinger( 262): FPS: 5
D/BatteryMeterView( 2940): onDraw level = 65
D/BatteryMeterView( 2940): onDraw level = 75
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 85
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
D/BatteryMeterView( 2940): onDraw level = 95
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 100
D/BatteryMeterView( 2940): onDraw level = 55
I/SurfaceFlinger( 262): FPS: 4
E/WifiStateMachine( 775): WifiStateMachine CMD_START_SCAN source -2 txSuccessRate=2.46 rxSuccessRate=5.15 targetRoamBSSID=any RSSI=-20
D/wpa_supplicant( 5246): wlan0: Control interface command 'SCAN TYPE=ONLY'
D/wpa_supplicant( 5246): wlan0: Setting scan request: 0.000000 sec
D/wpa_supplicant( 5246): wlan0: Starting AP scan for wildcard SSID
D/wpa_supplicant( 5246): wlan0: Add radio work 'scan'@0xb7fb3b60
D/wpa_supplicant( 5246): wlan0: First radio work item in the queue - schedule start immediately
D/wpa_supplicant( 5246): wlan0: Starting radio work 'scan'@0xb7fb3b60 after 0.000056 second wait
D/wpa_supplicant( 5246): wlan0: nl80211: scan request
D/wpa_supplicant( 5246): nl80211: Scan SSID - hexdump(len=0): [NULL]
I/WifiHAL ( 775): Poll result = 1
I/WifiHAL ( 775): Found some events!!!
D/WifiHAL ( 775): no_seq_check received
I/WifiHAL ( 775): event received NL80211_CMD_TRIGGER_SCAN
I/WifiHAL ( 775): event received NL80211_CMD_TRIGGER_SCAN, vendor_id = 0x0
I/WifiHAL ( 775): event ignored!!
V/WLAN_PSA( 314): NL MSG, len[914], NL type[0x11] WNI type[0x5050] len[894]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[048], NL type[0x11] WNI type[0x5050] len[028]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4081], NL type[0x1C] WNI type[0x5900] len[55567]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/wpa_supplicant( 5246): Scan requested (ret=0) - scan timeout 30 seconds
D/wpa_supplicant( 5246): nl80211: Event message available
D/wpa_supplicant( 5246): nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
D/wpa_supplicant( 5246): wlan0: nl80211: Scan trigger
D/wpa_supplicant( 5246): wlan0: Event SCAN_STARTED (49) received
D/wpa_supplicant( 5246): wlan0: Own scan request started a scan in 0.000182 seconds
D/wpa_supplicant( 5246): CTRL_IFACE monitor sent successfully to /data/misc/wifi/sockets/wpa_ctrl_329-1\x00
D/wpa_supplicant( 5246): CTRL_IFACE monitor sent successfully to /data/misc/wifi/sockets/wpa_ctrl_775-3\x00
V/WLAN_PSA( 314): NL MSG, len[4060], NL type[0x1C] WNI type[0x5900] len[50191]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4091], NL type[0x1C] WNI type[0x5900] len[58127]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[3995], NL type[0x1C] WNI type[0x5900] len[33551]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4087], NL type[0x1C] WNI type[0x5900] len[57103]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/BatteryMeterView( 2940): onDraw level = 65
V/WLAN_PSA( 314): NL MSG, len[4071], NL type[0x1C] WNI type[0x5900] len[53007]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[3992], NL type[0x1C] WNI type[0x5900] len[32783]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4059], NL type[0x1C] WNI type[0x5900] len[49935]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[3992], NL type[0x1C] WNI type[0x5900] len[32783]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[3996], NL type[0x1C] WNI type[0x5900] len[33807]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4061], NL type[0x1C] WNI type[0x5900] len[50447]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4012], NL type[0x1C] WNI type[0x5900] len[37903]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4039], NL type[0x1C] WNI type[0x5900] len[44815]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/BatteryMeterView( 2940): onDraw level = 75
I/SurfaceFlinger( 262): FPS: 4
V/WLAN_PSA( 314): NL MSG, len[4060], NL type[0x1C] WNI type[0x5900] len[50191]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/BatteryMeterView( 2940): onDraw level = 85
V/WLAN_PSA( 314): NL MSG, len[4080], NL type[0x1C] WNI type[0x5900] len[55311]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
V/WLAN_PSA( 314): NL MSG, len[4087], NL type[0x1C] WNI type[0x5900] len[57103]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/BatteryMeterView( 2940): onDraw level = 95
I/SurfaceFlinger( 262): FPS: 5
V/WLAN_PSA( 314): NL MSG, len[4072], NL type[0x1C] WNI type[0x5900] len[53263]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/BatteryMeterView( 2940): onDraw level = 100
V/WLAN_PSA( 314): NL MSG, len[4016], NL type[0x1C] WNI type[0x5900] len[38927]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4035], NL type[0x1C] WNI type[0x5900] len[43791]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4010], NL type[0x1C] WNI type[0x5900] len[37391]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4063], NL type[0x1C] WNI type[0x5900] len[50959]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[914], NL type[0x11] WNI type[0x5050] len[894]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4028], NL type[0x1C] WNI type[0x5900] len[41999]
V/WLAN_PSA( 314): NL MSG, PID: 314
I/WifiHAL ( 775): Poll result = 1
I/WifiHAL ( 775): Found some events!!!
D/WifiHAL ( 775): no_seq_check received
I/WifiHAL ( 775): event received NL80211_CMD_NEW_SCAN_RESULTS
I/WifiHAL ( 775): event received NL80211_CMD_NEW_SCAN_RESULTS, vendor_id = 0x0
I/WifiHAL ( 775): event ignored!!
D/wpa_supplicant( 5246): nl80211: Event message available
D/wpa_supplicant( 5246): nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
D/wpa_supplicant( 5246): wlan0: nl80211: New scan results available
D/wpa_supplicant( 5246): nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5720 5745 5765 5785 5805 5825
D/wpa_supplicant( 5246): wlan0: Event SCAN_RESULTS (3) received
D/wpa_supplicant( 5246): wlan0: Scan completed in 2.469817 seconds
D/wpa_supplicant( 5246): nl80211: Associated on 2442 MHz
D/wpa_supplicant( 5246): nl80211: Associated with fc:dd:55:70:0b:6b
D/wpa_supplicant( 5246): nl80211: Received scan results (1 BSSes)
D/wpa_supplicant( 5246): nl80211: Scan results indicate BSS status with fc:dd:55:70:0b:6b as associated
D/wpa_supplicant( 5246): wlan0: BSS: Start scan result update 24
D/wpa_supplicant( 5246): BSS: last_scan_res_used=1/32
D/wpa_supplicant( 5246): wlan0: Scan-only results received
D/wpa_supplicant( 5246): CTRL_IFACE monitor sent successfully to /data/misc/wifi/sockets/wpa_ctrl_329-1\x00
D/wpa_supplicant( 5246): CTRL_IFACE monitor sent successfully to /data/misc/wifi/sockets/wpa_ctrl_775-3\x00
D/wpa_supplicant( 5246): wlan0: Radio work 'scan'@0xb7fb3b60 done in 2.473330 seconds
D/wpa_supplicant( 5246): wlan0: Control interface command 'BSS RANGE=0- MASK=0x21987'
D/wpa_supplicant( 5246): wlan0: Control interface command 'STATUS-NO_EVENTS'
D/LBSSystemMonitorService( 775): handleMessage what - 4
D/Wiper_jni( 775): Send Network Location.
E/LocSvc_api_v02( 775): I/---> locClientSendReq line 2065 QMI_LOC_INJECT_WIFI_POSITION_REQ_V02
E/LocSvc_ApiV02( 775): I/<--- void globalRespCb(locClientHandleType, uint32_t, locClientRespIndUnionType, void*) line 111 QMI_LOC_INJECT_WIFI_POSITION_REQ_V02
D/BatteryMeterView( 2940): onDraw level = 55
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 65
D/BatteryMeterView( 2940): onDraw level = 75
I/SurfaceFlinger( 262): FPS: 5
D/BatteryMeterView( 2940): onDraw level = 85
D/BatteryMeterView( 2940): onDraw level = 95
I/SurfaceFlinger( 262): FPS: 4
V/WLAN_PSA( 314): NL MSG, len[4050], NL type[0x1C] WNI type[0x5900] len[47631]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
D/BatteryMeterView( 2940): onDraw level = 100
D/BatteryMeterView( 2940): onDraw level = 55
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 65
I/SurfaceFlinger( 262): FPS: 6
D/BatteryMeterView( 2940): onDraw level = 75
D/BatteryMeterView( 2940): onDraw level = 85
I/SurfaceFlinger( 262): FPS: 3
D/BatteryMeterView( 2940): onDraw level = 95
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
V/WLAN_PSA( 314): NL MSG, len[4055], NL type[0x1C] WNI type[0x5900] len[48911]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/BatteryMeterView( 2940): onDraw level = 100
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 55
D/BatteryMeterView( 2940): onDraw level = 65
D/BatteryMeterView( 2940): onDraw level = 75
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 85
D/BatteryMeterView( 2940): onDraw level = 95
I/SurfaceFlinger( 262): FPS: 4
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
D/BatteryMeterView( 2940): onDraw level = 100
D/BatteryMeterView( 2940): onDraw level = 55
I/SurfaceFlinger( 262): FPS: 4
I/PlayCommon( 3822): [109] com.google.android.play.a.g.e(220): Preparing logs for uploading
I/PlayCommon( 3822): [109] com.google.android.play.a.g.e(224): No file ready to send
D/BatteryMeterView( 2940): onDraw level = 65
D/BatteryMeterView( 2940): onDraw level = 75
I/SurfaceFlinger( 262): FPS: 4
D/BatteryMeterView( 2940): onDraw level = 85
V/WLAN_PSA( 314): NL MSG, len[4036], NL type[0x1C] WNI type[0x5900] len[44047]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/BatteryMeterView( 2940): onDraw level = 95
I/SurfaceFlinger( 262): FPS: 26
D/SurfaceFlinger( 262): Set power mode=0, type=0 flinger=0xb83255f8
D/qdhwcomposer( 262): hwc_setPowerMode: Setting mode 0 on display: 0
E/libnav ( 344): AbaSetOriginalBacklightLevel: bad input paramters
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 1
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 2
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to find HDMI node
D/wpa_supplicant( 5246): wlan0: Control interface command 'SIGNAL_POLL'
I/qdhwcomposer( 262): handle_blank_event: dpy:0 panel power state: 0
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 1
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 2
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to find HDMI node
D/qdhwcomposer( 262): hwc_setPowerMode: Done setting mode 0 on display 0
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 1
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 2
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to find HDMI node
D/SurfaceControl( 775): Excessive delay in setPowerMode(): 395ms
I/QCOM PowerHAL( 775): Got set_interactive hint
E/WifiStateMachine( 775): cancelDelayedScan -> 88
E/native ( 775): do suspend true
D/wpa_supplicant( 5246): wlan0: Control interface command 'DRIVER SETSUSPENDMODE 1'
V/WLAN_PSA( 314): NL MSG, len[048], NL type[0x11] WNI type[0x5050] len[028]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[048], NL type[0x11] WNI type[0x5050] len[028]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/SRS_Proc( 301): ParamSet string: screen_state=off
D/audio_hw_primary( 301): adev_set_parameters: enter: screen_state=off
D/audio_hw_extn( 301): audio_extn_set_anc_parameters: anc_enabled:0
E/audio_a2dp_hw( 301): adev_set_parameters: ERROR: set param called even when stream out is null
V/WLAN_PSA( 314): NL MSG, len[048], NL type[0x11] WNI type[0x5050] len[028]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4037], NL type[0x1C] WNI type[0x5900] len[44303]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[048], NL type[0x11] WNI type[0x5050] len[028]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[048], NL type[0x11] WNI type[0x5050] len[028]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[048], NL type[0x11] WNI type[0x5050] len[028]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/wpa_supplicant( 5246): wpa_driver_nl80211_driver_cmd SETSUSPENDMODE 1 len = 0, 4096
V/WLAN_PSA( 314): NL MSG, len[4030], NL type[0x1C] WNI type[0x5900] len[42511]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/PhoneStatusBar( 2940): disable: < expand ICONS* alerts SYSTEM_INFO* back home recent clock search >
D/BluetoothAdapter( 2940): 409945778: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 2940): 409945778: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 2940): 409945778: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 2940): 409945778: getState() : mService = null. Returning STATE_OFF
W/Settings( 2940): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 1
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 2
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to find HDMI node
I/SurfaceFlinger( 262): FPS: 4
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 1
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 2
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to find HDMI node
D/PhoneStatusBar( 2940): disable: < expand ICONS alerts SYSTEM_INFO back HOME* RECENT* clock SEARCH* >
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 1
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 2
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to find HDMI node
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 1
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to open fb node 2
E/qdutils ( 262): int qdutils::getHDMINode(): Failed to find HDMI node
E/WifiStateMachine( 775): WifiStateMachine CMD_START_SCAN source -2 txSuccessRate=0.00 rxSuccessRate=0.00 targetRoamBSSID=any RSSI=-18
E/WifiStateMachine( 775): WifiStateMachine L2Connected CMD_START_SCAN source -2 87, 88 -> obsolete
V/WLAN_PSA( 314): NL MSG, len[4029], NL type[0x1C] WNI type[0x5900] len[42255]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4311569 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4311569 last_ocv=4311569 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4310618 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.798514 rbatt=0.122000 slope=0.200000 ibatt=4.201476 ocv=4.310618 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=349
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4309670 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.799113 rbatt=0.122000 slope=0.200000 ibatt=4.188779 ocv=4.309670 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=349
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4308725 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.799987 rbatt=0.122000 slope=0.200000 ibatt=4.173858 ocv=4.308725 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=349
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4307784 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.801186 rbatt=0.122000 slope=0.200000 ibatt=4.156300 ocv=4.307785 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=349
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4306847 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.802049 rbatt=0.122000 slope=0.200000 ibatt=4.141530 ocv=4.306847 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=349
I/VM_BMS ( 461): power_supply_update: ocv_uv=4306847 ibatt=4141529 soc=100 seq_num=349
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4306847 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4306847 last_ocv=4306847 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4305913 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.802734 rbatt=0.122000 slope=0.200000 ibatt=4.128247 ocv=4.305913 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=350
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4304981 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.803016 rbatt=0.122000 slope=0.200000 ibatt=4.118288 ocv=4.304981 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=350
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4304049 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.802134 rbatt=0.122000 slope=0.200000 ibatt=4.117880 ocv=4.304049 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=350
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4303118 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.801540 rbatt=0.122000 slope=0.200000 ibatt=4.115111 ocv=4.303118 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=350
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4302189 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.801540 rbatt=0.122000 slope=0.200000 ibatt=4.107489 ocv=4.302189 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=350
I/VM_BMS ( 461): power_supply_update: ocv_uv=4302189 ibatt=4107489 soc=100 seq_num=350
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4065], NL type[0x1C] WNI type[0x5900] len[51471]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/MDnsDS ( 296): MDnsSdListener::Monitor poll timed out
D/MDnsDS ( 296): Going to poll with pollCount 1
V/WLAN_PSA( 314): NL MSG, len[4083], NL type[0x1C] WNI type[0x5900] len[56079]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4302189 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4302189 last_ocv=4302189 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4301262 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.801845 rbatt=0.122000 slope=0.200000 ibatt=4.097379 ocv=4.301262 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=351
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4300337 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.802142 rbatt=0.122000 slope=0.200000 ibatt=4.087358 ocv=4.300337 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=351
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4299412 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.800963 rbatt=0.122000 slope=0.200000 ibatt=4.089437 ocv=4.299412 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=351
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4298488 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.801257 rbatt=0.122000 slope=0.200000 ibatt=4.079454 ocv=4.298489 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=351
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4297568 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.802142 rbatt=0.122000 slope=0.200000 ibatt=4.064642 ocv=4.297568 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=351
I/VM_BMS ( 461): power_supply_update: ocv_uv=4297568 ibatt=4064642 soc=100 seq_num=351
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
V/WLAN_PSA( 314): NL MSG, len[4092], NL type[0x1C] WNI type[0x5900] len[58383]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4297568 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4297568 last_ocv=4297568 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4296647 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.800630 rbatt=0.122000 slope=0.200000 ibatt=4.069487 ocv=4.296647 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=352
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4295729 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.801240 rbatt=0.122000 slope=0.200000 ibatt=4.056952 ocv=4.295729 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=352
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4294813 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.801534 rbatt=0.122000 slope=0.200000 ibatt=4.047028 ocv=4.294814 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=352
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4293902 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.803003 rbatt=0.122000 slope=0.200000 ibatt=4.027495 ocv=4.293902 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=352
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4292993 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.803282 rbatt=0.122000 slope=0.200000 ibatt=4.017749 ocv=4.292993 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=352
I/VM_BMS ( 461): power_supply_update: ocv_uv=4292993 ibatt=4017748 soc=100 seq_num=352
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
V/WLAN_PSA( 314): NL MSG, len[4071], NL type[0x1C] WNI type[0x5900] len[53007]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4092], NL type[0x1C] WNI type[0x5900] len[58383]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4292993 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4292993 last_ocv=4292993 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4292083 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.802099 rbatt=0.122000 slope=0.200000 ibatt=4.019994 ocv=4.292083 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=353
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4291177 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.803580 rbatt=0.122000 slope=0.200000 ibatt=4.000411 ocv=4.291178 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=353
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4290273 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.803866 rbatt=0.122000 slope=0.200000 ibatt=3.990651 ocv=4.290274 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=353
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4289372 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.803866 rbatt=0.122000 slope=0.200000 ibatt=3.983251 ocv=4.289372 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=353
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4288470 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.802991 rbatt=0.122000 slope=0.200000 ibatt=3.983037 ocv=4.288471 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=353
I/VM_BMS ( 461): power_supply_update: ocv_uv=4288470 ibatt=3983036 soc=100 seq_num=353
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/BatteryMeterView( 2940): on charging...
D/BatteryMeterView( 2940): on charging...
D/BatteryMeterView( 2940): on charging...
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
I/art ( 3183): Rejecting re-init on previously-failed class java.lang.Class<com.google.android.gms.org.conscrypt.NativeCrypto>
I/art ( 3183): Rejecting re-init on previously-failed class java.lang.Class<com.google.android.gms.org.conscrypt.NativeCrypto>
D/NetworkMonitor/NetworkAgentInfo [WIFI () - 100]( 775): ValidatedState{ when=0 what=532488 arg1=10005 target=com.android.internal.util.StateMachine$SmHandler }
D/NetworkMonitor/NetworkAgentInfo [WIFI () - 100]( 775): DefaultState{ when=0 what=532488 arg1=10005 target=com.android.internal.util.StateMachine$SmHandler }
D/NetworkMonitor/NetworkAgentInfo [WIFI () - 100]( 775): Forcing reevaluation
D/NetworkMonitor/NetworkAgentInfo [WIFI () - 100]( 775): EvaluatingState{ when=0 what=532486 arg1=39 target=com.android.internal.util.StateMachine$SmHandler }
D/NetworkMonitor/NetworkAgentInfo [WIFI () - 100]( 775): Validated
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4288470 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4288470 last_ocv=4288470 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4287569 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.802674 rbatt=0.122000 slope=0.200000 ibatt=3.978243 ocv=4.287570 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=354
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4286671 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.803265 rbatt=0.122000 slope=0.200000 ibatt=3.966027 ocv=4.286672 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=354
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4285775 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.803227 rbatt=0.122000 slope=0.200000 ibatt=3.958986 ocv=4.285775 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=354
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4284880 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.802949 rbatt=0.122000 slope=0.200000 ibatt=3.953926 ocv=4.284881 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=354
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4283987 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.802968 rbatt=0.122000 slope=0.200000 ibatt=3.946440 ocv=4.283987 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=354
I/VM_BMS ( 461): power_supply_update: ocv_uv=4283987 ibatt=3946440 soc=100 seq_num=354
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
V/WLAN_PSA( 314): NL MSG, len[4047], NL type[0x1C] WNI type[0x5900] len[46863]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
I/PlayCommon( 3822): [109] com.google.android.play.a.g.e(220): Preparing logs for uploading
I/PlayCommon( 3822): [109] com.google.android.play.a.g.e(224): No file ready to send
V/WLAN_PSA( 314): NL MSG, len[4047], NL type[0x1C] WNI type[0x5900] len[46863]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4283987 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4283987 last_ocv=4283987 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4283093 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.801565 rbatt=0.122000 slope=0.200000 ibatt=3.950616 ocv=4.283093 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=355
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4282201 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.801878 rbatt=0.122000 slope=0.200000 ibatt=3.940731 ocv=4.282201 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=355
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4281311 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.802183 rbatt=0.122000 slope=0.200000 ibatt=3.930928 ocv=4.281312 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=355
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4280423 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.802183 rbatt=0.122000 slope=0.200000 ibatt=3.923641 ocv=4.280423 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=355
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4279536 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.801889 rbatt=0.122000 slope=0.200000 ibatt=3.918778 ocv=4.279537 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=355
I/VM_BMS ( 461): power_supply_update: ocv_uv=4279536 ibatt=3918777 soc=100 seq_num=355
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4279536 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4279536 last_ocv=4279536 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4278651 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.802409 rbatt=0.122000 slope=0.200000 ibatt=3.907253 ocv=4.278652 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=356
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4277768 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.802137 rbatt=0.122000 slope=0.200000 ibatt=3.902237 ocv=4.277768 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=356
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4276886 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.801828 rbatt=0.122000 slope=0.200000 ibatt=3.897535 ocv=4.276886 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=356
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4276005 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.801840 rbatt=0.122000 slope=0.200000 ibatt=3.890212 ocv=4.276006 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=356
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4275127 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.802416 rbatt=0.122000 slope=0.200000 ibatt=3.878278 ocv=4.275127 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=356
I/VM_BMS ( 461): power_supply_update: ocv_uv=4275127 ibatt=3878278 soc=100 seq_num=356
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4275127 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4275127 last_ocv=4275127 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4274250 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.801889 rbatt=0.122000 slope=0.200000 ibatt=3.875406 ocv=4.274250 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=357
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4273374 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.801878 rbatt=0.122000 slope=0.200000 ibatt=3.868315 ocv=4.273375 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=357
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4272500 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.801889 rbatt=0.122000 slope=0.200000 ibatt=3.861052 ocv=4.272501 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=357
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4271627 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.801301 rbatt=0.122000 slope=0.200000 ibatt=3.858709 ocv=4.271627 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=357
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4270756 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.801595 rbatt=0.122000 slope=0.200000 ibatt=3.849152 ocv=4.270756 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=357
I/VM_BMS ( 461): power_supply_update: ocv_uv=4270756 ibatt=3849151 soc=100 seq_num=357
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4270756 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4270756 last_ocv=4270756 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4269885 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.800977 rbatt=0.122000 slope=0.200000 ibatt=3.847078 ocv=4.269886 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=358
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4269016 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.800668 rbatt=0.122000 slope=0.200000 ibatt=3.842478 ocv=4.269016 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=358
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4268149 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.801249 rbatt=0.122000 slope=0.200000 ibatt=3.830602 ocv=4.268149 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=358
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4267283 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.800965 rbatt=0.122000 slope=0.200000 ibatt=3.825828 ocv=4.267283 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=358
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4266420 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.801553 rbatt=0.122000 slope=0.200000 ibatt=3.813922 ocv=4.266420 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=358
I/VM_BMS ( 461): power_supply_update: ocv_uv=4266420 ibatt=3813922 soc=100 seq_num=358
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4266420 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4266420 last_ocv=4266420 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4265556 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.800265 rbatt=0.122000 slope=0.200000 ibatt=3.817401 ocv=4.265556 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=359
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4264689 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.797902 rbatt=0.122000 slope=0.200000 ibatt=3.829676 ocv=4.264689 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=359
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4263822 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=2 fifo_avg=3.797017 rbatt=0.122000 slope=0.200000 ibatt=3.829825 ocv=4.263823 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=359
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4262959 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=3 fifo_avg=3.797902 rbatt=0.122000 slope=0.200000 ibatt=3.815478 ocv=4.262959 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=359
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4262097 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=4 fifo_avg=3.797902 rbatt=0.122000 slope=0.200000 ibatt=3.808410 ocv=4.262097 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=359
I/VM_BMS ( 461): power_supply_update: ocv_uv=4262097 ibatt=3808410 soc=100 seq_num=359
D/VM_BMS ( 461): End process_bms_data
D/VM_BMS ( 461): wake_lock released
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
I/art ( 775): Background sticky concurrent mark sweep GC freed 203802(4MB) AllocSpace objects, 0(0B) LOS objects, 10% free, 37MB/41MB, paused 13.281ms total 97.242ms
V/WLAN_PSA( 314): NL MSG, len[4006], NL type[0x1C] WNI type[0x5900] len[36367]
V/WLAN_PSA( 314): NL MSG, PID: 314
D/VM_BMS ( 461): wake_lock acquired
D/VM_BMS ( 461): New BMS data - Size=56
D/VM_BMS ( 461): Start process_bms_data
D/VM_BMS ( 461): Battery charge_cycle=0 fcc_adjust=0 rbatt_adjust=0 cycle_changed=false
D/VM_BMS ( 461): For batt_temp=255 fcc_mah=2200
D/VM_BMS ( 461): Lookup fcc_mah=2200.000000 adjusted fcc_mah=2200.000000
D/VM_BMS ( 461): For ocv=4262097 batt_temp=255 soc=100
D/VM_BMS ( 461): fifo_count=5 acc_count=0
D/VM_BMS ( 461): INIT: ocv=4262097 last_ocv=4262097 batt_temp=255 soc=100
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4261237 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=0 fifo_avg=3.798349 rbatt=0.122000 slope=0.200000 ibatt=3.797691 ocv=4.261238 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=360
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255
D/VM_BMS ( 461): Lookup rbatt=72.000000 adjusted rbatt=72.000000
D/VM_BMS ( 461): For ocv=4260378 batt_temp=255 soc=100
D/VM_BMS ( 461): FIFO=1 fifo_avg=3.797777 rbatt=0.122000 slope=0.200000 ibatt=3.795335 ocv=4.260378 soc=100 fcc_ah=2.200000 sample_count=128 sample_interval=70 seq_num=360
D/VM_BMS ( 461): For soc=100 batt_temp=255 slope=2000
D/VM_BMS ( 461): For soc=100 batt_temp=255 rbatt_sf=100
D/VM_BMS ( 461): rbatt_mohm_default=72, rbatt_mohm=72, sf=100 batt_temp=255