-
Notifications
You must be signed in to change notification settings - Fork 71
/
LBC_Fields.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 7 should actually have 12 columns, instead of 13 in line 6.
2303 lines (2303 loc) · 222 KB
/
LBC_Fields.csv
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
,18DAF1DB,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default
,18DAF1DB,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Programming
,18DAF1DB,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnostic
,18DAF1DB,0,0,1,0,0,,1060,5060,ff,StartDiagnosticSession.Supplier
,18DAF1DB,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All
,18DAF1DB,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask
,18DAF1DB,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC
,18DAF1DB,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount
,18DAF1DB,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask
,18DAF1DB,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD,1:Current sensor internal error;4:HVMux diagnosis error (HVMuxSeq or HVMuxTestSource);6:GENERAL / Algorithm;8:Communication Failure (UART communication);17:half of thermistor in SCG. Performance is degraded;18:Cell Short circuit;19:Opened Cell;20:ELECTRICAL / SC Ground or Open;21:half thermistor in SCB or OC. Performance is degraded;22:LV Power Supply is too low;23:LV Power Supply is too high;25:Pack overcurrent;26:Insulation NOK (alert charge forbidden);28:ELECTRICAL / Voltage Out Of Range;30:Cell Wire Impendance Out of Range;33:Cell undervoltage derating;36:Power Off failure;49:No signal can be read from FAN;56:Internal 32kHz deviation;65:Error on Internal Memory (Main CPU);67:Communication failure with Flash memory;68:Corruption of datas;71:Corruption (checksum mechanism) on safety datas;73:ADC conversion error;81:PROGRAMMING / Not Programmed;98:1 thermistor in deviation (compare to other thermistors);129:Invalid data received on CAN Current sensor frames;135:Missing frame(s) from CAN Current sensor;136:Bus OFF on CAN transceiver (Main CPU);146:COMPONENT / Performance;150:COMPONENT / Internal;152:Temp1 value is over the limit threshold;241:Cell overvoltage safety;242:Cell overdischarge;244:Temp1 value is under the limit threshold;249:Available Power is limited;251:Battery pack temperature is over the functionnal threshold (derating);253:Current offset too high
,18DAF1DB,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature
,18DAF1DB,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific
,18DAF1DB,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes
,18DAF1DB,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes
,18DAF1DB,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes
,18DAF1DB,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes
,18DAF1DB,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes
,18DAF1DB,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes
,18DAF1DB,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes
,18DAF1DB,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes
,18DAF1DB,16,39,1,0,0,,1903000000FF,5903000000FF,4ff,DTCRecord
,18DAF1DB,40,47,1,0,0,,1903000000FF,5903000000FF,4ff,DTCSnapshotRecordNumber
,18DAF1DB,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord
,18DAF1DB,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC
,18DAF1DB,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord
,18DAF1DB,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC
,18DAF1DB,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator
,18DAF1DB,56,87,.01,0,2,km,190600000080,590600000080,1ff,DTCExtendedData.Mileage
,18DAF1DB,16,39,1,0,0,,190600000084,590600000084,4ff,DTCRecord
,18DAF1DB,40,47,1,0,0,,190600000084,590600000084,ff,StatusOfDTC
,18DAF1DB,48,55,1,0,0,,190600000084,590600000084,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator
,18DAF1DB,56,63,1,0,0,,190600000084,590600000084,ff,DTCExtendedData.DTCOccurrenceCounter
,18DAF1DB,16,39,1,0,0,,190600000085,590600000085,4ff,DTCRecord
,18DAF1DB,40,47,1,0,0,,190600000085,590600000085,ff,StatusOfDTC
,18DAF1DB,48,55,1,0,0,,190600000085,590600000085,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator
,18DAF1DB,56,87,1,0,0,km,190600000085,590600000085,1ff,DTCExtendedData.DTCLastDiseappearMileage
,18DAF1DB,16,39,1,0,0,,190600000086,590600000086,4ff,DTCRecord
,18DAF1DB,40,47,1,0,0,,190600000086,590600000086,ff,StatusOfDTC
,18DAF1DB,48,55,1,0,0,,190600000086,590600000086,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator
,18DAF1DB,56,87,.01,-2147483648,2,km,190600000086,590600000086,1ff,DTCExtendedData.DTCTravelledDistanceFailurePresent
,18DAF1DB,16,39,1,0,0,,190600000087,590600000087,4ff,DTCRecord
,18DAF1DB,40,47,1,0,0,,190600000087,590600000087,ff,StatusOfDTC
,18DAF1DB,48,55,1,0,0,,190600000087,590600000087,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator
,18DAF1DB,56,87,.01,-2147483648,2,km,190600000087,590600000087,1ff,DTCExtendedData.DTCFirstAppearMileage
,18DAF1DB,16,39,1,0,0,,190600000088,590600000088,4ff,DTCRecord
,18DAF1DB,40,47,1,0,0,,190600000088,590600000088,ff,StatusOfDTC
,18DAF1DB,48,55,1,0,0,,190600000088,590600000088,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator
,18DAF1DB,56,71,1,0,0,,190600000088,590600000088,ff,DTCExtendedData.IUPRnumerator
,18DAF1DB,16,39,1,0,0,,190600000089,590600000089,4ff,DTCRecord
,18DAF1DB,40,47,1,0,0,,190600000089,590600000089,ff,StatusOfDTC
,18DAF1DB,48,55,1,0,0,,190600000089,590600000089,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator
,18DAF1DB,56,71,1,0,0,,190600000089,590600000089,ff,DTCExtendedData.IUPRdenominator
,18DAF1DB,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord
,18DAF1DB,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC
,18DAF1DB,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator
,18DAF1DB,56,87,.01,-2147483648,2,km,1906000000FF,5906000000FF,1ff,DTCExtendedData.DTCFirstAppearMileage
,18DAF1DB,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask
,18DAF1DB,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,6912:Low voltage supply input;6913:Cell input lines;6914:Battery pack voltage;6915:Current sensor input;6916:Few module thermistors in failure;6917:Many module thermistors in failure;6918:All module thermistors in failure;6919:Cooling thermistor input;6920:FAN speed input;6921:FAN control output;6922:Main relay control output;6923:Precharge relay control output;6924:Battery pack temperature;6925:Internal memory RAM/ROM;6926:External NV memory (EEPROM- FLASH);6927:Analog to Digital Converter;6928:Master CPU/Slave Communication;6930:Main ASSP;6932:Relay 3 control output;6933:Temp 2 thermistor input;6934:MCPU/PCB temperature sensor;6935:Air/Ambient thermistor input;6936:Interlock1;6937:Interlock2;6938:Interlock3;6939:Interlock4;6940:Busbar;6941:Current sensor 5V supply;6942:Current sensor 12V supply;6943:CAN current sensor (MCPU);6944:Relay 4 control output;6945:Flash memory failure (FOTA);6960:Module thermistor 1;6961:Module thermistor 2;6962:Module thermistor 3;6963:Module thermistor 4;6964:Module thermistor 5;6965:Module thermistor 6;6966:Module thermistor 7;6967:Module thermistor 8;6968:Module thermistor 9;6969:Module thermistor 10;6970:Module thermistor 11;6971:Module thermistor 12;6972:Module thermistor 13;6973:Module thermistor 14;6974:Module thermistor 15;6975:Module thermistor 16;6976:Module thermistor 17;6977:Module thermistor 18;6978:Module thermistor 19;6979:Module thermistor 20;6980:Module thermistor 21;6981:Module thermistor 22;6982:Module thermistor 23;6983:Module thermistor 24;6984:Module thermistor 25;6985:Module thermistor 26;6986:Module thermistor 27;6987:Module thermistor 28;6988:Module thermistor 29;6989:Module thermistor 30;6990:Module thermistor 31;6991:Module thermistor 32;7008:Cell sensing lines - Module 1;7009:Cell sensing lines - Module 2;7010:Cell sensing lines - Module 3;7011:Cell sensing lines - Module 4;7012:Cell sensing lines - Module 5;7013:Cell sensing lines - Module 6;7014:Cell sensing lines - Module 7;7015:Cell sensing lines - Module 8;7016:Cell sensing lines - Module 9;7017:Cell sensing lines - Module 10;7018:Cell sensing lines - Module 11;7019:Cell sensing lines - Module 12;7020:Cell sensing lines - Module 13;7021:Cell sensing lines - Module 14;7022:Cell sensing lines - Module 15;7023:Cell sensing lines - Module 16;7024:Cell sensing lines - Module 17;7025:Cell sensing lines - Module 18;7026:Cell sensing lines - Module 19;7027:Cell sensing lines - Module 20;7028:Cell sensing lines - Module 21;7040:State of Charge Estimation;7041:State of Health Estimation;7042:Available Power;7043:Cell SOHP;7072:Low voltage supply input (SCPU);7073:Cell input lines (SCPU);7074:Insulation Resistance measurement circuit;7075:SCPU/PCB temperature sensor;7076:Current sensor input1;7085:Internal memory RAM/ROM (SCPU);7086:External NV memory (EEPROM- FLASH)1;7087:CAN current sensor (SCPU);7089:Safety CPU/Slave Communication;7090:ASIC (redundancy);7091:Hot Spot (SPARE) sensor;7092:Pack module temperature sensor (SCPU);7093:CAN current sensor (SCPU)1;7094:Flash memory failure (FOTA) (SCPU);57664:CAN from HECM;57666:CAN from Inverter;57667:CAN from EVC/HEVC;57668:CAN from BMS1;59917:CAN controller (MCPU);64768:FOTA - SW bloc;64769:FOTA - Calibration bloc
,18DAF1DB,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature
,18DAF1DB,48,55,1,0,0,,190A,590A,ff,StatusOfDTC
,18DAF1DB,16,31,1,0,0,,1914,5914,ff,DTCDeviceIdentifier,6912:Low voltage supply input;6913:Cell input lines;6914:Battery pack voltage;6915:Current sensor input;6916:Few module thermistors in failure;6917:Many module thermistors in failure;6918:All module thermistors in failure;6919:Cooling thermistor input;6920:FAN speed input;6921:FAN control output;6922:Main relay control output;6923:Precharge relay control output;6924:Battery pack temperature;6925:Internal memory RAM/ROM;6926:External NV memory (EEPROM- FLASH);6927:Analog to Digital Converter;6928:Master CPU/Slave Communication;6930:Main ASSP;6932:Relay 3 control output;6933:Temp 2 thermistor input;6934:MCPU/PCB temperature sensor;6935:Air/Ambient thermistor input;6936:Interlock1;6937:Interlock2;6938:Interlock3;6939:Interlock4;6940:Busbar;6941:Current sensor 5V supply;6942:Current sensor 12V supply;6943:CAN current sensor (MCPU);6944:Relay 4 control output;6945:Flash memory failure (FOTA);6960:Module thermistor 1;6961:Module thermistor 2;6962:Module thermistor 3;6963:Module thermistor 4;6964:Module thermistor 5;6965:Module thermistor 6;6966:Module thermistor 7;6967:Module thermistor 8;6968:Module thermistor 9;6969:Module thermistor 10;6970:Module thermistor 11;6971:Module thermistor 12;6972:Module thermistor 13;6973:Module thermistor 14;6974:Module thermistor 15;6975:Module thermistor 16;6976:Module thermistor 17;6977:Module thermistor 18;6978:Module thermistor 19;6979:Module thermistor 20;6980:Module thermistor 21;6981:Module thermistor 22;6982:Module thermistor 23;6983:Module thermistor 24;6984:Module thermistor 25;6985:Module thermistor 26;6986:Module thermistor 27;6987:Module thermistor 28;6988:Module thermistor 29;6989:Module thermistor 30;6990:Module thermistor 31;6991:Module thermistor 32;7008:Cell sensing lines - Module 1;7009:Cell sensing lines - Module 2;7010:Cell sensing lines - Module 3;7011:Cell sensing lines - Module 4;7012:Cell sensing lines - Module 5;7013:Cell sensing lines - Module 6;7014:Cell sensing lines - Module 7;7015:Cell sensing lines - Module 8;7016:Cell sensing lines - Module 9;7017:Cell sensing lines - Module 10;7018:Cell sensing lines - Module 11;7019:Cell sensing lines - Module 12;7020:Cell sensing lines - Module 13;7021:Cell sensing lines - Module 14;7022:Cell sensing lines - Module 15;7023:Cell sensing lines - Module 16;7024:Cell sensing lines - Module 17;7025:Cell sensing lines - Module 18;7026:Cell sensing lines - Module 19;7027:Cell sensing lines - Module 20;7028:Cell sensing lines - Module 21;7040:State of Charge Estimation;7041:State of Health Estimation;7042:Available Power;7043:Cell SOHP;7072:Low voltage supply input (SCPU);7073:Cell input lines (SCPU);7074:Insulation Resistance measurement circuit;7075:SCPU/PCB temperature sensor;7076:Current sensor input1;7085:Internal memory RAM/ROM (SCPU);7086:External NV memory (EEPROM- FLASH)1;7087:CAN current sensor (SCPU);7089:Safety CPU/Slave Communication;7090:ASIC (redundancy);7091:Hot Spot (SPARE) sensor;7092:Pack module temperature sensor (SCPU);7093:CAN current sensor (SCPU)1;7094:Flash memory failure (FOTA) (SCPU);57664:CAN from HECM;57666:CAN from Inverter;57667:CAN from EVC/HEVC;57668:CAN from BMS1;59917:CAN controller (MCPU);64768:FOTA - SW bloc;64769:FOTA - Calibration bloc
,18DAF1DB,32,39,1,0,0,,1914,5914,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature
,18DAF1DB,40,47,1,0,0,,1914,5914,ff,DTCFaultDetectionCounter
,18DAF1DB,24,55,1,0,0,,229000,629000,4ff,DIDs supported in range [$9001 - $9020]
,18DAF1DB,24,39,.01,300,2,%,229001,629001,ff,Battery SOC(Zxx_bsoc_avg)
,18DAF1DB,24,39,.01,0,2,%,229002,629002,ff,Battery USOC(Wxx_usoc_avg)
,18DAF1DB,24,39,.01,0,2,%,229003,629003,ff,Battery SOH(Zxx_sohe_avg)
,18DAF1DB,24,39,.1,0,1,V,229005,629005,ff,Pack Voltage (CAN value)(Wxx_pack_v_out)
,18DAF1DB,24,55,.0009765625,0,3,V,229006,629006,1ff,Sum of all Cell Voltage(Wxx_pack_v)
,18DAF1DB,24,39,.000976563,0,3,V,229007,629007,ff,Maximum Cell Voltage(Wxx_cell_v_max)
,18DAF1DB,24,31,1,0,0,,229008,629008,ff,Number of Maximum Cell Voltage(Wxx_cell_v_max_nr)
,18DAF1DB,24,39,.000976563,0,3,V,229009,629009,ff,Minimum Cell Voltage(Wxx_cell_v_min)
,18DAF1DB,24,31,1,0,0,,22900A,62900A,ff,Number of Minimum Cell Voltage(Wxx_cell_v_min_nr)
,18DAF1DB,24,39,.03125,32640,2,A,22900C,62900C,ff,Current Sensor Offset value(Wxx_bat_i_ofs)
,18DAF1DB,24,55,.025,48000,2,A,22900D,62900D,1ff,Instant Current of Battery (CAN value)(Wxx_bat_i_10ms_out)
,18DAF1DB,24,39,.01,0,2,kW,22900E,62900E,ff,Maximum Generated Power (After Restriction)(Wxx_rgn_pw_lngtrm)
,18DAF1DB,24,39,.01,0,2,kW,22900F,62900F,ff,Maximum Available Power (After Restriction)(Wxx_dchg_pw_lngtrm)
,18DAF1DB,24,39,.000976563,0,3,V,229011,629011,ff,Low Voltage Supply(Wxx_raw_14v_mes)
,18DAF1DB,24,39,.0625,640,2,°C,229012,629012,ff,Average Temperature(Wxx_temp_avg)
,18DAF1DB,24,39,.0625,640,2,°C,229013,629013,ff,Minimum Temperature(Wxx_temp_min)
,18DAF1DB,24,39,.0625,640,2,°C,229014,629014,ff,Maximum Temperature(Wxx_temp_max)
,18DAF1DB,24,39,.01,0,2,kW,229018,629018,ff,Maximum Charge Power (after restriction)(Wxx_chg_pw)
,18DAF1DB,31,31,1,0,0,,229019,629019,ff,End Of Charge flag(Wbx_chg_end),0:Charging OK;1:Charging Stop
,18DAF1DB,30,31,1,0,0,,22901A,62901A,ff,HVBatt Interlock flag(Wsx_HVcn_ilck_out),0:Not used;1:Opened;2:Closed;3:Unavailable
,18DAF1DB,24,31,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).25
,18DAF1DB,32,39,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).24
,18DAF1DB,40,47,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).23
,18DAF1DB,48,55,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).22
,18DAF1DB,56,63,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).21
,18DAF1DB,64,71,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).20
,18DAF1DB,72,79,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).19
,18DAF1DB,80,87,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).18
,18DAF1DB,88,95,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).17
,18DAF1DB,96,103,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).16
,18DAF1DB,104,111,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).15
,18DAF1DB,112,119,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).14
,18DAF1DB,120,127,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).13
,18DAF1DB,128,135,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).12
,18DAF1DB,136,143,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).11
,18DAF1DB,144,151,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).10
,18DAF1DB,152,159,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).09
,18DAF1DB,160,167,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).08
,18DAF1DB,168,175,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).07
,18DAF1DB,176,183,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).06
,18DAF1DB,184,191,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).05
,18DAF1DB,192,199,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).04
,18DAF1DB,200,207,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).03
,18DAF1DB,208,215,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).02
,18DAF1DB,216,223,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).01
,18DAF1DB,24,31,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).19
,18DAF1DB,32,39,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).18
,18DAF1DB,40,47,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).17
,18DAF1DB,48,55,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).16
,18DAF1DB,56,63,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).15
,18DAF1DB,64,71,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).14
,18DAF1DB,72,79,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).13
,18DAF1DB,80,87,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).12
,18DAF1DB,88,95,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).11
,18DAF1DB,96,103,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).10
,18DAF1DB,104,111,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).09
,18DAF1DB,112,119,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).08
,18DAF1DB,120,127,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).07
,18DAF1DB,128,135,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).06
,18DAF1DB,136,143,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).05
,18DAF1DB,144,151,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).04
,18DAF1DB,152,159,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).03
,18DAF1DB,160,167,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).02
,18DAF1DB,168,175,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).01
,18DAF1DB,24,31,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).01
,18DAF1DB,32,39,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).02
,18DAF1DB,40,47,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).03
,18DAF1DB,48,55,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).04
,18DAF1DB,56,63,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).05
,18DAF1DB,64,71,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).06
,18DAF1DB,72,79,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).07
,18DAF1DB,80,87,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).08
,18DAF1DB,24,55,1,0,0,,229020,629020,4ff,DIDs supported in range [$9021 - $9040]
,18DAF1DB,24,39,.000976563,0,3,V,229021,629021,ff,Cell 1 Voltage(Wtx_cell_v[0])
,18DAF1DB,24,39,.000976563,0,3,V,229022,629022,ff,Cell 2 Voltage(Wtx_cell_v[1])
,18DAF1DB,24,39,.000976563,0,3,V,229023,629023,ff,Cell 3 Voltage(Wtx_cell_v[2])
,18DAF1DB,24,39,.000976563,0,3,V,229024,629024,ff,Cell 4 Voltage(Wtx_cell_v[3])
,18DAF1DB,24,39,.000976563,0,3,V,229025,629025,ff,Cell 5 Voltage(Wtx_cell_v[4])
,18DAF1DB,24,39,.000976563,0,3,V,229026,629026,ff,Cell 6 Voltage(Wtx_cell_v[5])
,18DAF1DB,24,39,.000976563,0,3,V,229027,629027,ff,Cell 7 Voltage(Wtx_cell_v[6])
,18DAF1DB,24,39,.000976563,0,3,V,229028,629028,ff,Cell 8 Voltage(Wtx_cell_v[7])
,18DAF1DB,24,39,.000976563,0,3,V,229029,629029,ff,Cell 9 Voltage(Wtx_cell_v[8])
,18DAF1DB,24,39,.000976563,0,3,V,22902A,62902A,ff,Cell 10 Voltage(Wtx_cell_v[9])
,18DAF1DB,24,39,.000976563,0,3,V,22902B,62902B,ff,Cell 11 Voltage(Wtx_cell_v[10])
,18DAF1DB,24,39,.000976563,0,3,V,22902C,62902C,ff,Cell 12 Voltage(Wtx_cell_v[11])
,18DAF1DB,24,39,.000976563,0,3,V,22902D,62902D,ff,Cell 13 Voltage(Wtx_cell_v[12])
,18DAF1DB,24,39,.000976563,0,3,V,22902E,62902E,ff,Cell 14 Voltage(Wtx_cell_v[13])
,18DAF1DB,24,39,.000976563,0,3,V,22902F,62902F,ff,Cell 15 Voltage(Wtx_cell_v[14])
,18DAF1DB,24,39,.000976563,0,3,V,229030,629030,ff,Cell 16 Voltage(Wtx_cell_v[15])
,18DAF1DB,24,39,.000976563,0,3,V,229031,629031,ff,Cell 17 Voltage(Wtx_cell_v[16])
,18DAF1DB,24,39,.000976563,0,3,V,229032,629032,ff,Cell 18 Voltage(Wtx_cell_v[17])
,18DAF1DB,24,39,.000976563,0,3,V,229033,629033,ff,Cell 19 Voltage(Wtx_cell_v[18])
,18DAF1DB,24,39,.000976563,0,3,V,229034,629034,ff,Cell 20 Voltage(Wtx_cell_v[19])
,18DAF1DB,24,39,.000976563,0,3,V,229035,629035,ff,Cell 21 Voltage(Wtx_cell_v[20])
,18DAF1DB,24,39,.000976563,0,3,V,229036,629036,ff,Cell 22 Voltage(Wtx_cell_v[21])
,18DAF1DB,24,39,.000976563,0,3,V,229037,629037,ff,Cell 23 Voltage(Wtx_cell_v[22])
,18DAF1DB,24,39,.000976563,0,3,V,229038,629038,ff,Cell 24 Voltage(Wtx_cell_v[23])
,18DAF1DB,24,39,.000976563,0,3,V,229039,629039,ff,Cell 25 Voltage(Wtx_cell_v[24])
,18DAF1DB,24,39,.000976563,0,3,V,22903A,62903A,ff,Cell 26 Voltage(Wtx_cell_v[25])
,18DAF1DB,24,39,.000976563,0,3,V,22903B,62903B,ff,Cell 27 Voltage(Wtx_cell_v[26])
,18DAF1DB,24,39,.000976563,0,3,V,22903C,62903C,ff,Cell 28 Voltage(Wtx_cell_v[27])
,18DAF1DB,24,39,.000976563,0,3,V,22903D,62903D,ff,Cell 29 Voltage(Wtx_cell_v[28])
,18DAF1DB,24,39,.000976563,0,3,V,22903E,62903E,ff,Cell 30 Voltage(Wtx_cell_v[29])
,18DAF1DB,24,39,.000976563,0,3,V,22903F,62903F,ff,Cell 31 Voltage(Wtx_cell_v[30])
,18DAF1DB,24,55,1,0,0,,229040,629040,4ff,DIDs supported in range [$9041 - $9060]
,18DAF1DB,24,39,.000976563,0,3,V,229041,629041,ff,Cell 32 Voltage(Wtx_cell_v[31])
,18DAF1DB,24,39,.000976563,0,3,V,229042,629042,ff,Cell 33 Voltage(Wtx_cell_v[32])
,18DAF1DB,24,39,.000976563,0,3,V,229043,629043,ff,Cell 34 Voltage(Wtx_cell_v[33])
,18DAF1DB,24,39,.000976563,0,3,V,229044,629044,ff,Cell 35 Voltage(Wtx_cell_v[34])
,18DAF1DB,24,39,.000976563,0,3,V,229045,629045,ff,Cell 36 Voltage(Wtx_cell_v[35])
,18DAF1DB,24,39,.000976563,0,3,V,229046,629046,ff,Cell 37 Voltage(Wtx_cell_v[36])
,18DAF1DB,24,39,.000976563,0,3,V,229047,629047,ff,Cell 38 Voltage(Wtx_cell_v[37])
,18DAF1DB,24,39,.000976563,0,3,V,229048,629048,ff,Cell 39 Voltage(Wtx_cell_v[38])
,18DAF1DB,24,39,.000976563,0,3,V,229049,629049,ff,Cell 40 Voltage(Wtx_cell_v[39])
,18DAF1DB,24,39,.000976563,0,3,V,22904A,62904A,ff,Cell 41 Voltage(Wtx_cell_v[40])
,18DAF1DB,24,39,.000976563,0,3,V,22904B,62904B,ff,Cell 42 Voltage(Wtx_cell_v[41])
,18DAF1DB,24,39,.000976563,0,3,V,22904C,62904C,ff,Cell 43 Voltage(Wtx_cell_v[42])
,18DAF1DB,24,39,.000976563,0,3,V,22904D,62904D,ff,Cell 44 Voltage(Wtx_cell_v[43])
,18DAF1DB,24,39,.000976563,0,3,V,22904E,62904E,ff,Cell 45 Voltage(Wtx_cell_v[44])
,18DAF1DB,24,39,.000976563,0,3,V,22904F,62904F,ff,Cell 46 Voltage(Wtx_cell_v[45])
,18DAF1DB,24,39,.000976563,0,3,V,229050,629050,ff,Cell 47 Voltage(Wtx_cell_v[46])
,18DAF1DB,24,39,.000976563,0,3,V,229051,629051,ff,Cell 48 Voltage(Wtx_cell_v[47])
,18DAF1DB,24,39,.000976563,0,3,V,229052,629052,ff,Cell 49 Voltage(Wtx_cell_v[48])
,18DAF1DB,24,39,.000976563,0,3,V,229053,629053,ff,Cell 50 Voltage(Wtx_cell_v[49])
,18DAF1DB,24,39,.000976563,0,3,V,229054,629054,ff,Cell 51 Voltage(Wtx_cell_v[50])
,18DAF1DB,24,39,.000976563,0,3,V,229055,629055,ff,Cell 52 Voltage(Wtx_cell_v[51])
,18DAF1DB,24,39,.000976563,0,3,V,229056,629056,ff,Cell 53 Voltage(Wtx_cell_v[52])
,18DAF1DB,24,39,.000976563,0,3,V,229057,629057,ff,Cell 54 Voltage(Wtx_cell_v[53])
,18DAF1DB,24,39,.000976563,0,3,V,229058,629058,ff,Cell 55 Voltage(Wtx_cell_v[54])
,18DAF1DB,24,39,.000976563,0,3,V,229059,629059,ff,Cell 56 Voltage(Wtx_cell_v[55])
,18DAF1DB,24,39,.000976563,0,3,V,22905A,62905A,ff,Cell 57 Voltage(Wtx_cell_v[56])
,18DAF1DB,24,39,.000976563,0,3,V,22905B,62905B,ff,Cell 58 Voltage(Wtx_cell_v[57])
,18DAF1DB,24,39,.000976563,0,3,V,22905C,62905C,ff,Cell 59 Voltage(Wtx_cell_v[58])
,18DAF1DB,24,39,.000976563,0,3,V,22905D,62905D,ff,Cell 60 Voltage(Wtx_cell_v[59])
,18DAF1DB,24,39,.000976563,0,3,V,22905E,62905E,ff,Cell 61 Voltage(Wtx_cell_v[60])
,18DAF1DB,24,39,.000976563,0,3,V,22905F,62905F,ff,Cell 62 Voltage(Wtx_cell_v[61])
,18DAF1DB,24,55,1,0,0,,229060,629060,4ff,DIDs supported in range [$9061 - $9080]
,18DAF1DB,24,39,.000976563,0,3,V,229061,629061,ff,Cell 63 Voltage(Wtx_cell_v[62])
,18DAF1DB,24,39,.000976563,0,3,V,229062,629062,ff,Cell 64 Voltage(Wtx_cell_v[63])
,18DAF1DB,24,39,.000976563,0,3,V,229063,629063,ff,Cell 65 Voltage(Wtx_cell_v[64])
,18DAF1DB,24,39,.000976563,0,3,V,229064,629064,ff,Cell 66 Voltage(Wtx_cell_v[65])
,18DAF1DB,24,39,.000976563,0,3,V,229065,629065,ff,Cell 67 Voltage(Wtx_cell_v[66])
,18DAF1DB,24,39,.000976563,0,3,V,229066,629066,ff,Cell 68 Voltage(Wtx_cell_v[67])
,18DAF1DB,24,39,.000976563,0,3,V,229067,629067,ff,Cell 69 Voltage(Wtx_cell_v[68])
,18DAF1DB,24,39,.000976563,0,3,V,229068,629068,ff,Cell 70 Voltage(Wtx_cell_v[69])
,18DAF1DB,24,39,.000976563,0,3,V,229069,629069,ff,Cell 71 Voltage(Wtx_cell_v[70])
,18DAF1DB,24,39,.000976563,0,3,V,22906A,62906A,ff,Cell 72 Voltage(Wtx_cell_v[71])
,18DAF1DB,24,39,.000976563,0,3,V,22906B,62906B,ff,Cell 73 Voltage(Wtx_cell_v[72])
,18DAF1DB,24,39,.000976563,0,3,V,22906C,62906C,ff,Cell 74 Voltage(Wtx_cell_v[73])
,18DAF1DB,24,39,.000976563,0,3,V,22906D,62906D,ff,Cell 75 Voltage(Wtx_cell_v[74])
,18DAF1DB,24,39,.000976563,0,3,V,22906E,62906E,ff,Cell 76 Voltage(Wtx_cell_v[75])
,18DAF1DB,24,39,.000976563,0,3,V,22906F,62906F,ff,Cell 77 Voltage(Wtx_cell_v[76])
,18DAF1DB,24,39,.000976563,0,3,V,229070,629070,ff,Cell 78 Voltage(Wtx_cell_v[77])
,18DAF1DB,24,39,.000976563,0,3,V,229071,629071,ff,Cell 79 Voltage(Wtx_cell_v[78])
,18DAF1DB,24,39,.000976563,0,3,V,229072,629072,ff,Cell 80 Voltage(Wtx_cell_v[79])
,18DAF1DB,24,39,.000976563,0,3,V,229073,629073,ff,Cell 81 Voltage(Wtx_cell_v[80])
,18DAF1DB,24,39,.000976563,0,3,V,229074,629074,ff,Cell 82 Voltage(Wtx_cell_v[81])
,18DAF1DB,24,39,.000976563,0,3,V,229075,629075,ff,Cell 83 Voltage(Wtx_cell_v[82])
,18DAF1DB,24,39,.000976563,0,3,V,229076,629076,ff,Cell 84 Voltage(Wtx_cell_v[83])
,18DAF1DB,24,39,.000976563,0,3,V,229077,629077,ff,Cell 85 Voltage(Wtx_cell_v[84])
,18DAF1DB,24,39,.000976563,0,3,V,229078,629078,ff,Cell 86 Voltage(Wtx_cell_v[85])
,18DAF1DB,24,39,.000976563,0,3,V,229079,629079,ff,Cell 87 Voltage(Wtx_cell_v[86])
,18DAF1DB,24,39,.000976563,0,3,V,22907A,62907A,ff,Cell 88 Voltage(Wtx_cell_v[87])
,18DAF1DB,24,39,.000976563,0,3,V,22907B,62907B,ff,Cell 89 Voltage(Wtx_cell_v[88])
,18DAF1DB,24,39,.000976563,0,3,V,22907C,62907C,ff,Cell 90 Voltage(Wtx_cell_v[89])
,18DAF1DB,24,39,.000976563,0,3,V,22907D,62907D,ff,Cell 91 Voltage(Wtx_cell_v[90])
,18DAF1DB,24,39,.000976563,0,3,V,22907E,62907E,ff,Cell 92 Voltage(Wtx_cell_v[91])
,18DAF1DB,24,39,.000976563,0,3,V,22907F,62907F,ff,Cell 93 Voltage(Wtx_cell_v[92])
,18DAF1DB,24,55,1,0,0,,229080,629080,4ff,DIDs supported in range [$9081 - $90A0]
,18DAF1DB,24,39,.000976563,0,3,V,229081,629081,ff,Cell 94 Voltage(Wtx_cell_v[93])
,18DAF1DB,24,39,.000976563,0,3,V,229082,629082,ff,Cell 95 Voltage(Wtx_cell_v[94])
,18DAF1DB,24,39,.000976563,0,3,V,229083,629083,ff,Cell 96 Voltage(Wtx_cell_v[95])
,18DAF1DB,24,39,.000976563,0,3,V,229084,629084,ff,Cell 97 Voltage(Wtx_cell_v[96])
,18DAF1DB,24,39,.000976563,0,3,V,229085,629085,ff,Cell 98 Voltage(Wtx_cell_v[97])
,18DAF1DB,24,39,.000976563,0,3,V,229086,629086,ff,Cell 99 Voltage(Wtx_cell_v[98])
,18DAF1DB,24,39,.000976563,0,3,V,229087,629087,ff,Cell 100 Voltage(Wtx_cell_v[99])
,18DAF1DB,24,39,.000976563,0,3,V,229088,629088,ff,Cell 101 Voltage(Wtx_cell_v[100])
,18DAF1DB,24,39,.000976563,0,3,V,229089,629089,ff,Cell 102 Voltage(Wtx_cell_v[101])
,18DAF1DB,24,39,.000976563,0,3,V,22908A,62908A,ff,Cell 103 Voltage(Wtx_cell_v[102])
,18DAF1DB,24,39,.000976563,0,3,V,22908B,62908B,ff,Cell 104 Voltage(Wtx_cell_v[103])
,18DAF1DB,24,39,.000976563,0,3,V,22908C,62908C,ff,Cell 105 Voltage(Wtx_cell_v[104])
,18DAF1DB,24,39,.000976563,0,3,V,22908D,62908D,ff,Cell 106 Voltage(Wtx_cell_v[105])
,18DAF1DB,24,39,.000976563,0,3,V,22908E,62908E,ff,Cell 107 Voltage(Wtx_cell_v[106])
,18DAF1DB,24,39,.000976563,0,3,V,22908F,62908F,ff,Cell 108 Voltage(Wtx_cell_v[107])
,18DAF1DB,24,39,.000976563,0,3,V,229090,629090,ff,Cell 109 Voltage(Wtx_cell_v[108])
,18DAF1DB,24,39,.000976563,0,3,V,229091,629091,ff,Cell 110 Voltage(Wtx_cell_v[109])
,18DAF1DB,24,39,.000976563,0,3,V,229092,629092,ff,Cell 111 Voltage(Wtx_cell_v[110])
,18DAF1DB,24,39,.000976563,0,3,V,229093,629093,ff,Cell 112 Voltage(Wtx_cell_v[111])
,18DAF1DB,24,39,.000976563,0,3,V,229094,629094,ff,Cell 113 Voltage(Wtx_cell_v[112])
,18DAF1DB,24,39,.000976563,0,3,V,229095,629095,ff,Cell 114 Voltage(Wtx_cell_v[113])
,18DAF1DB,24,39,.000976563,0,3,V,229096,629096,ff,Cell 115 Voltage(Wtx_cell_v[114])
,18DAF1DB,24,39,.000976563,0,3,V,229097,629097,ff,Cell 116 Voltage(Wtx_cell_v[115])
,18DAF1DB,24,39,.000976563,0,3,V,229098,629098,ff,Cell 117 Voltage(Wtx_cell_v[116])
,18DAF1DB,24,39,.000976563,0,3,V,229099,629099,ff,Cell 118 Voltage(Wtx_cell_v[117])
,18DAF1DB,24,39,.000976563,0,3,V,22909A,62909A,ff,Cell 119 Voltage(Wtx_cell_v[118])
,18DAF1DB,24,39,.000976563,0,3,V,22909B,62909B,ff,Cell 120 Voltage(Wtx_cell_v[119])
,18DAF1DB,24,39,.000976563,0,3,V,22909C,62909C,ff,Cell 121 Voltage(Wtx_cell_v[120])
,18DAF1DB,24,39,.000976563,0,3,V,22909D,62909D,ff,Cell 122 Voltage(Wtx_cell_v[121])
,18DAF1DB,24,39,.000976563,0,3,V,22909E,62909E,ff,Cell 123 Voltage(Wtx_cell_v[122])
,18DAF1DB,24,39,.000976563,0,3,V,22909F,62909F,ff,Cell 124 Voltage(Wtx_cell_v[123])
,18DAF1DB,24,55,1,0,0,,2290A0,6290A0,4ff,DIDs supported in range [$90A1 - $90C0]
,18DAF1DB,24,39,.000976563,0,3,V,2290A1,6290A1,ff,Cell 125 Voltage(Wtx_cell_v[124])
,18DAF1DB,24,39,.000976563,0,3,V,2290A2,6290A2,ff,Cell 126 Voltage(Wtx_cell_v[125])
,18DAF1DB,24,39,.000976563,0,3,V,2290A3,6290A3,ff,Cell 127 Voltage(Wtx_cell_v[126])
,18DAF1DB,24,39,.000976563,0,3,V,2290A4,6290A4,ff,Cell 128 Voltage(Wtx_cell_v[127])
,18DAF1DB,24,39,.000976563,0,3,V,2290A5,6290A5,ff,Cell 129 Voltage(Wtx_cell_v[128])
,18DAF1DB,24,39,.000976563,0,3,V,2290A6,6290A6,ff,Cell 130 Voltage(Wtx_cell_v[129])
,18DAF1DB,24,39,.000976563,0,3,V,2290A7,6290A7,ff,Cell 131 Voltage(Wtx_cell_v[130])
,18DAF1DB,24,39,.000976563,0,3,V,2290A8,6290A8,ff,Cell 132 Voltage(Wtx_cell_v[131])
,18DAF1DB,24,39,.000976563,0,3,V,2290A9,6290A9,ff,Cell 133 Voltage(Wtx_cell_v[132])
,18DAF1DB,24,39,.000976563,0,3,V,2290AA,6290AA,ff,Cell 134 Voltage(Wtx_cell_v[133])
,18DAF1DB,24,39,.000976563,0,3,V,2290AB,6290AB,ff,Cell 135 Voltage(Wtx_cell_v[134])
,18DAF1DB,24,39,.000976563,0,3,V,2290AC,6290AC,ff,Cell 136 Voltage(Wtx_cell_v[135])
,18DAF1DB,24,39,.000976563,0,3,V,2290AD,6290AD,ff,Cell 137 Voltage(Wtx_cell_v[136])
,18DAF1DB,24,39,.000976563,0,3,V,2290AE,6290AE,ff,Cell 138 Voltage(Wtx_cell_v[137])
,18DAF1DB,24,39,.000976563,0,3,V,2290AF,6290AF,ff,Cell 139 Voltage(Wtx_cell_v[138])
,18DAF1DB,24,39,.000976563,0,3,V,2290B0,6290B0,ff,Cell 140 Voltage(Wtx_cell_v[139])
,18DAF1DB,24,39,.000976563,0,3,V,2290B1,6290B1,ff,Cell 141 Voltage(Wtx_cell_v[140])
,18DAF1DB,24,39,.000976563,0,3,V,2290B2,6290B2,ff,Cell 142 Voltage(Wtx_cell_v[141])
,18DAF1DB,24,39,.000976563,0,3,V,2290B3,6290B3,ff,Cell 143 Voltage(Wtx_cell_v[142])
,18DAF1DB,24,39,.000976563,0,3,V,2290B4,6290B4,ff,Cell 144 Voltage(Wtx_cell_v[143])
,18DAF1DB,24,39,.000976563,0,3,V,2290B5,6290B5,ff,Cell 145 Voltage(Wtx_cell_v[144])
,18DAF1DB,24,39,.000976563,0,3,V,2290B6,6290B6,ff,Cell 146 Voltage(Wtx_cell_v[145])
,18DAF1DB,24,39,.000976563,0,3,V,2290B7,6290B7,ff,Cell 147 Voltage(Wtx_cell_v[146])
,18DAF1DB,24,39,.000976563,0,3,V,2290B8,6290B8,ff,Cell 148 Voltage(Wtx_cell_v[147])
,18DAF1DB,24,39,.000976563,0,3,V,2290B9,6290B9,ff,Cell 149 Voltage(Wtx_cell_v[148])
,18DAF1DB,24,39,.000976563,0,3,V,2290BA,6290BA,ff,Cell 150 Voltage(Wtx_cell_v[149])
,18DAF1DB,24,39,.000976563,0,3,V,2290BB,6290BB,ff,Cell 151 Voltage(Wtx_cell_v[150])
,18DAF1DB,24,39,.000976563,0,3,V,2290BC,6290BC,ff,Cell 152 Voltage(Wtx_cell_v[151])
,18DAF1DB,24,39,.000976563,0,3,V,2290BD,6290BD,ff,Cell 153 Voltage(Wtx_cell_v[152])
,18DAF1DB,24,39,.000976563,0,3,V,2290BE,6290BE,ff,Cell 154 Voltage(Wtx_cell_v[153])
,18DAF1DB,24,39,.000976563,0,3,V,2290BF,6290BF,ff,Cell 155 Voltage(Wtx_cell_v[154])
,18DAF1DB,24,55,1,0,0,,2290C0,6290C0,4ff,DIDs supported in range [$90C1 - $90E0]
,18DAF1DB,24,39,.000976563,0,3,V,2290C1,6290C1,ff,Cell 156 Voltage(Wtx_cell_v[155])
,18DAF1DB,24,39,.000976563,0,3,V,2290C2,6290C2,ff,Cell 157 Voltage(Wtx_cell_v[156])
,18DAF1DB,24,39,.000976563,0,3,V,2290C3,6290C3,ff,Cell 158 Voltage(Wtx_cell_v[157])
,18DAF1DB,24,39,.000976563,0,3,V,2290C4,6290C4,ff,Cell 159 Voltage(Wtx_cell_v[158])
,18DAF1DB,24,39,.000976563,0,3,V,2290C5,6290C5,ff,Cell 160 Voltage(Wtx_cell_v[159])
,18DAF1DB,24,39,.000976563,0,3,V,2290C6,6290C6,ff,Cell 161 Voltage(Wtx_cell_v[160])
,18DAF1DB,24,39,.000976563,0,3,V,2290C7,6290C7,ff,Cell 162 Voltage(Wtx_cell_v[161])
,18DAF1DB,24,39,.000976563,0,3,V,2290C8,6290C8,ff,Cell 163 Voltage(Wtx_cell_v[162])
,18DAF1DB,24,39,.000976563,0,3,V,2290C9,6290C9,ff,Cell 164 Voltage(Wtx_cell_v[163])
,18DAF1DB,24,39,.000976563,0,3,V,2290CA,6290CA,ff,Cell 165 Voltage(Wtx_cell_v[164])
,18DAF1DB,24,39,.000976563,0,3,V,2290CB,6290CB,ff,Cell 166 Voltage(Wtx_cell_v[165])
,18DAF1DB,24,39,.000976563,0,3,V,2290CC,6290CC,ff,Cell 167 Voltage(Wtx_cell_v[166])
,18DAF1DB,24,39,.000976563,0,3,V,2290CD,6290CD,ff,Cell 168 Voltage(Wtx_cell_v[167])
,18DAF1DB,24,39,.000976563,0,3,V,2290CE,6290CE,ff,Cell 169 Voltage(Wtx_cell_v[168])
,18DAF1DB,24,39,.000976563,0,3,V,2290CF,6290CF,ff,Cell 170 Voltage(Wtx_cell_v[169])
,18DAF1DB,24,39,.000976563,0,3,V,2290D0,6290D0,ff,Cell 171 Voltage(Wtx_cell_v[170])
,18DAF1DB,24,39,.000976563,0,3,V,2290D1,6290D1,ff,Cell 172 Voltage(Wtx_cell_v[171])
,18DAF1DB,24,39,.000976563,0,3,V,2290D2,6290D2,ff,Cell 173 Voltage(Wtx_cell_v[172])
,18DAF1DB,24,39,.000976563,0,3,V,2290D3,6290D3,ff,Cell 174 Voltage(Wtx_cell_v[173])
,18DAF1DB,24,39,.000976563,0,3,V,2290D4,6290D4,ff,Cell 175 Voltage(Wtx_cell_v[174])
,18DAF1DB,24,39,.000976563,0,3,V,2290D5,6290D5,ff,Cell 176 Voltage(Wtx_cell_v[175])
,18DAF1DB,24,39,.000976563,0,3,V,2290D6,6290D6,ff,Cell 177 Voltage(Wtx_cell_v[176])
,18DAF1DB,24,39,.000976563,0,3,V,2290D7,6290D7,ff,Cell 178 Voltage(Wtx_cell_v[177])
,18DAF1DB,24,39,.000976563,0,3,V,2290D8,6290D8,ff,Cell 179 Voltage(Wtx_cell_v[178])
,18DAF1DB,24,39,.000976563,0,3,V,2290D9,6290D9,ff,Cell 180 Voltage(Wtx_cell_v[179])
,18DAF1DB,24,39,.000976563,0,3,V,2290DA,6290DA,ff,Cell 181 Voltage(Wtx_cell_v[180])
,18DAF1DB,24,39,.000976563,0,3,V,2290DB,6290DB,ff,Cell 182 Voltage(Wtx_cell_v[181])
,18DAF1DB,24,39,.000976563,0,3,V,2290DC,6290DC,ff,Cell 183 Voltage(Wtx_cell_v[182])
,18DAF1DB,24,39,.000976563,0,3,V,2290DD,6290DD,ff,Cell 184 Voltage(Wtx_cell_v[183])
,18DAF1DB,24,39,.000976563,0,3,V,2290DE,6290DE,ff,Cell 185 Voltage(Wtx_cell_v[184])
,18DAF1DB,24,39,.000976563,0,3,V,2290DF,6290DF,ff,Cell 186 Voltage(Wtx_cell_v[185])
,18DAF1DB,24,55,1,0,0,,2290E0,6290E0,4ff,DIDs supported in range [$90E1 - $9100]
,18DAF1DB,24,39,.000976563,0,3,V,2290E1,6290E1,ff,Cell 187 Voltage(Wtx_cell_v[186])
,18DAF1DB,24,39,.000976563,0,3,V,2290E2,6290E2,ff,Cell 188 Voltage(Wtx_cell_v[187])
,18DAF1DB,24,39,.000976563,0,3,V,2290E3,6290E3,ff,Cell 189 Voltage(Wtx_cell_v[188])
,18DAF1DB,24,39,.000976563,0,3,V,2290E4,6290E4,ff,Cell 190 Voltage(Wtx_cell_v[189])
,18DAF1DB,24,39,.000976563,0,3,V,2290E5,6290E5,ff,Cell 191 Voltage(Wtx_cell_v[190])
,18DAF1DB,24,39,.000976563,0,3,V,2290E6,6290E6,ff,Cell 192 Voltage(Wtx_cell_v[191])
,18DAF1DB,24,39,.000976563,0,3,V,2290E7,6290E7,ff,Cell 193 Voltage(Wtx_cell_v[192])
,18DAF1DB,24,39,.000976563,0,3,V,2290E8,6290E8,ff,Cell 194 Voltage(Wtx_cell_v[193])
,18DAF1DB,24,39,.000976563,0,3,V,2290E9,6290E9,ff,Cell 195 Voltage(Wtx_cell_v[194])
,18DAF1DB,24,39,.000976563,0,3,V,2290EA,6290EA,ff,Cell 196 Voltage(Wtx_cell_v[195])
,18DAF1DB,24,39,.000976563,0,3,V,2290EB,6290EB,ff,Cell 197 Voltage(Wtx_cell_v[196])
,18DAF1DB,24,39,.000976563,0,3,V,2290EC,6290EC,ff,Cell 198 Voltage(Wtx_cell_v[197])
,18DAF1DB,24,39,.000976563,0,3,V,2290ED,6290ED,ff,Cell 199 Voltage(Wtx_cell_v[198])
,18DAF1DB,24,39,.000976563,0,3,V,2290EE,6290EE,ff,Cell 200 Voltage(Wtx_cell_v[199])
,18DAF1DB,24,39,.000976563,0,3,V,2290EF,6290EF,ff,Cell 201 Voltage(Wtx_cell_v[200])
,18DAF1DB,24,39,.000976563,0,3,V,2290F0,6290F0,ff,Cell 202 Voltage(Wtx_cell_v[201])
,18DAF1DB,24,39,.000976563,0,3,V,2290F1,6290F1,ff,Cell 203 Voltage(Wtx_cell_v[202])
,18DAF1DB,24,39,.000976563,0,3,V,2290F2,6290F2,ff,Cell 204 Voltage(Wtx_cell_v[203])
,18DAF1DB,24,39,.000976563,0,3,V,2290F3,6290F3,ff,Cell 205 Voltage(Wtx_cell_v[204])
,18DAF1DB,24,39,.000976563,0,3,V,2290F4,6290F4,ff,Cell 206 Voltage(Wtx_cell_v[205])
,18DAF1DB,24,39,.000976563,0,3,V,2290F5,6290F5,ff,Cell 207 Voltage(Wtx_cell_v[206])
,18DAF1DB,24,39,.000976563,0,3,V,2290F6,6290F6,ff,Cell 208 Voltage(Wtx_cell_v[207])
,18DAF1DB,24,39,.000976563,0,3,V,2290F7,6290F7,ff,Cell 209 Voltage(Wtx_cell_v[208])
,18DAF1DB,24,39,.000976563,0,3,V,2290F8,6290F8,ff,Cell 210 Voltage(Wtx_cell_v[209])
,18DAF1DB,24,39,.000976563,0,3,V,2290F9,6290F9,ff,Cell 211 Voltage(Wtx_cell_v[210])
,18DAF1DB,24,39,.000976563,0,3,V,2290FA,6290FA,ff,Cell 212 Voltage(Wtx_cell_v[211])
,18DAF1DB,24,39,.000976563,0,3,V,2290FB,6290FB,ff,Cell 213 Voltage(Wtx_cell_v[212])
,18DAF1DB,24,39,.000976563,0,3,V,2290FC,6290FC,ff,Cell 214 Voltage(Wtx_cell_v[213])
,18DAF1DB,24,39,.000976563,0,3,V,2290FD,6290FD,ff,Cell 215 Voltage(Wtx_cell_v[214])
,18DAF1DB,24,39,.000976563,0,3,V,2290FE,6290FE,ff,Cell 216 Voltage(Wtx_cell_v[215])
,18DAF1DB,24,39,.000976563,0,3,V,2290FF,6290FF,ff,Cell 217 Voltage(Wtx_cell_v[216])
,18DAF1DB,24,55,1,0,0,,229100,629100,4ff,DIDs supported in range [$9101 - $9120]
,18DAF1DB,24,39,.000976563,0,3,V,229101,629101,ff,Cell 218 Voltage(Wtx_cell_v[217])
,18DAF1DB,24,39,.000976563,0,3,V,229102,629102,ff,Cell 219 Voltage(Wtx_cell_v[218])
,18DAF1DB,24,39,.000976563,0,3,V,229103,629103,ff,Cell 220 Voltage(Wtx_cell_v[219])
,18DAF1DB,24,39,.000976563,0,3,V,229104,629104,ff,Cell 221 Voltage(Wtx_cell_v[220])
,18DAF1DB,24,39,.000976563,0,3,V,229105,629105,ff,Cell 222 Voltage(Wtx_cell_v[221])
,18DAF1DB,24,39,.000976563,0,3,V,229106,629106,ff,Cell 223 Voltage(Wtx_cell_v[222])
,18DAF1DB,24,39,.000976563,0,3,V,229107,629107,ff,Cell 224 Voltage(Wtx_cell_v[223])
,18DAF1DB,24,39,.000976563,0,3,V,229108,629108,ff,Cell 225 Voltage(Wtx_cell_v[224])
,18DAF1DB,24,39,.000976563,0,3,V,229109,629109,ff,Cell 226 Voltage(Wtx_cell_v[225])
,18DAF1DB,24,39,.000976563,0,3,V,22910A,62910A,ff,Cell 227 Voltage(Wtx_cell_v[226])
,18DAF1DB,24,39,.000976563,0,3,V,22910B,62910B,ff,Cell 228 Voltage(Wtx_cell_v[227])
,18DAF1DB,24,39,.000976563,0,3,V,22910C,62910C,ff,Cell 229 Voltage(Wtx_cell_v[228])
,18DAF1DB,24,39,.000976563,0,3,V,22910D,62910D,ff,Cell 230 Voltage(Wtx_cell_v[229])
,18DAF1DB,24,39,.000976563,0,3,V,22910E,62910E,ff,Cell 231 Voltage(Wtx_cell_v[230])
,18DAF1DB,24,39,.000976563,0,3,V,22910F,62910F,ff,Cell 232 Voltage(Wtx_cell_v[231])
,18DAF1DB,24,39,.000976563,0,3,V,229110,629110,ff,Cell 233 Voltage(Wtx_cell_v[232])
,18DAF1DB,24,39,.000976563,0,3,V,229111,629111,ff,Cell 234 Voltage(Wtx_cell_v[233])
,18DAF1DB,24,39,.000976563,0,3,V,229112,629112,ff,Cell 235 Voltage(Wtx_cell_v[234])
,18DAF1DB,24,39,.000976563,0,3,V,229113,629113,ff,Cell 236 Voltage(Wtx_cell_v[235])
,18DAF1DB,24,39,.000976563,0,3,V,229114,629114,ff,Cell 237 Voltage(Wtx_cell_v[236])
,18DAF1DB,24,39,.000976563,0,3,V,229115,629115,ff,Cell 238 Voltage(Wtx_cell_v[237])
,18DAF1DB,24,39,.000976563,0,3,V,229116,629116,ff,Cell 239 Voltage(Wtx_cell_v[238])
,18DAF1DB,24,39,.000976563,0,3,V,229117,629117,ff,Cell 240 Voltage(Wtx_cell_v[239])
,18DAF1DB,24,39,.000976563,0,3,V,229118,629118,ff,Cell 241 Voltage(Wtx_cell_v[240])
,18DAF1DB,24,39,.000976563,0,3,V,229119,629119,ff,Cell 242 Voltage(Wtx_cell_v[241])
,18DAF1DB,24,39,.000976563,0,3,V,22911A,62911A,ff,Cell 243 Voltage(Wtx_cell_v[242])
,18DAF1DB,24,39,.000976563,0,3,V,22911B,62911B,ff,Cell 244 Voltage(Wtx_cell_v[243])
,18DAF1DB,24,39,.000976563,0,3,V,22911C,62911C,ff,Cell 245 Voltage(Wtx_cell_v[244])
,18DAF1DB,24,39,.000976563,0,3,V,22911D,62911D,ff,Cell 246 Voltage(Wtx_cell_v[245])
,18DAF1DB,24,39,.000976563,0,3,V,22911E,62911E,ff,Cell 247 Voltage(Wtx_cell_v[246])
,18DAF1DB,24,39,.000976563,0,3,V,22911F,62911F,ff,Cell 248 Voltage(Wtx_cell_v[247])
,18DAF1DB,24,55,1,0,0,,229120,629120,4ff,DIDs supported in range [$9121 - $9140]
,18DAF1DB,24,39,.000976563,0,3,V,229121,629121,ff,Cell 249 Voltage(Wtx_cell_v[248])
,18DAF1DB,24,39,.000976563,0,3,V,229122,629122,ff,Cell 250 Voltage(Wtx_cell_v[249])
,18DAF1DB,24,39,.000976563,0,3,V,229123,629123,ff,Cell 251 Voltage(Wtx_cell_v[250])
,18DAF1DB,24,39,.000976563,0,3,V,229124,629124,ff,Cell 252 Voltage(Wtx_cell_v[251])
,18DAF1DB,24,39,.000976563,0,3,V,229125,629125,ff,Cell 253 Voltage(Wtx_cell_v[252])
,18DAF1DB,24,39,.000976563,0,3,V,229126,629126,ff,Cell 254 Voltage(Wtx_cell_v[253])
,18DAF1DB,24,39,.000976563,0,3,V,229127,629127,ff,Cell 255 Voltage(Wtx_cell_v[254])
,18DAF1DB,24,39,.000976563,0,3,V,229128,629128,ff,Cell 256 Voltage(Wtx_cell_v[255])
,18DAF1DB,27,27,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).20,0:No failure;1:Slave No.21 failure
,18DAF1DB,28,28,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).19,0:No failure;1:Slave No.20 failure
,18DAF1DB,29,29,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).18,0:No failure;1:Slave No.19 failure
,18DAF1DB,30,30,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).17,0:No failure;1:Slave No.18 failure
,18DAF1DB,31,31,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).16,0:No failure;1:Slave No.17 failure
,18DAF1DB,32,32,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).15,0:No failure;1:Slave No.16 failure
,18DAF1DB,33,33,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).14,0:No failure;1:Slave No.15 failure
,18DAF1DB,34,34,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).13,0:No failure;1:Slave No.14 failure
,18DAF1DB,35,35,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).12,0:No failure;1:Slave No.13 failure
,18DAF1DB,36,36,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).11,0:No failure;1:Slave No.12 failure
,18DAF1DB,37,37,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).10,0:No failure;1:Slave No.11 failure
,18DAF1DB,38,38,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).09,0:No failure;1:Slave No.10 failure
,18DAF1DB,39,39,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).08,0:No failure;1:Slave No.9 failure
,18DAF1DB,40,40,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).07,0:No failure;1:Slave No.8 failure
,18DAF1DB,41,41,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).06,0:No failure;1:Slave No.7 failure
,18DAF1DB,42,42,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).05,0:No failure;1:Slave No.6 failure
,18DAF1DB,43,43,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).04,0:No failure;1:Slave No.5 failure
,18DAF1DB,44,44,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).03,0:No failure;1:Slave No.4 failure
,18DAF1DB,45,45,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).02,0:No failure;1:Slave No.3 failure
,18DAF1DB,46,46,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).01,0:No failure;1:Slave No.2 failure
,18DAF1DB,47,47,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).00,0:No failure;1:Slave No.1 failure
,18DAF1DB,24,24,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).256
,18DAF1DB,25,25,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).255
,18DAF1DB,26,26,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).254
,18DAF1DB,27,27,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).253
,18DAF1DB,28,28,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).252
,18DAF1DB,29,29,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).251
,18DAF1DB,30,30,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).250
,18DAF1DB,31,31,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).249
,18DAF1DB,32,32,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).248
,18DAF1DB,33,33,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).247
,18DAF1DB,34,34,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).246
,18DAF1DB,35,35,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).245
,18DAF1DB,36,36,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).244
,18DAF1DB,37,37,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).243
,18DAF1DB,38,38,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).242
,18DAF1DB,39,39,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).241
,18DAF1DB,40,40,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).240
,18DAF1DB,41,41,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).239
,18DAF1DB,42,42,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).238
,18DAF1DB,43,43,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).237
,18DAF1DB,44,44,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).236
,18DAF1DB,45,45,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).235
,18DAF1DB,46,46,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).234
,18DAF1DB,47,47,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).233
,18DAF1DB,48,48,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).232
,18DAF1DB,49,49,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).231
,18DAF1DB,50,50,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).230
,18DAF1DB,51,51,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).229
,18DAF1DB,52,52,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).228
,18DAF1DB,53,53,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).227
,18DAF1DB,54,54,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).226
,18DAF1DB,55,55,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).225
,18DAF1DB,56,56,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).224
,18DAF1DB,57,57,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).223
,18DAF1DB,58,58,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).222
,18DAF1DB,59,59,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).221
,18DAF1DB,60,60,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).220
,18DAF1DB,61,61,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).219
,18DAF1DB,62,62,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).218
,18DAF1DB,63,63,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).217
,18DAF1DB,64,64,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).216
,18DAF1DB,65,65,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).215
,18DAF1DB,66,66,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).214
,18DAF1DB,67,67,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).213
,18DAF1DB,68,68,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).212
,18DAF1DB,69,69,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).211
,18DAF1DB,70,70,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).210
,18DAF1DB,71,71,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).209
,18DAF1DB,72,72,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).208
,18DAF1DB,73,73,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).207
,18DAF1DB,74,74,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).206
,18DAF1DB,75,75,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).205
,18DAF1DB,76,76,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).204
,18DAF1DB,77,77,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).203
,18DAF1DB,78,78,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).202
,18DAF1DB,79,79,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).201
,18DAF1DB,80,80,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).200
,18DAF1DB,81,81,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).199
,18DAF1DB,82,82,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).198
,18DAF1DB,83,83,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).197
,18DAF1DB,84,84,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).196
,18DAF1DB,85,85,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).195
,18DAF1DB,86,86,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).194
,18DAF1DB,88,88,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).192
,18DAF1DB,89,89,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).191
,18DAF1DB,90,90,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).190
,18DAF1DB,91,91,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).189
,18DAF1DB,92,92,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).188
,18DAF1DB,93,93,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).187
,18DAF1DB,94,94,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).186
,18DAF1DB,95,95,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).193
,18DAF1DB,96,96,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).184
,18DAF1DB,97,97,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).183
,18DAF1DB,98,98,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).182
,18DAF1DB,99,99,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).181
,18DAF1DB,100,100,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).180
,18DAF1DB,101,101,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).179
,18DAF1DB,102,102,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).178
,18DAF1DB,103,103,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).177
,18DAF1DB,104,104,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).176
,18DAF1DB,105,105,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).175
,18DAF1DB,106,106,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).174
,18DAF1DB,107,107,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).173
,18DAF1DB,108,108,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).172
,18DAF1DB,109,109,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).171
,18DAF1DB,110,110,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).170
,18DAF1DB,111,111,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).169
,18DAF1DB,112,112,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).168
,18DAF1DB,113,113,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).167
,18DAF1DB,114,114,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).166
,18DAF1DB,115,115,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).165
,18DAF1DB,116,116,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).164
,18DAF1DB,117,117,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).163
,18DAF1DB,118,118,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).162
,18DAF1DB,119,119,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).161
,18DAF1DB,120,120,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).160
,18DAF1DB,121,121,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).159
,18DAF1DB,122,122,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).158
,18DAF1DB,123,123,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).157
,18DAF1DB,124,124,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).156
,18DAF1DB,125,125,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).155
,18DAF1DB,126,126,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).154
,18DAF1DB,127,127,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).153
,18DAF1DB,128,128,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).152
,18DAF1DB,129,129,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).151
,18DAF1DB,130,130,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).150
,18DAF1DB,131,131,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).149
,18DAF1DB,132,132,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).148
,18DAF1DB,133,133,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).147
,18DAF1DB,134,134,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).146
,18DAF1DB,135,135,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).145
,18DAF1DB,136,136,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).144
,18DAF1DB,137,137,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).143
,18DAF1DB,138,138,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).142
,18DAF1DB,139,139,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).141
,18DAF1DB,140,140,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).140
,18DAF1DB,141,141,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).139
,18DAF1DB,142,142,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).138
,18DAF1DB,143,143,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).137
,18DAF1DB,144,144,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).136
,18DAF1DB,145,145,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).135
,18DAF1DB,146,146,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).134
,18DAF1DB,147,147,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).133
,18DAF1DB,148,148,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).132
,18DAF1DB,149,149,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).131
,18DAF1DB,150,150,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).130
,18DAF1DB,151,151,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).129
,18DAF1DB,152,152,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).128
,18DAF1DB,153,153,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).127
,18DAF1DB,154,154,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).126
,18DAF1DB,155,155,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).125
,18DAF1DB,156,156,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).124
,18DAF1DB,157,157,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).123
,18DAF1DB,158,158,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).122
,18DAF1DB,159,159,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).121
,18DAF1DB,160,160,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).120
,18DAF1DB,161,161,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).119
,18DAF1DB,162,162,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).118
,18DAF1DB,163,163,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).117
,18DAF1DB,164,164,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).116
,18DAF1DB,165,165,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).115
,18DAF1DB,166,166,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).114
,18DAF1DB,167,167,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).113
,18DAF1DB,168,168,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).112
,18DAF1DB,169,169,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).111
,18DAF1DB,170,170,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).110
,18DAF1DB,171,171,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).109
,18DAF1DB,172,172,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).108
,18DAF1DB,173,173,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).107
,18DAF1DB,174,174,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).106
,18DAF1DB,175,175,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).105
,18DAF1DB,176,176,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).104
,18DAF1DB,177,177,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).103
,18DAF1DB,178,178,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).102
,18DAF1DB,179,179,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).101
,18DAF1DB,180,180,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).100
,18DAF1DB,181,181,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).99
,18DAF1DB,182,182,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).98
,18DAF1DB,183,183,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).97
,18DAF1DB,184,184,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).96
,18DAF1DB,185,185,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).95
,18DAF1DB,186,186,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).94
,18DAF1DB,187,187,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).93
,18DAF1DB,188,188,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).92
,18DAF1DB,189,189,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).91
,18DAF1DB,190,190,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).90
,18DAF1DB,191,191,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).89
,18DAF1DB,192,192,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).88
,18DAF1DB,193,193,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).87
,18DAF1DB,194,194,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).86
,18DAF1DB,195,195,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).85
,18DAF1DB,196,196,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).84
,18DAF1DB,197,197,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).83
,18DAF1DB,198,198,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).82
,18DAF1DB,199,199,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).81
,18DAF1DB,200,200,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).80
,18DAF1DB,201,201,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).79
,18DAF1DB,202,202,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).78
,18DAF1DB,203,203,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).77
,18DAF1DB,204,204,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).76
,18DAF1DB,205,205,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).75
,18DAF1DB,206,206,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).74
,18DAF1DB,207,207,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).73
,18DAF1DB,208,208,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).72
,18DAF1DB,209,209,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).71
,18DAF1DB,210,210,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).70
,18DAF1DB,211,211,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).69
,18DAF1DB,212,212,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).68
,18DAF1DB,213,213,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).67
,18DAF1DB,214,214,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).66
,18DAF1DB,215,215,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).65
,18DAF1DB,216,216,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).64
,18DAF1DB,217,217,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).63
,18DAF1DB,218,218,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).62
,18DAF1DB,219,219,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).61
,18DAF1DB,220,220,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).60
,18DAF1DB,221,221,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).59
,18DAF1DB,222,222,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).58
,18DAF1DB,223,223,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).57
,18DAF1DB,224,224,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).56
,18DAF1DB,225,225,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).55
,18DAF1DB,226,226,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).54
,18DAF1DB,227,227,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).53
,18DAF1DB,228,228,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).52
,18DAF1DB,229,229,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).51
,18DAF1DB,230,230,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).50
,18DAF1DB,231,231,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).49
,18DAF1DB,232,232,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).48
,18DAF1DB,233,233,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).47
,18DAF1DB,234,234,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).46
,18DAF1DB,235,235,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).45
,18DAF1DB,236,236,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).44
,18DAF1DB,237,237,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).43
,18DAF1DB,238,238,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).42
,18DAF1DB,239,239,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).41
,18DAF1DB,240,240,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).40
,18DAF1DB,241,241,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).39
,18DAF1DB,242,242,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).38
,18DAF1DB,243,243,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).37
,18DAF1DB,244,244,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).36
,18DAF1DB,245,245,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).35
,18DAF1DB,246,246,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).34
,18DAF1DB,247,247,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).33
,18DAF1DB,248,248,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).32
,18DAF1DB,249,249,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).31
,18DAF1DB,250,250,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).30
,18DAF1DB,251,251,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).29
,18DAF1DB,252,252,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).28
,18DAF1DB,253,253,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).27
,18DAF1DB,254,254,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).26
,18DAF1DB,255,255,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).25
,18DAF1DB,256,256,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).24
,18DAF1DB,257,257,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).23
,18DAF1DB,258,258,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).22
,18DAF1DB,259,259,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).21
,18DAF1DB,260,260,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).20
,18DAF1DB,261,261,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).19
,18DAF1DB,262,262,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).18
,18DAF1DB,263,263,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).17
,18DAF1DB,264,264,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).16
,18DAF1DB,265,265,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).15
,18DAF1DB,266,266,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).14
,18DAF1DB,267,267,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).13
,18DAF1DB,268,268,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).12
,18DAF1DB,269,269,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).11
,18DAF1DB,270,270,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).10
,18DAF1DB,271,271,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).09
,18DAF1DB,272,272,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).08
,18DAF1DB,273,273,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).07
,18DAF1DB,274,274,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).06
,18DAF1DB,275,275,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).05
,18DAF1DB,276,276,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).04
,18DAF1DB,277,277,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).03
,18DAF1DB,278,278,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).02
,18DAF1DB,279,279,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).01
,18DAF1DB,24,31,32,0,0,rpm,22912E,62912E,ff,FAN speed(Wxx_raw_fan_rpm)
,18DAF1DB,24,25,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.20,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,32,33,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.16,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,34,35,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.17,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,36,37,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.18,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,38,39,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.19,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,40,41,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.12,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,42,43,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.13,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,44,45,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.14,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,46,47,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.15,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,48,49,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.08,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,50,51,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.09,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,52,53,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.10,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,54,55,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.11,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,56,57,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.04,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,58,59,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.05,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,60,61,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.06,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,62,63,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.07,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,64,65,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.00,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,66,67,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.01,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,68,69,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.02,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,70,71,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.03,0:no failure;1:failure OC/SCW;2:SCG failure
,18DAF1DB,24,39,1,0,0,V,229130,629130,ff,HV CAN current sensor supply voltage(Wxx_bat_i_can_sply_dg)
,18DAF1DB,24,39,.0625,640,2,°C,229131,629131,ff,Temperature sensor n°1 value.(Wtx_temp[0])
,18DAF1DB,24,39,.0625,640,2,°C,229132,629132,ff,Temperature sensor n°2 value.(Wtx_temp[1])
,18DAF1DB,24,39,.0625,640,2,°C,229133,629133,ff,Temperature sensor n°3 value.(Wtx_temp[2])
,18DAF1DB,24,39,.0625,640,2,°C,229134,629134,ff,Temperature sensor n°4 value.(Wtx_temp[3])
,18DAF1DB,24,39,.0625,640,2,°C,229135,629135,ff,Temperature sensor n°5 value.(Wtx_temp[4])
,18DAF1DB,24,39,.0625,640,2,°C,229136,629136,ff,Temperature sensor n°6 value.(Wtx_temp[5])
,18DAF1DB,24,39,.0625,640,2,°C,229137,629137,ff,Temperature sensor n°7 value.(Wtx_temp[6])
,18DAF1DB,24,39,.0625,640,2,°C,229138,629138,ff,Temperature sensor n°8 value.(Wtx_temp[7])
,18DAF1DB,24,39,.0625,640,2,°C,229139,629139,ff,Temperature sensor n°9 value(Wtx_temp[8])
,18DAF1DB,24,39,.0625,640,2,°C,22913A,62913A,ff,Temperature sensor n°10 value[Wtx_temp[9]]
,18DAF1DB,24,39,.0625,640,2,°C,22913B,62913B,ff,Temperature sensor n°11 value[Wtx_temp[10]]
,18DAF1DB,24,39,.0625,640,2,°C,22913C,62913C,ff,Temperature sensor n°12 value[Wtx_temp[11]]
,18DAF1DB,24,39,.0625,640,2,°C,22913D,62913D,ff,Temperature sensor n°13 value[Wtx_temp[12]]
,18DAF1DB,24,39,.0625,640,2,°C,22913E,62913E,ff,Temperature sensor n°14 value[Wtx_temp[13]]
,18DAF1DB,24,39,.0625,640,2,°C,22913F,62913F,ff,Temperature sensor n°15 value[Wtx_temp[14]]
,18DAF1DB,24,55,1,0,0,,229140,629140,4ff,DIDs supported in range [$9141 - $9160]
,18DAF1DB,24,39,.0625,640,2,°C,229141,629141,ff,Temperature sensor n°16 value[Wtx_temp[15]]
,18DAF1DB,24,39,.0625,640,2,°C,229142,629142,ff,Temperature sensor n°17 value[Wtx_temp[16]]
,18DAF1DB,24,55,1,0,0,,229160,629160,4ff,DIDs supported in range [$9161 - $9180]
,18DAF1DB,28,39,.001953125,0,3,V,229173,629173,ff,Cooling temperature(raw voltage) T1_MEA(Wxx_raw_temp_1_v)
,18DAF1DB,28,39,.001953125,0,3,V,229174,629174,ff,Skin temperature(raw voltage) T2_MEA(Wxx_raw_temp_2_v)
,18DAF1DB,24,31,.0625,0,2,V,229175,629175,ff,Temperature sensor n°1 raw AD voltage(Wtx_raw_temp_v[0])
,18DAF1DB,24,31,.0625,0,2,V,229176,629176,ff,Temperature sensor n°2 raw AD voltage(Wtx_raw_temp_v[1])
,18DAF1DB,24,31,.0625,0,2,V,229177,629177,ff,Temperature sensor n°3 raw AD voltage(Wtx_raw_temp_v[2])
,18DAF1DB,24,31,.0625,0,2,V,229178,629178,ff,Temperature sensor n°4 raw AD voltage(Wtx_raw_temp_v[3])
,18DAF1DB,24,31,.0625,0,2,V,229179,629179,ff,Temperature sensor n°5 raw AD voltage(Wtx_raw_temp_v[4])
,18DAF1DB,24,31,.0625,0,2,V,22917A,62917A,ff,Temperature sensor n°6 raw AD voltage(Wtx_raw_temp_v[5])
,18DAF1DB,24,31,.0625,0,2,V,22917B,62917B,ff,Temperature sensor n°7 raw AD voltage(Wtx_raw_temp_v[6])
,18DAF1DB,24,31,.0625,0,2,V,22917C,62917C,ff,Temperature sensor n°8 raw AD voltage(Wtx_raw_temp_v[7])
,18DAF1DB,24,31,.0625,0,2,V,22917D,62917D,ff,Temperature sensor n°9 raw AD voltage(Wtx_raw_temp_v[8])
,18DAF1DB,24,31,.0625,0,2,V,22917E,62917E,ff,Temperature sensor n°10 raw AD voltage(Wtx_raw_temp_v[9])
,18DAF1DB,24,31,.0625,0,2,V,22917F,62917F,ff,Temperature sensor n°11 raw AD voltage(Wtx_raw_temp_v[10])
,18DAF1DB,24,55,1,0,0,,229180,629180,4ff,DIDs supported in range [$9181 - $91A0]
,18DAF1DB,24,31,.0625,0,2,V,229181,629181,ff,Temperature sensor n°12 raw AD voltage(Wtx_raw_temp_v[11])
,18DAF1DB,24,31,.0625,0,2,V,229182,629182,ff,Temperature sensor n°13 raw AD voltage(Wtx_raw_temp_v[12])
,18DAF1DB,24,31,.0625,0,2,V,229183,629183,ff,Temperature sensor n°14 raw AD voltage(Wtx_raw_temp_v[13])
,18DAF1DB,24,31,.0625,0,2,V,229184,629184,ff,Temperature sensor n°15 raw AD voltage(Wtx_raw_temp_v[14])
,18DAF1DB,24,31,.0625,0,2,V,229185,629185,ff,Temperature sensor n°16 raw AD voltage(Wtx_raw_temp_v[15])
,18DAF1DB,24,55,1,0,0,,2291A0,6291A0,4ff,DIDs supported in range [$91A1 - $91C0]
,18DAF1DB,24,39,.0625,640,2,°C,2291B7,6291B7,ff,Board temperature (Main CPU)(Wxx_raw_cpu_temp)
,18DAF1DB,24,39,.01,300,2,%,2291B9,6291B9,ff,Battery SOC min(Zxx_bsoc_min)
,18DAF1DB,24,39,.01,300,2,%,2291BA,6291BA,ff,Battery SOC max(Zxx_bsoc_max)
,18DAF1DB,24,39,.1,0,1,%,2291BC,6291BC,ff,Battery SOH (Available Power calculation)(Zxx_sohap)
,18DAF1DB,24,39,.1,0,1,%,2291BD,6291BD,ff,Battery SOH (Generated Power calculation)(Zxx_sohgp)
,18DAF1DB,28,39,.001953125,0,3,V,2291BE,6291BE,ff,ADC 5V reference / P5VPREF_DIAG (MAIN CPU)(Wxx_raw_5v_ref_diag)
,18DAF1DB,24,55,1,0,0,,2291C0,6291C0,4ff,DIDs supported in range [$91C1 - $91E0]
,18DAF1DB,24,47,1,0,0,min,2291C1,6291C1,ff,Pack Time Life (since 1st power-up)(Wxx_abs_time_pack)
,18DAF1DB,24,39,.25,0,1,mOhm,2291C6,6291C6,ff,DC resistance (charge direction)(Wxx_dcr_chg)
,18DAF1DB,24,39,.25,0,1,mOhm,2291C7,6291C7,ff,DC resistance (discharge direction)(Wxx_dcr_dchg)
,18DAF1DB,24,47,.001,0,3,kW,2291C8,6291C8,ff,Available Energy(Wxx_avl_e)
,18DAF1DB,24,31,.5,0,1,%,2291C9,6291C9,ff,FAN control request(Wxx_fan_ctl_dcy)
,18DAF1DB,31,31,1,0,0,,2291CA,6291CA,ff,Main relay control request(Wxx_chg_rly_ctl),0:Openning control;1:Closing control
,18DAF1DB,31,31,1,0,0,,2291CB,6291CB,ff,Precharge relay control request(Wxx_pchg_rly_ctl),0:Openning control;1:Closing control
,18DAF1DB,27,27,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).21,0:No failure;1:Busbar no.21 failure
,18DAF1DB,28,28,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).20,0:No failure;1:Busbar no.20 failure
,18DAF1DB,29,29,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).19,0:No failure;1:Busbar no.19 failure
,18DAF1DB,30,30,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).18,0:No failure;1:Busbar no.18 failure
,18DAF1DB,31,31,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).17,0:No failure;1:Busbar no.17 failure
,18DAF1DB,32,32,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).16,0:No failure;1:Busbar no.16 failure
,18DAF1DB,33,33,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).15,0:No failure;1:Busbar no.15 failure
,18DAF1DB,34,34,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).14,0:No failure;1:Busbar no.14 failure
,18DAF1DB,35,35,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).13,0:No failure;1:Busbar no.13 failure
,18DAF1DB,36,36,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).12,0:No failure;1:Busbar no.12 failure
,18DAF1DB,37,37,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).11,0:No failure;1:Busbar no.11 failure
,18DAF1DB,38,38,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).10,0:No failure;1:Busbar no.10 failure
,18DAF1DB,39,39,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).09,0:No failure;1:Busbar no.9 failure
,18DAF1DB,40,40,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).08,0:No failure;1:Busbar no.8 failure
,18DAF1DB,41,41,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).07,0:No failure;1:Busbar no.7 failure
,18DAF1DB,42,42,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).06,0:No failure;1:Busbar no.6 failure
,18DAF1DB,43,43,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).05,0:No failure;1:Busbar no.5 failure
,18DAF1DB,44,44,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).04,0:No failure;1:Busbar no.4 failure
,18DAF1DB,45,45,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).03,0:No failure;1:Busbar no.3 failure
,18DAF1DB,46,46,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).02,0:No failure;1:Busbar no.2 failure
,18DAF1DB,47,47,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).01,0:No failure;1:Busbar no.1 failure
,18DAF1DB,24,39,.0625,640,2,°C,2291CD,6291CD,ff,Cooling temperature(Wxx_raw_temp_1)
,18DAF1DB,24,55,.03125,-2147483648,2,km,2291CF,6291CF,1ff,Battery mileage(Zxx_dist_pack_mem)
,18DAF1DB,31,31,1,0,0,,2291D0,6291D0,ff,Charge relay diag feedback (RELAY1_DIAG)(Wbx_chg_rly_ctl_dg)
,18DAF1DB,24,39,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).25
,18DAF1DB,40,55,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).24
,18DAF1DB,56,71,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).23
,18DAF1DB,72,87,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).22
,18DAF1DB,88,103,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).21
,18DAF1DB,104,119,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).20
,18DAF1DB,120,135,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).19
,18DAF1DB,136,151,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).18
,18DAF1DB,152,167,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).17
,18DAF1DB,168,183,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).16
,18DAF1DB,184,199,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).15
,18DAF1DB,200,215,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).14
,18DAF1DB,216,231,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).13
,18DAF1DB,232,247,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).12
,18DAF1DB,248,263,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).11
,18DAF1DB,264,279,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).10
,18DAF1DB,280,295,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).09
,18DAF1DB,296,311,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).08
,18DAF1DB,312,327,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).07
,18DAF1DB,328,343,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).06
,18DAF1DB,344,359,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).05
,18DAF1DB,360,375,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).04
,18DAF1DB,376,391,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).03
,18DAF1DB,392,407,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).02
,18DAF1DB,408,423,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).01
,18DAF1DB,24,39,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).25
,18DAF1DB,40,55,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).24
,18DAF1DB,56,71,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).23
,18DAF1DB,72,87,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).22
,18DAF1DB,88,103,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).21
,18DAF1DB,104,119,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).20
,18DAF1DB,120,135,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).19
,18DAF1DB,136,151,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).18
,18DAF1DB,152,167,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).17
,18DAF1DB,168,183,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).16
,18DAF1DB,184,199,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).15
,18DAF1DB,200,215,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).14
,18DAF1DB,216,231,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).13
,18DAF1DB,232,247,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).12
,18DAF1DB,248,263,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).11
,18DAF1DB,264,279,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).10
,18DAF1DB,280,295,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).09
,18DAF1DB,296,311,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).08
,18DAF1DB,312,327,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).07
,18DAF1DB,328,343,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).06
,18DAF1DB,344,359,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).05
,18DAF1DB,360,375,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).04
,18DAF1DB,376,391,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).03
,18DAF1DB,392,407,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).02
,18DAF1DB,408,423,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).01
,18DAF1DB,31,31,1,0,0,%,2291DF,6291DF,ff,Precharge relay diag feedback (RELAY2_DIAG)(Wbx_rly_2_ctl_dg)
,18DAF1DB,24,55,1,0,0,,2291E0,6291E0,4ff,DIDs supported in range [$91E1 - $9200]
,18DAF1DB,24,1047,1,0,0,,2291E1,6291E1,4ff,Mission history(Ztx_mission_mtrx_[0_15])
,18DAF1DB,24,1047,1,0,0,,2291E2,6291E2,4ff,Mission history(Ztx_mission_mtrx_[16_31])
,18DAF1DB,24,1047,1,0,0,,2291E3,6291E3,4ff,Mission history(Ztx_mission_mtrx_[32_47])
,18DAF1DB,24,1047,1,0,0,,2291E4,6291E4,4ff,Mission history(Ztx_mission_mtrx_[48_63])
,18DAF1DB,31,31,1,0,0,,2291E5,6291E5,ff,VBATP1_CMD - Bypass request(Wbx_lv_sply_byp_req),0:Bypass OFF;1:Bypass ON
,18DAF1DB,31,31,1,0,0,,2291E6,6291E6,ff,VBATP1_CMD - Bypass value(Wbx_lv_sply_byp_val),0:SWITCH OPENED;1:SWITCH CLOSED
,18DAF1DB,31,31,1,0,0,,2291E7,6291E7,ff,P12VP_CURR_CMD - Bypass request(Wbx_bat_i_can_sply_byp_req),0:Bypass OFF;1:Bypass ON
,18DAF1DB,31,31,1,0,0,,2291E8,6291E8,ff,P12VP_CURR_CMD - Bypass value(Wbx_bat_i_can_sply_byp_val),0:SWITCH OPENED;1:SWITCH CLOSED
,18DAF1DB,31,31,1,0,0,,2291E9,6291E9,ff,RELAY1_CMD - Bypass request(Wbx_chg_rly_ctl_byp_req),0:Bypass OFF;1:Bypass ON
,18DAF1DB,31,31,1,0,0,,2291EA,6291EA,ff,RELAY1_CMD - Bypass value(Wbx_chg_rly_ctl_byp_val),0:Relay OPENED;1:Relay CLOSED
,18DAF1DB,31,31,1,0,0,,2291EB,6291EB,ff,RELAY2_CMD - Bypass request(Wbx_pchg_rly_ctl_byp_req),0:Bypass OFF;1:Bypass ON
,18DAF1DB,31,31,1,0,0,,2291EC,6291EC,ff,RELAY2_CMD - Bypass value(Wbx_pchg_rly_ctl_byp_val),0:Relay OPENED;1:Relay CLOSED
,18DAF1DB,31,31,1,0,0,,2291ED,6291ED,ff,RELAY3_CMD - Bypass request(Wbx_rly_3_ctl_byp_req),0:Bypass OFF;1:Bypass ON
,18DAF1DB,31,31,1,0,0,,2291EE,6291EE,ff,RELAY3_CMD - Bypass value(Wbx_rly_3_ctl_byp_val),0:Relay OPENED;1:Relay CLOSED
,18DAF1DB,31,31,1,0,0,,2291EF,6291EF,ff,FAN_CMD_RATIO - Bypass request(Wbx_fan_ctl_dcy_byp_req),0:Bypass OFF;1:Bypass ON
,18DAF1DB,24,31,.5,0,1,%,2291F0,6291F0,ff,FAN_CMD_RATIO - Bypass value(Wxx_fan_ctl_dcy_byp_val)
,18DAF1DB,31,31,1,0,0,,2291F1,6291F1,ff,FAN_CMD_PERIOD - Bypass request(Wbx_fan_ctl_prd_byp_req),0:Bypass OFF;1:Bypass ON
,18DAF1DB,24,39,1,0,0,µs,2291F2,6291F2,ff,FAN_CMD_PERIOD - Bypass value(Wxx_fan_ctl_prd_byp_val)
,18DAF1DB,31,31,1,0,0,,2291F3,6291F3,ff,Relay 3 diag feedback (RELAY3_DIAG)(Wbx_rly_3_ctl_dg)
,18DAF1DB,24,39,1,0,0,µs,2291F4,6291F4,ff,FAN control period measured by DIAG input(Wxx_raw_fan_ctl_prd_dg)
,18DAF1DB,24,31,.5,0,1,%,2291F5,6291F5,ff,FAN control duty cycle measured by DIAG input(Wxx_raw_fan_ctl_dg)
,18DAF1DB,29,31,1,0,0,,2291F6,6291F6,ff,Interlock1 raw state(Wsx_raw_intlck1),3:SC+_ret;2:SC+;1:closed;0:open;4:SC_gnd
,18DAF1DB,29,31,1,0,0,,2291F7,6291F7,ff,Interlock2 raw state(Wsx_raw_intlck2),3:SC+_ret;2:SC+;1:closed;0:open;4:SC_gnd
,18DAF1DB,29,31,1,0,0,,2291F8,6291F8,ff,Interlock3 raw state(Wsx_raw_intlck3),3:SC+_ret;2:SC+;1:closed;0:open;4:SC_gnd
,18DAF1DB,29,31,1,0,0,,2291F9,6291F9,ff,Interlock4 raw state(Wsx_raw_intlck4),3:SC+_ret;2:SC+;1:closed;0:open;4:SC_gnd
,18DAF1DB,24,39,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).25
,18DAF1DB,40,55,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).24
,18DAF1DB,56,71,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).23
,18DAF1DB,72,87,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).22
,18DAF1DB,88,103,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).21
,18DAF1DB,104,119,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).20
,18DAF1DB,120,135,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).19
,18DAF1DB,136,151,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).18
,18DAF1DB,152,167,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).17
,18DAF1DB,168,183,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).16
,18DAF1DB,184,199,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).15
,18DAF1DB,200,215,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).14
,18DAF1DB,216,231,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).13
,18DAF1DB,232,247,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).12
,18DAF1DB,248,263,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).11
,18DAF1DB,264,279,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).10
,18DAF1DB,280,295,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).09
,18DAF1DB,296,311,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).08
,18DAF1DB,312,327,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).07
,18DAF1DB,328,343,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).06
,18DAF1DB,344,359,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).05
,18DAF1DB,360,375,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).04
,18DAF1DB,376,391,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).03
,18DAF1DB,392,407,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).02
,18DAF1DB,408,423,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).01
,18DAF1DB,24,55,1,0,0,,229200,629200,4ff,DIDs supported in range [$9201 - $9220]
,18DAF1DB,24,39,1,0,0,,229210,629210,ff,Overall number of complete charge(Zxx_full_chg_ctr)
,18DAF1DB,24,39,1,0,0,,229211,629211,ff,Overall number of DC charge(Zxx_dc_chg_ctr)
,18DAF1DB,24,39,1,0,0,,229212,629212,ff,Overall number of external charge(Zxx_ext_chg_ctr)
,18DAF1DB,24,39,1,0,0,,229213,629213,ff,Overall number of isolated charge(Zxx_isl_chg_ctr)
,18DAF1DB,24,39,1,0,0,,229214,629214,ff,Overall number of not insulated charge(Zxx_not_isl_chg_ctr)
,18DAF1DB,24,39,1,0,0,,229215,629215,ff,Overall number of partial charge(Zxx_partial_chg_ctr)
,18DAF1DB,24,31,1,0,0,,229216,629216,ff,Carrier to save SafetyMode1 root cause(Ztx_sfty_apv)
,18DAF1DB,31,31,1,0,0,,229217,629217,ff,Relay 3 control (RELAY3_CMD)(Wbx_rly_3_ctl),0:open;1:close
,18DAF1DB,31,31,1,0,0,,229218,629218,ff,Relay 4 control (RELAY4_CMD)(Wbx_rly_4_ctl),0:open;1:close
,18DAF1DB,31,31,1,0,0,,229219,629219,ff,Relay 4 diag feedback (RELAY4_DG)(Wbx_rly_4_ctl_dg)
,18DAF1DB,31,31,1,0,0,,22921A,62921A,ff,RELAY4_CMD - Bypass request(Wbx_rly_4_ctl_byp_req),0:Bypass OFF;1:Bypass ON
,18DAF1DB,31,31,1,0,0,,22921B,62921B,ff,RELAY4_CMD - Bypass value(Wbx_rly_4_ctl_byp_val),0:Relay Opened;1:Relay Closed
,18DAF1DB,24,39,.0625,640,2,°C,22921C,62921C,ff,Skin temperature (T2_MEA)(Wxx_temp_2)
,18DAF1DB,31,31,1,0,0,,22921D,62921D,ff,CAN current sensor failure indicator(Wbx_raw_bat_i_CAN_fail),0:No failure;1:Failure occurs
,18DAF1DB,24,31,1,0,0,,22921E,62921E,ff,CAN current sensor failure information(Wsx_raw_bat_i_CAN_errinf),65:Error on dataflash CRC;66:Fluxgate running at high frequency;67:Fluxgate not oscillating;68:CAB in fail safe mode;70:Signal not available more than 100ms;71:Supply voltage out of range
,18DAF1DB,24,55,1,0,0,,229220,629220,4ff,DIDs supported in range [$9221 - $9240]
,18DAF1DB,24,39,.000976563,0,3,V,229221,629221,1ff,Raw busbar voltage 0(Wtx_raw_busbar_v[0])
,18DAF1DB,24,39,.000976563,0,3,V,229222,629222,1ff,Raw busbar voltage 1(Wtx_raw_busbar_v[1])
,18DAF1DB,24,39,.000976563,0,3,V,229223,629223,1ff,Raw busbar voltage 2(Wtx_raw_busbar_v[2])
,18DAF1DB,24,39,.000976563,0,3,V,229224,629224,1ff,Raw busbar voltage 3(Wtx_raw_busbar_v[3])
,18DAF1DB,24,39,.000976563,0,3,V,229225,629225,1ff,Raw busbar voltage 4(Wtx_raw_busbar_v[4])
,18DAF1DB,24,39,.000976563,0,3,V,229226,629226,1ff,Raw busbar voltage 5(Wtx_raw_busbar_v[5])
,18DAF1DB,24,39,.000976563,0,3,V,229227,629227,1ff,Raw busbar voltage 6(Wtx_raw_busbar_v[6])
,18DAF1DB,24,39,.000976563,0,3,V,229228,629228,1ff,Raw busbar voltage 7(Wtx_raw_busbar_v[7])
,18DAF1DB,24,39,.000976563,0,3,V,229229,629229,1ff,Raw busbar voltage 8(Wtx_raw_busbar_v[8])
,18DAF1DB,24,39,.000976563,0,3,V,22922A,62922A,1ff,Raw busbar voltage 9(Wtx_raw_busbar_v[9])
,18DAF1DB,24,39,.000976563,0,3,V,22922B,62922B,1ff,Raw busbar voltage 10(Wtx_raw_busbar_v[10])
,18DAF1DB,24,39,.000976563,0,3,V,22922C,62922C,1ff,Raw busbar voltage 11(Wtx_raw_busbar_v[11])
,18DAF1DB,24,55,1,0,0,,229240,629240,4ff,DIDs supported in range [$9241 - $9260]
,18DAF1DB,24,31,1,0,0,,229241,629241,ff,Index of thermistor with maximal temperature value(Wxx_temp_max_nr)
,18DAF1DB,24,31,1,0,0,,229242,629242,ff,Index of thermistor with minimal temperature value(Wxx_temp_min_nr)
,18DAF1DB,24,55,.001,0,3,,229243,629243,1ff,Cumulated energy in charge (Zxx_kwh_chg)
,18DAF1DB,24,55,.001,0,3,,229244,629244,1ff,Cumulated energy in discharge : CS mode(Zxx_kwh_dch_cs)
,18DAF1DB,24,55,.001,0,3,,229245,629245,1ff,Cumulated energy in discharge:CD mode(Zxx_kwh_dch_cd)
,18DAF1DB,24,55,.001,0,3,,229246,629246,1ff,Cumulated energy in regen :CS mode(Zxx_kwh_rgn_cs)
,18DAF1DB,24,55,.001,0,3,,229247,629247,1ff,Cumulated energy in regen : CD mode(Zxx_kwh_rgn_cd)
,18DAF1DB,24,39,.01,0,2,%,229248,629248,ff,SOHEdegrad_K(Zxx_sohe_dgrd_k)
,18DAF1DB,24,39,.01,0,2,%,229249,629249,ff,SOHEdegrad_K-1(Zxx_sohe_dgrd_km1)
,18DAF1DB,24,39,.01,0,2,%,22924A,62924A,ff,SOHEmodel_K(Zxx_sohe_mdl_k)
,18DAF1DB,24,39,.01,0,2,%,22924B,62924B,ff,SOHEmodel_K-1(Zxx_sohe_mdl_km1)
,18DAF1DB,24,39,.01,0,2,,22924C,62924C,ff,SOHEAlgo(k)(Zxx_sohe_alg)
,18DAF1DB,24,31,.5,0,1,,22924E,62924E,ff,SOHEAlpha(k)(Wxx_sohe_alpha)
,18DAF1DB,24,55,.0009765625,-2147483648,3,Ah,22924F,62924F,1ff,Total cumulated capacity balanced(Zxx_bal_chg_tot)
,18DAF1DB,24,55,.0009765625,-2147483648,3,h,229250,629250,1ff,Total balancing time(Zxx_bal_time_tot)
,18DAF1DB,24,55,.0009765625,-2147483648,3,Ah,229251,629251,1ff,Total cumulated capacity balanced in sleep mode(Zxx_bal_chg_tot_slp)
,18DAF1DB,24,55,.0009765625,-2147483648,3,h,229252,629252,1ff,Total balancing time in sleep mode(Zxx_bal_time_tot_slp)
,18DAF1DB,24,39,.000976563,0,3,V,229254,629254,ff,20ms cell minimal voltage (Wxx_cell_v_min_20ms)
,18DAF1DB,24,39,.000976563,0,3,V,229255,629255,ff,20ms cell minimal voltage (Wxx_cell_v_max_20ms)
,18DAF1DB,24,24,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).256
,18DAF1DB,25,25,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).255
,18DAF1DB,26,26,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).254
,18DAF1DB,27,27,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).253
,18DAF1DB,28,28,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).252
,18DAF1DB,29,29,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).251
,18DAF1DB,30,30,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).250
,18DAF1DB,31,31,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).249
,18DAF1DB,32,32,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).248
,18DAF1DB,33,33,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).247
,18DAF1DB,34,34,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).246
,18DAF1DB,35,35,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).245
,18DAF1DB,36,36,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).244
,18DAF1DB,37,37,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).243
,18DAF1DB,38,38,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).242
,18DAF1DB,39,39,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).241
,18DAF1DB,40,40,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).240
,18DAF1DB,41,41,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).239
,18DAF1DB,42,42,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).238
,18DAF1DB,43,43,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).237
,18DAF1DB,44,44,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).236
,18DAF1DB,45,45,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).235
,18DAF1DB,46,46,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).234
,18DAF1DB,47,47,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).233
,18DAF1DB,48,48,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).232
,18DAF1DB,49,49,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).231
,18DAF1DB,50,50,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).230
,18DAF1DB,51,51,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).229
,18DAF1DB,52,52,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).228
,18DAF1DB,53,53,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).227
,18DAF1DB,54,54,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).226
,18DAF1DB,55,55,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).225
,18DAF1DB,56,56,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).224
,18DAF1DB,57,57,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).223
,18DAF1DB,58,58,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).222
,18DAF1DB,59,59,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).221
,18DAF1DB,60,60,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).220
,18DAF1DB,61,61,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).219
,18DAF1DB,62,62,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).218
,18DAF1DB,63,63,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).217
,18DAF1DB,64,64,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).216
,18DAF1DB,65,65,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).215
,18DAF1DB,66,66,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).214
,18DAF1DB,67,67,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).213
,18DAF1DB,68,68,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).212
,18DAF1DB,69,69,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).211
,18DAF1DB,70,70,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).210
,18DAF1DB,71,71,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).209
,18DAF1DB,72,72,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).208
,18DAF1DB,73,73,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).207
,18DAF1DB,74,74,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).206
,18DAF1DB,75,75,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).205
,18DAF1DB,76,76,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).204
,18DAF1DB,77,77,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).203
,18DAF1DB,78,78,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).202
,18DAF1DB,79,79,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).201
,18DAF1DB,80,80,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).200
,18DAF1DB,81,81,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).199
,18DAF1DB,82,82,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).198
,18DAF1DB,83,83,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).197
,18DAF1DB,84,84,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).196
,18DAF1DB,85,85,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).195
,18DAF1DB,86,86,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).194
,18DAF1DB,87,87,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).193
,18DAF1DB,88,88,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).192
,18DAF1DB,89,89,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).191
,18DAF1DB,90,90,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).190
,18DAF1DB,91,91,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).189
,18DAF1DB,92,92,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).188
,18DAF1DB,93,93,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).187
,18DAF1DB,94,94,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).186
,18DAF1DB,95,95,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).185