-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathEN_PIDS.txt
3343 lines (3343 loc) · 180 KB
/
EN_PIDS.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--- EZS_A1 ID:0x0000
--- --- KL_15C_EIN() Terminal 15C is switched on, offset:7, len:1
--- --- KL_15R_EIN() Terminal 15R is switched on, offset:6, len:1
--- --- KL_15_EIN() Terminal 15 is switched on, offset:5, len:1
--- --- KL_15X_EIN() Terminal 15X is switched on, offset:4, len:1
--- --- KL_50_EIN() Terminal 50 is switched on, offset:3, len:1
--- --- KG_KL_AKT() Keyless Go Terminal control active, offset:0, len:1
--- --- FERN_ALARM() Remote release MSS alarm, offset:13, len:1
--- --- PNK_ALM_EIN() Panic alarm by key, offset:12, len:1
--- --- PNK_ALM_AUS() Panic alarm by key off, offset:11, len:1
--- --- APPL_AUS() Application IDs do not send, only NM ID's, nur NM-ID's, offset:10, len:1
--- --- DIAG_TGL() Diagnostics toggle bit, offset:9, len:1
--- --- FZG_RECH() Message: "Vehicle reckons, please wait", Bitte warten", offset:8, len:1
--- --- SPEI_NR() Current memory block number, offset:21, len:3
--- --- ZV_N_VER_MW_AKT() Do not lock ZV during SBC value active, offset:20, len:1
--- --- HD_STOPP() Stop the rear cover, offset:19, len:1
--- --- ZV_SPIEL() Game protection active, offset:18, len:1
--- --- ZV_PASSIV() Closing passively, offset:17, len:1
--- --- SCHLUE_NEU() Message: Renew key, offset:16, len:1
--- --- BLI_ENTSI() ZV Unlock the indicator light, offset:27, len:1
--- --- BLI_SICH() ZV Save the blinker jerk message, offset:26, len:1
--- --- AUSS_ENTSI() Aussenentsicherung, offset:25, len:1
--- --- AUSS_SICH() outdoor safety, offset:24, len:1
--- --- SCHL_BEF() Mechanical / FB key active, offset:39, len:1
--- --- ZV_NV() ZV Rear lock, offset:38, len:1
--- --- RWTFE_EZS() Open the rear wall, offset:37, len:1
--- --- TD_ENTRI() Unlock the fuel filler cap (HSF / storage compartment), offset:36, len:1
--- --- TD_VERRI() Fuel filler cap (HSF / storage compartment), offset:35, len:1
--- --- HD_ENTSI() Cover the rear cover, offset:34, len:1
--- --- HD_SICH() Secure the rear cover, offset:33, len:1
--- --- HFE_EZS() Heckdeckelfernentriegelung, offset:32, len:1
--- --- TVL_ENTRI() Release front left door, offset:47, len:1
--- --- TVL_VERRI() Lock front left door, offset:46, len:1
--- --- TVR_ENTRI() Release the front right door, offset:45, len:1
--- --- TVR_VERRI() Lock front right door, offset:44, len:1
--- --- THL_ENTRI() Turn door rear left, offset:43, len:1
--- --- THL_VERRI() Lock door rear left, offset:42, len:1
--- --- THR_ENTRI() Release door rear right, offset:41, len:1
--- --- THR_VERRI() Lock door rear right, offset:40, len:1
--- EZS_A11 ID:0x0016
--- --- U_BATT(V) battery voltage, offset:0, len:8
--- EZS_A12 ID:0x0180
--- --- MOB_STAT() Status Mobility account, offset:0, len:3
--- --- MOB_AKT() Mobility account activated, offset:8, len:1
--- --- MOB_T_BUD_YEAR(years) Year of last MK budget renewal, offset:16, len:16
--- --- MOB_T_BUD_MONTH(months) Month of last MK budget renewal, offset:32, len:8
--- --- MOB_T_BUD_DAY(days) Day of last MK budget renewal, offset:40, len:8
--- EZS_A4 ID:0x0058
--- --- SCHLUE_ID() KeyID from the EZS, offset:0, len:32
--- --- KM_EZS(km) Distance traveled from the EZS, offset:32, len:24
--- EZS_A9 ID:0x00b2
--- --- VIN_MSG() VIN signal section, offset:6, len:2
--- --- VIN_DATA() VIN data, offset:8, len:56
--- KG_A1 ID:0x01b2
--- --- WARNTON_KG() Activate warning tone, offset:6, len:1
--- --- M0() Messg. 0: "Chip card / key not recognized" (red), offset:5, len:1
--- --- M1() Messg. 1: "Chip card / key not recognized" (white), offset:4, len:1
--- --- M2() Messg. 2: "Chip card / key detected in the vehicle" (white), offset:3, len:1
--- --- M3() Messg. 3: "Selector lever to P" (red, continuous tone), Dauerton), offset:2, len:1
--- --- M4() Messg. 4: "Chip card / key test battery" (white), offset:1, len:1
--- --- M5() Messg. 5: "Select lever in P or N position", offset:0, len:1
--- --- M6() Messg. 6: "Reserved", offset:15, len:1
--- --- M7() Messg. 7: Reserved, offset:14, len:1
--- --- M8() Messg. 8: "door open", offset:13, len:1
--- --- M9() Messg. 9: "Keyless Go in Diagnosis", offset:12, len:1
--- --- M10() Messg. 10: "Reserved", offset:11, len:1
--- --- M11() Messg. 11: "Reserved", offset:10, len:1
--- --- M12() Messg. 12: "Take the chip card / key!", offset:9, len:1
--- --- KM_REST_KG(km) Wegangabe Keyless Go, offset:16, len:8
--- KG_A2 ID:0x0050
--- --- KB_MOD_KG() Mode Comfort control, offset:6, len:1
--- --- KB_RI_KG() Direction comfort control, offset:5, len:1
--- --- SHD_KG() SHD / top open / close, offset:4, len:1
--- --- FVL_KG() Open / close the front left window, offset:3, len:1
--- --- FVR_KG() Open / close the front right window, offset:2, len:1
--- --- FHL_KG() Open / close the rear left window, offset:1, len:1
--- --- FHR_KG() Open / close the rear right window, offset:0, len:1
--- MOB_ANZ ID:0x0332
--- --- MOB_M0() Meldg.0:, offset:7, len:1
--- --- MOB_M1() Meldg.1:, offset:6, len:1
--- --- MOB_M2() Meldg.2:, offset:5, len:1
--- --- MOB_M3() Meldg.3:, offset:4, len:1
--- --- MOB_M4() Meldg.4:, offset:3, len:1
--- --- MOB_M5() Meldg.5:, offset:2, len:1
--- --- MOB_M6() Meldg.6:, offset:1, len:1
--- --- MOB_M7() Meldg.7:, offset:0, len:1
--- TP_EZS_TELEAID5 ID:0x03be
--- --- TP_EZS_TELEAID() Communication EZS to TELEAID, offset:0, len:64
--- NM_EZS ID:0x0400
--- --- NM() Network Management, offset:0, len:64
--- D_RS_EZS ID:0x05ff
--- --- D_RS() KWP2000 diagnosis response, offset:0, len:64
--- SD_RS_EZS ID:0x07c0
--- --- EZS_FV01() Fault line actuator 01h, offset:7, len:1
--- --- EZS_FV02() Fault Tractor 02h, offset:6, len:1
--- --- EZS_FV03() Fault line actuator 03h, offset:5, len:1
--- --- EZS_FV04() Fault Tractor 04h, offset:4, len:1
--- --- EZS_FV05() Fault Tractor 05h, offset:3, len:1
--- --- EZS_FV06() Fault Tractor 06h, offset:2, len:1
--- --- EZS_FV07() Fault Reservoir 07h, offset:1, len:1
--- --- EZS_KENN() Identification for> 8 byte, offset:0, len:1
--- --- EZS_FV08() Fault check valve 08h, offset:15, len:1
--- --- EZS_FV09() Fault Tractor 09h, offset:14, len:1
--- --- EZS_FV0A() Error flag 0Ah, offset:13, len:1
--- --- EZS_FV0B() Error flag 0Bh, offset:12, len:1
--- --- EZS_FV0C() Fault Tractor 0Ch, offset:11, len:1
--- --- EZS_FV0D() Fault Tractor 0Dh, offset:10, len:1
--- --- EZS_FV0E() Fault Tractor 0Eh, offset:9, len:1
--- --- EZS_FV0F() Fault Tractor 0Fh, offset:8, len:1
--- --- EZS_FV10() Fault Tractor 10h, offset:23, len:1
--- --- EZS_FV11() Fault check valve 11h, offset:22, len:1
--- --- EZS_FV12() Fault Tractor 12h, offset:21, len:1
--- --- EZS_FV13() Fault Tractor 13h, offset:20, len:1
--- --- EZS_FV14() Error-check valve 14h, offset:19, len:1
--- --- EZS_FV15() Fault line 15h, offset:18, len:1
--- --- EZS_FV16() Fault latch 16h, offset:17, len:1
--- --- EZS_FV17() Fault Tractor 17h, offset:16, len:1
--- --- EZS_FV18() Fault flag 18h, offset:31, len:1
--- --- EZS_FV19() Defective actuator 19h, offset:30, len:1
--- --- EZS_FV1A() Fault Tracer 1Ah, offset:29, len:1
--- --- EZS_FV1B() Error 1Bh, offset:28, len:1
--- --- EZS_FV1C() 1Ch, offset:27, len:1
--- --- EZS_FV1D() Fault Tractor 1Dh, offset:26, len:1
--- --- EZS_FV1E() Fault Tractor 1Eh, offset:25, len:1
--- --- EZS_FV1F() Fault Tractor 1Fh, offset:24, len:1
--- --- EZS_FV20() Fault Tractor 20h, offset:39, len:1
--- --- EZS_FV21() Fault Tractor 21h, offset:38, len:1
--- --- EZS_FV22() Fault Tractor 22h, offset:37, len:1
--- --- EZS_FV23() Fault Tractor 23h, offset:36, len:1
--- --- EZS_FV24() Fault line 24h, offset:35, len:1
--- --- EZS_FV25() Fault Tractor 25h, offset:34, len:1
--- --- EZS_FV26() Fault line 26h, offset:33, len:1
--- --- EZS_FV27() Fault Tractor 27h, offset:32, len:1
--- --- EZS_FV28() Fault Tractor 28h, offset:47, len:1
--- --- EZS_FV29() Fault Tractor 29h, offset:46, len:1
--- --- EZS_FV2A() Fault Tracer 2Ah, offset:45, len:1
--- --- EZS_FV2B() Error 2Bh, offset:44, len:1
--- --- EZS_FV2C() Error 2Ch, offset:43, len:1
--- --- EZS_FV2D() Error flag 2h, offset:42, len:1
--- --- EZS_FV2E() Fault Tractor 2Eh, offset:41, len:1
--- --- EZS_FV2F() Fault Tractor 2Fh, offset:40, len:1
--- --- EZS_FV30() Error valve 30h, offset:55, len:1
--- --- EZS_FV31() Fault Tractor 31h, offset:54, len:1
--- --- EZS_FV32() Fault line 32h, offset:53, len:1
--- --- EZS_FV33() Fault Tractor 33h, offset:52, len:1
--- --- EZS_PGV01() State of flux 01h, offset:51, len:1
--- --- EZS_PGV02() State of state 02h, offset:50, len:1
--- --- EZS_PGV03() State of flux 03h, offset:49, len:1
--- --- EZS_PGV04() State of flux 04h, offset:48, len:1
--- SG_APPL_EZS ID:0x0760
--- --- SG_APPL() Control unit to external application, offset:0, len:64
ZGW
--- PROD_A1 ID:0x001d
--- --- PROD_MODE() Production mode active, offset:0, len:1
--- TELEAID_A1 ID:0x00f2
--- --- RDU() Remote door unlock, offset:0, len:1
--- TELEAID_A2 ID:0x018c
--- --- LIVE_TELEAID() Alive message TELEAID, offset:4, len:1
--- --- MK_ATRSRT() Mobilitatskonto authorized, offset:0, len:1
--- ZGW_A4 ID:0x01bc
--- --- SV_UMFANG() scope of service, offset:6, len:2
--- --- SV_ANZ_MOD() display mode, offset:4, len:2
--- --- SV_WARN() Status Service Warning, offset:2, len:2
--- --- RLSZ_PRIO() Priority Residual travel distance, offset:1, len:1
--- --- RLS_KM_M() Unit remaining distance, offset:0, len:1
--- --- SV_WERT(ASCII) service quality, offset:8, len:8
--- --- REST_ZEIT(Tage) Remaining time, offset:16, len:16
--- --- WARTUNG_OK() WR data valid, offset:37, len:1
--- --- SV_ANZ_SS() Show special service, offset:36, len:1
--- --- REST_WEG(km(miles)) Remaining distance, offset:40, len:24
--- ZGW_A5 ID:0x001f
--- --- LL_RL() Left / right-hand drive, offset:6, len:2
--- --- LAND() Country-specific SA coding, offset:0, len:4
--- --- TAXI_INT() Taxi International, offset:15, len:1
--- --- TAXI_NOTALM() Taxi emergency alarm system, offset:14, len:1
--- --- TAXI_DZ() Connection for roof sign, offset:13, len:1
--- --- TAXI_HIRU() Taxi call for help, offset:12, len:1
--- --- SO_FZG() special vehicle, offset:11, len:1
--- --- TAXI_FUNKAUF() Funchurch Taxi, offset:10, len:1
--- --- BEHI_FZG() Remodeling for disabled persons (only by tester), offset:9, len:1
--- --- GUARD_B4() Special Protection Guard B4, offset:8, len:1
--- --- GUARD_B6() Special Protection Guard B6 / 7, offset:23, len:1
--- --- ZV_NOT_PAS() Emergency inactive (only via tester), offset:22, len:1
--- --- KB_AUTO() Comfort mode, offset:18, len:1
--- --- KB_MAN_KLA() Mode of recirculation, offset:17, len:1
--- --- KB_SPERR_KLA() Conceal air comfort control, offset:16, len:1
--- --- FCOD_BR() Vehicle code series, offset:27, len:5
--- --- FCOD_KAR() Vehicle Code Body, offset:24, len:3
--- --- FCOD_MOT7() Vehicle code engine, offset:33, len:7
--- --- PRW_VH() Plattrollwarner available, offset:32, len:1
--- --- KP_VH() Communication platform available, offset:47, len:1
--- --- MEMORY_VH() Driver's seat memory available, offset:46, len:1
--- --- KSG_VH() Comfort manual transmission available, offset:45, len:1
--- --- NAG_VH() Automatic transmission available, offset:44, len:1
--- --- KLA_VH() Air conditioning available, offset:43, len:1
--- --- SRA_VH() Headlight cleaning system available, offset:42, len:1
--- --- XEN_VH() Xenon light available, offset:41, len:1
--- --- CDC_VH() CD changer available, offset:53, len:1
--- --- ALB_VH() Automatic loading floor available, offset:52, len:1
--- --- HFS_VH() Remote boot lid closing, offset:51, len:1
--- --- STH_VH() Heating system available, offset:50, len:1
--- --- GPS_BOX_VH() GPS-box available, offset:49, len:1
--- --- ART_VH() ART available, offset:48, len:1
--- --- WWSH_VH() Wash water hose heating RL or C490 [0], LL or C875 [1], LL oder C875 [1], offset:63, len:1
--- --- ERS_LICHT() Complete replacement light allowed, offset:62, len:1
--- --- KG_VH() Keyless Go available, offset:61, len:1
--- --- IRS_VH() Interior protection available, offset:60, len:1
--- --- EDW_VH() Theft alarm system available, offset:59, len:1
--- --- HR_VH() Rear blinds available, offset:58, len:1
--- --- AHK_VH() Attachment coupling available, offset:57, len:1
--- --- PTS_VH() Parktronics system available, offset:56, len:1
--- ZGW_A6 ID:0x001e
--- --- VER_AE() Amendments year, offset:6, len:2
--- --- VER_JAHR() year specification, offset:1, len:5
--- --- TPM_VH() Tire pressure module available, offset:30, len:2
--- TELEAID_POS1 ID:0x03e5
--- --- GPS_LAT(mas) GPS latitude (- means south), offset:0, len:32
--- --- GPS_LONG(mas) GPS longitude (- means west), offset:32, len:32
--- TELEAID_POS2 ID:0x03e6
--- --- GPS_VEL(cm/s) GPS velocity, offset:0, len:16
--- --- GPS_HEAD(°) GPS heading, offset:16, len:16
--- --- GPS_ELLIP(m) GPS ellipsoid height, offset:32, len:16
--- --- GPS_ALT(m) GPS altitude, offset:48, len:16
--- TELEAID_POS3 ID:0x03e7
--- --- GPS_DATE_YEAR(years) GPS date year, offset:0, len:16
--- --- GPS_DATE_MONTH(months) GPS date month, offset:16, len:8
--- --- GPS_DATE_DAY(days) GPS date day, offset:24, len:8
--- --- GPS_UTC_HOUR(h) GPS UTC hour, offset:32, len:8
--- --- GPS_UTC_MINUTE(min) GPS UTC minute, offset:40, len:8
--- --- GPS_UTC_SECOND(s) GPS UTC second, offset:48, len:16
--- TELEAID_POS4 ID:0x03e8
--- --- DR_MM_LAT(mas) Dead reckoning / map matching latitude (- means south), offset:0, len:32
--- --- DR_MM_LONG(mas) Dead reckoning / map matching longtitude (- means west), offset:32, len:32
--- TELEAID_POS5 ID:0x03e9
--- --- GPS_VSBL_SAT() GPS visible satellites, offset:4, len:4
--- --- GPS_TRCK_SAT() GPS tracked satellites, offset:0, len:4
--- --- GPS_VDOP() GPS vertical dilution of position, offset:8, len:8
--- --- GPS_HDOP() GPS horizontal dilution of position, offset:16, len:8
--- --- GPS_PDOP() GPS dilution of position, offset:24, len:8
--- --- GPS_FIX() GPS fix, offset:36, len:4
--- --- DR_MM_REL(%) Dead reckoning / map matching position reliablity, offset:40, len:8
--- --- DR_MM_STAT() Dead reckoning / map matching state, offset:54, len:2
--- --- MM_ROUTE_STAT() Map matching route state, offset:52, len:2
--- --- MM_ROAD_STAT() Map matching road state, offset:50, len:2
--- --- MM_MAP_STAT() Map matching map state, offset:48, len:2
--- AFS_L_371h ID:0x0371
--- --- ABL_L_AUS() Require dipped beam left out, offset:8, len:2
--- --- ABL_L_ST() Status dipped beam left, offset:22, len:2
--- --- KL56B_ABL_L_SPG(V) Voltage on KL56B (low beam), offset:24, len:8
--- --- KL56A_FL_L_SPG(V) Voltage to KL56A (main beam), offset:32, len:8
--- AFS_R_373h ID:0x0373
--- --- ABL_R_AUS() Require dipped beam right, offset:8, len:2
--- --- ABL_R_ST() Status dipped beam right, offset:22, len:2
--- --- KL56B_ABL_R_SPG(V) Voltage on KL56B (low beam), offset:24, len:8
--- --- KL56A_FL_R_SPG(V) Voltage to KL56A (main beam), offset:32, len:8
--- GW_C_B1 ID:0x0002
--- --- RIZ_VL(Impulse) Pulse-ring counter Wheel front left (48 per revolution), offset:0, len:8
--- --- RIZ_VR(Impulse) Pulse-ring counter Wheel front right (48 per revolution), offset:8, len:8
--- --- N_MOT(1/min) Engine speed, offset:16, len:16
--- --- T_MOT(°C) Motorkuhlmitteltemperatur, offset:32, len:8
--- --- LW_VZ_GW() Steering angle sign, offset:44, len:1
--- --- LW_INI_GW() Steering angle sensor: not initialized, offset:43, len:1
--- --- LW_CF_GW() Steering angle sensor: Code error, offset:42, len:1
--- --- LW_OV_GW() Steering angle sensor: overflow, offset:41, len:1
--- --- LW_PA_GW() Steering angle Paritat Bit (straight parity), offset:40, len:1
--- --- LW_GW(°) steering angle, offset:45, len:11
--- --- T_OEL(°C) oil temperature, offset:56, len:8
--- GW_C_B2 ID:0x0003
--- --- BLS_ST() Status of brake light switch, offset:6, len:2
--- --- BLS_UNT() Bremslichtunterdruckung, offset:5, len:1
--- --- BRE_AKT_ESP() ESP brake intervention active, offset:4, len:1
--- --- LUEFT_MOT_KL() Engine fan defective Control lamp, offset:3, len:1
--- --- KOMP_NOTAUS() Air conditioning compressor emergency shutdown, offset:2, len:1
--- --- KOMP_BAUS() Switch off the air conditioning compressor: Acceleration, offset:1, len:1
--- --- ART_ABW_AKT() ART distance warning is switched on, offset:0, len:1
--- --- WHC() Transmission selector lever (NAG only), offset:12, len:4
--- --- BELADUNG() loading, offset:10, len:2
--- --- P() Parking position, offset:9, len:1
--- --- RG() Ruckwartsgang inserted (all gearboxes), offset:8, len:1
--- --- DRTGVL() Direction of rotation wheel front left, offset:16, len:2
--- --- DVL(1/min) Wheel speed front left, offset:18, len:14
--- --- LTG_CHK_POS() Line monitoring possible, offset:39, len:1
--- --- KPL() Clutch stepped, offset:38, len:1
--- --- INF_RFE_FSG() FSG: EHB-ASG in the fall plane, offset:37, len:1
--- --- ST3_LEDL_DL() Left LED 3-stage switch Continuous light, offset:36, len:1
--- --- ST3_LEDL_BL() Left LED 3-stage switch flashing light, offset:35, len:1
--- --- ST3_LEDR_DL() Right LED 3-stage switch Continuous light, offset:34, len:1
--- --- ST3_LEDR_BL() Right LED 3-stage switch flashing light, offset:33, len:1
--- --- ST2_LED_DL() LED 2-stage switch Continuous light, offset:32, len:1
--- --- WHST() Transmission selector lever (NAG, KSG, CVT), KSG, CVT), offset:40, len:3
--- --- MBRE_ESP(Nm) Set braking torque (BR240 factor 1.8 larger), offset:44, len:12
--- --- LL_STBL() Idling is stable, offset:63, len:1
--- --- SUB_ABL_R() Substitution dipped beam right, offset:62, len:1
--- --- SUB_ABL_L() Substitution dipped beam left, offset:61, len:1
--- --- ZVB_EIN_MS() Switch on the additional consumer, offset:60, len:1
--- --- NOTBRE() Emergency braking (brake light flashing), offset:59, len:1
--- --- N_VRBT_SBCSH_AKT() SBC-S / H active, ASG must not switch to "N", ASG darf nicht nach "N" schalten, offset:58, len:1
--- --- ZH_AUS_MS() Switch off the heater, offset:57, len:1
--- --- ZWP_EIN_MS() Switch on the auxiliary water pump, offset:56, len:1
--- GW_C_B3 ID:0x0222
--- --- T_GET(°C) Getriebeoltemperatur, offset:0, len:8
--- --- AY_S(m/s²) Fahrzeugquerbeschleunig. In the center of gravity (= left), offset:8, len:8
--- --- FTK_BMI() Identifier Acceleration type (> 100: more dynamic), offset:16, len:8
--- --- FTK_LMI() Code transverse acceleration type (> 100: more dynamic), offset:24, len:8
--- --- GIER_ROH(°/s) Raw signal Yaw rate without adjustment / filtering (= left), offset:40, len:16
--- --- LRS_MODE() Mode air control system, offset:60, len:1
--- --- HZL_ST() Status of heating power, offset:58, len:2
--- --- EHB_BN() EHB electrical wiring status, offset:56, len:2
--- GW_C_B4 ID:0x0322
--- --- PRESF_ENBL() Enable Presafe, offset:7, len:1
--- --- PRESF_STAT() Presafe status, offset:3, len:4
--- --- PRESF_TGL() Presafe toggle bit, offset:0, len:1
--- --- PRESF_L_RGS_AKT() Rev. Belt tensioner, left Straffing cycle active, offset:9, len:1
--- --- PRESF_R_RGS_AKT() Rev. Belt tensioner right Straffyklus aktiv, offset:8, len:1
--- GW_C_B5 ID:0x010a
--- --- RIZ_HL(Impulse) Pulse-ring counter Wheel rear left (48 per revolution), offset:0, len:8
--- --- RIZ_HR(Impulse) Pulse-ring counter Rear right wheel (48 per revolution), offset:8, len:8
--- --- DRTGHR() Direction of rotation wheel, rear right, offset:16, len:2
--- --- DHR(1/min) Wheel speed rear right, offset:18, len:14
--- --- DRTGHL() Turning wheel left rear, offset:32, len:2
--- --- DHL(1/min) Wheel speed rear left, offset:34, len:14
--- --- FMMOTMAX() Factor for devaluation. D. Max. Mom. With. A.druck, offset:48, len:8
--- GW_C_B7 ID:0x0005
--- --- DRTGVR() Direction of rotation wheel front right, offset:32, len:2
--- --- DVR(1/min) Wheel speed front right, offset:34, len:14
--- GW_C_B8 ID:0x0201
--- --- LAST_GEN(%) Generator load (only for LIN generators!), offset:2, len:6
--- --- KL_61_EIN() Terminal 61, offset:1, len:1
--- GW_C_B9 ID:0x0320
--- --- VB(µl/250ms) consumption, offset:0, len:16
--- --- TANK_FS(l) Tank fuel level, offset:16, len:8
--- TP_TELEAID_AGW6 ID:0x0209
--- --- TP_TELEAID_AGW() Communication TELEAID to AGW, offset:0, len:64
--- TP_TELEAID_EZS5 ID:0x00f9
--- --- TP_TELEAID_EZS() Communication TELEAID to the EZS, offset:0, len:64
--- TP_TELEAID_KOMBI4 ID:0x01a1
--- --- TP_TELEAID_KOMBI() Communication TELEAID to COMBI, offset:0, len:64
--- TP_WR_KOMBI3 ID:0x01a0
--- --- TP_WR_KOMBI() Communication WR to KOMBI, offset:0, len:64
--- NM_ZGW ID:0x0404
--- --- NM() Network Management, offset:0, len:64
--- SG_APPL_SD ID:0x0538
--- --- SG_APPL() Control unit to external application, offset:0, len:64
--- SG_APPL_ZGW ID:0x0764
--- --- SG_APPL() Control unit to external application, offset:0, len:64
--- D_RQ_AAG ID:0x0730
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_AGW ID:0x05d6
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_ALB ID:0x0561
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_ARMADA ID:0x06bc
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_BSG ID:0x0732
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_DBE ID:0x0667
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_EZS ID:0x04e0
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_FDSVL ID:0x06be
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_FDSVR ID:0x06bf
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_HFS ID:0x0577
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_ICANI ID:0x07da
--- --- D_RQ_ICANI() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_KLA ID:0x0791
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_KOMBI ID:0x05b4
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_LRK ID:0x06af
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST0 ID:0x0640
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST1 ID:0x0641
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST10 ID:0x064a
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST11 ID:0x064b
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST12 ID:0x064c
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST13 ID:0x064d
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST14 ID:0x064e
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST15 ID:0x064f
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST16 ID:0x0540
--- D_RQ_MOST17 ID:0x0541
--- D_RQ_MOST18 ID:0x0542
--- D_RQ_MOST19 ID:0x0543
--- D_RQ_MOST2 ID:0x0642
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST20 ID:0x0544
--- D_RQ_MOST21 ID:0x0545
--- D_RQ_MOST22 ID:0x0546
--- D_RQ_MOST23 ID:0x0547
--- D_RQ_MOST24 ID:0x0548
--- D_RQ_MOST25 ID:0x0549
--- D_RQ_MOST27 ID:0x054b
--- D_RQ_MOST28 ID:0x054c
--- D_RQ_MOST29 ID:0x054d
--- D_RQ_MOST3 ID:0x0643
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST30 ID:0x054e
--- D_RQ_MOST31 ID:0x054f
--- D_RQ_MOST4 ID:0x0644
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST5 ID:0x0645
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST6 ID:0x0646
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST7 ID:0x0647
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST8 ID:0x0648
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MOST9 ID:0x0649
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MRM ID:0x06d5
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_MSS ID:0x0726
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_NAVI ID:0x054a
--- --- D_RQ_NAVI() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_OBF ID:0x06a5
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_PFDS ID:0x072e
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_PTS ID:0x0733
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_RWT ID:0x0560
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_SAM_B ID:0x0661
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_SAM_H ID:0x0563
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_SAM_V ID:0x0662
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_SB ID:0x06ad
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_SF ID:0x06ac
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_SHZ ID:0x057b
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_STH ID:0x0739
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_THL ID:0x0749
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_THR ID:0x074b
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_TPM ID:0x06b8
--- --- D_RQ_TPM() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_TVL ID:0x06c8
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_TVR ID:0x06ca
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_UBF ID:0x06bd
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_WSS ID:0x06a8
--- --- D_RQ() KWP2000 Diagnostics Request, offset:0, len:64
--- D_RQ_GLOBAL ID:0x001c
--- --- D_RQ() Global KWP2000 diagnostic request, offset:0, len:64
KOMBI
--- KOMBI_A1 ID:0x000c
--- --- KL_58D_B(%) Brightness instrument lighting, offset:0, len:8
--- --- V_SIGNAL(km/h) vehicle speed, offset:8, len:8
--- --- SP_PARK_SPERR() Mirror in parking position, offset:23, len:1
--- --- SCHLUE_ABH_EIN() Key dependency, offset:22, len:1
--- --- ANH_UEBW() Switch on the monitoring unit, offset:21, len:1
--- --- TFL_EIN() Day driving lights, offset:20, len:1
--- --- T_C() temperature unit, offset:19, len:1
--- --- AUTO_TUER() Automatic door lock, offset:18, len:1
--- --- TFSM_B() Tank fuel level minimum, offset:17, len:1
--- --- DZ_EIN() Switch on the sign (taxi), offset:16, len:1
--- --- ESH_AUTO_EIN() Easy Entry / automatic. Positionierg. on, offset:31, len:1
--- --- ESH_LENK_EIN() Steering column adjustment for I / O assistance, offset:30, len:1
--- --- ESH_SITZ_EIN() Adjust the seat adjustment for I / O assistance, offset:29, len:1
--- --- ESH_POS_STD() Seat adjustment distance for I / O assistance to standard, offset:28, len:1
--- --- FDS_F_CHAR() FDS characteristics driver, offset:27, len:1
--- --- FDS_B_CHAR() FDS characteristics Passenger, offset:26, len:1
--- --- SP_ANKL_SPERR() Mirrors for vehicle locking, offset:25, len:1
--- --- SPRACHE() language, offset:36, len:4
--- --- UFB_EIN() Ambient lighting, offset:35, len:1
--- --- FL_OK() High beam on, offset:34, len:1
--- --- RR_KM() Traveling distance unit, offset:33, len:1
--- --- SLF() search, offset:32, len:1
--- --- RDK_AKT() Activate RDK, offset:47, len:1
--- --- AMB_LI() Lighting level ambientes Licht, offset:43, len:4
--- --- VWZ_AUS_MFL() Pre-selection time disabled via MFL (LED off), offset:42, len:1
--- --- VWZ_AKT() Preset time activated (LED on), offset:41, len:1
--- --- STHL_EIN_KOMBI() Switch on heating, offset:40, len:1
--- --- INLI_NLZ(s) Interior lighting Afterglow, offset:48, len:8
--- --- ABL_NLZ(s) Stand-by and / or Neglicht Nachleuchzeit (SWA), offset:56, len:8
--- KOMBI_A2 ID:0x0038
--- --- TAGE_ZAHL(Tage) Daily circulation payers, offset:0, len:16
--- --- TAG(Tage) Day, offset:16, len:8
--- --- MONAT(Monate) month, offset:24, len:8
--- --- JAHR(Jahre) year, offset:32, len:8
--- KOMBI_A4 ID:0x020c
--- --- P_KI() Priorities on the Kombi, offset:5, len:3
--- KOMBI_A5 ID:0x01ca
--- --- KI_STAT() Status Combi, offset:0, len:8
--- --- BUTTON_1_1() Next screen, offset:15, len:1
--- --- BUTTON_1_2() Previous display, offset:14, len:1
--- --- BUTTON_2_1() reserve, offset:13, len:1
--- --- BUTTON_2_2() reserve, offset:12, len:1
--- --- BUTTON_3_1() Button "", offset:11, len:1
--- --- BUTTON_3_2() Button "-", offset:10, len:1
--- --- BUTTON_4_1() Phone Send, offset:9, len:1
--- --- BUTTON_4_2() Phone End, offset:8, len:1
--- --- BUTTON_5_1() reserve, offset:23, len:1
--- --- BUTTON_5_2() reserve, offset:22, len:1
--- --- BUTTON_6_1() reserve, offset:21, len:1
--- --- BUTTON_6_2() reserve, offset:20, len:1
--- --- BUTTON_7_1() reserve, offset:19, len:1
--- --- BUTTON_7_2() reserve, offset:18, len:1
--- --- BUTTON_8_1() reserve, offset:17, len:1
--- --- BUTTON_8_2() reserve, offset:16, len:1
--- --- PTT_1_1() Activate Linguatronic, offset:31, len:1
--- --- PTT_1_2() Disable Linguatronic, offset:30, len:1
--- --- PTT_2_1() reserve, offset:29, len:1
--- --- PTT_2_2() reserve, offset:28, len:1
--- --- PTT_3_1() reserve, offset:27, len:1
--- --- PTT_3_2() reserve, offset:26, len:1
--- --- PTT_4_1() reserve, offset:25, len:1
--- --- PTT_4_2() reserve, offset:24, len:1
--- KOMBI_A6 ID:0x009e
--- --- SCHLUE_ID_KI() Key from COMBI, offset:0, len:32
--- --- KM_KI(km) The distance traveled from KOMBI, offset:32, len:24
--- KOMBI_A7 ID:0x0194
--- --- DISP_DIMM(%) Display Dimming, offset:0, len:8
--- --- KOMBI_MW_OK() Combi is multi-value, offset:15, len:1
--- --- HD_BEGRENZ() Rear lid restraint on, offset:10, len:1
--- KOMBI_A8 ID:0x032a
--- --- KI_STAT_MSS() Status Combi, offset:0, len:8
--- --- BUTTON_1_1_MSS() Next screen, offset:15, len:1
--- --- BUTTON_1_2_MSS() Previous display, offset:14, len:1
--- --- BUTTON_2_1_MSS() reserve, offset:13, len:1
--- --- BUTTON_2_2_MSS() reserve, offset:12, len:1
--- --- BUTTON_3_1_MSS() Button "", offset:11, len:1
--- --- BUTTON_3_2_MSS() Button "-", offset:10, len:1
--- --- BUTTON_4_1_MSS() Phone Send, offset:9, len:1
--- --- BUTTON_4_2_MSS() Phone End, offset:8, len:1
--- --- BUTTON_5_1_MSS() reserve, offset:23, len:1
--- --- BUTTON_5_2_MSS() reserve, offset:22, len:1
--- --- BUTTON_6_1_MSS() reserve, offset:21, len:1
--- --- BUTTON_6_2_MSS() reserve, offset:20, len:1
--- --- BUTTON_7_1_MSS() reserve, offset:19, len:1
--- --- BUTTON_7_2_MSS() reserve, offset:18, len:1
--- --- BUTTON_8_1_MSS() reserve, offset:17, len:1
--- --- BUTTON_8_2_MSS() reserve, offset:16, len:1
--- --- PTT_1_1_MSS() Activate Linguatronic, offset:31, len:1
--- --- PTT_1_2_MSS() Disable Linguatronic, offset:30, len:1
--- --- PTT_2_1_MSS() reserve, offset:29, len:1
--- --- PTT_2_2_MSS() reserve, offset:28, len:1
--- --- PTT_3_1_MSS() reserve, offset:27, len:1
--- --- PTT_3_2_MSS() reserve, offset:26, len:1
--- --- PTT_4_1_MSS() reserve, offset:25, len:1
--- --- PTT_4_2_MSS() reserve, offset:24, len:1
--- KOMBI_A9 ID:0x01cb
--- --- KOMBI_IPS_CONF() IPS configuration, offset:4, len:4
--- --- KOMBI_IPS_INDICATION() Iconbestatigung, offset:1, len:3
--- --- KOMBI_IPS_UPD() IPS update request, offset:0, len:1
--- TP_KOMBI_AGW1 ID:0x01d0
--- --- TP_KOMBI_AGW() Communication KOMBI zum AGW, offset:0, len:64
--- TP_KOMBI_MSS2 ID:0x0330
--- --- TP_KOMBI_MSS() Communication COMBI to MSS, offset:0, len:64
--- TP_KOMBI_TELEAID4 ID:0x03e1
--- --- TP_KOMBI_TELEAID() Communication COMBI to TELEAID, offset:0, len:64
--- TP_KOMBI_WR3 ID:0x03e0
--- --- TP_KOMBI_WR() Communication KOMBI zum WR, offset:0, len:64
--- NM_KOMBI ID:0x0414
--- --- NM() Network Management, offset:0, len:64
--- D_RS_KOMBI ID:0x04f4
--- --- D_RS() KWP2000 diagnosis response, offset:0, len:64
--- SD_RS_KOMBI ID:0x07d4
--- --- KOMBI_FV01() Fault line actuator 01h, offset:7, len:1
--- --- KOMBI_FV02() Fault Tractor 02h, offset:6, len:1
--- --- KOMBI_FV03() Fault line actuator 03h, offset:5, len:1
--- --- KOMBI_FV04() Fault Tractor 04h, offset:4, len:1
--- --- KOMBI_FV05() Fault Tractor 05h, offset:3, len:1
--- --- KOMBI_FV06() Fault Tractor 06h, offset:2, len:1
--- --- KOMBI_FV07() Fault Reservoir 07h, offset:1, len:1
--- --- KOMBI_KENN() Identification for> 8 byte, offset:0, len:1
--- --- KOMBI_FV08() Fault check valve 08h, offset:15, len:1
--- --- KOMBI_FV09() Fault Tractor 09h, offset:14, len:1
--- --- KOMBI_FV0A() Error flag 0Ah, offset:13, len:1
--- --- KOMBI_FV0B() Error flag 0Bh, offset:12, len:1
--- --- KOMBI_FV0C() Fault Tractor 0Ch, offset:11, len:1
--- --- KOMBI_FV0D() Fault Tractor 0Dh, offset:10, len:1
--- --- KOMBI_FV0E() Fault Tractor 0Eh, offset:9, len:1
--- --- KOMBI_FV0F() Fault Tractor 0Fh, offset:8, len:1
--- --- KOMBI_FV10() Fault Tractor 10h, offset:23, len:1
--- --- KOMBI_FV11() Fault check valve 11h, offset:22, len:1
--- --- KOMBI_FV12() Fault Tractor 12h, offset:21, len:1
--- --- KOMBI_FV13() Fault Tractor 13h, offset:20, len:1
--- --- KOMBI_FV14() Error-check valve 14h, offset:19, len:1
--- --- KOMBI_FV15() Fault line 15h, offset:18, len:1
--- --- KOMBI_FV16() Fault latch 16h, offset:17, len:1
--- --- KOMBI_FV17() Fault Tractor 17h, offset:16, len:1
--- --- KOMBI_FV18() Fault flag 18h, offset:31, len:1
--- --- KOMBI_FV19() Defective actuator 19h, offset:30, len:1
--- --- KOMBI_FV1A() Fault Tracer 1Ah, offset:29, len:1
--- --- KOMBI_FV1B() Error 1Bh, offset:28, len:1
--- --- KOMBI_FV1C() 1Ch, offset:27, len:1
--- --- KOMBI_FV1D() Fault Tractor 1Dh, offset:26, len:1
--- --- KOMBI_FV1E() Fault Tractor 1Eh, offset:25, len:1
--- --- KOMBI_FV1F() Fault Tractor 1Fh, offset:24, len:1
--- --- KOMBI_FV20() Fault Tractor 20h, offset:39, len:1
--- --- KOMBI_FV21() Fault Tractor 21h, offset:38, len:1
--- --- KOMBI_FV22() Fault Tractor 22h, offset:37, len:1
--- --- KOMBI_FV23() Fault Tractor 23h, offset:36, len:1
--- --- KOMBI_FV24() Fault line 24h, offset:35, len:1
--- --- KOMBI_FV25() Fault Tractor 25h, offset:34, len:1
--- --- KOMBI_FV26() Fault line 26h, offset:33, len:1
--- --- KOMBI_FV27() Fault Tractor 27h, offset:32, len:1
--- --- KOMBI_FV28() Fault Tractor 28h, offset:47, len:1
--- --- KOMBI_FV29() Fault Tractor 29h, offset:46, len:1
--- --- KOMBI_FV2A() Fault Tracer 2Ah, offset:45, len:1
--- --- KOMBI_FV2B() Error 2Bh, offset:44, len:1
--- --- KOMBI_FV2C() Error 2Ch, offset:43, len:1
--- --- KOMBI_FV2D() Error flag 2h, offset:42, len:1
--- --- KOMBI_FV2E() Fault Tractor 2Eh, offset:41, len:1
--- --- KOMBI_FV2F() Fault Tractor 2Fh, offset:40, len:1
--- --- KOMBI_FV30() Error valve 30h, offset:55, len:1
--- --- KOMBI_FV31() Fault Tractor 31h, offset:54, len:1
--- --- KOMBI_FV32() Fault line 32h, offset:53, len:1
--- --- KOMBI_FV33() Fault Tractor 33h, offset:52, len:1
--- --- KOMBI_FV34() Fault check valve 34h, offset:51, len:1
--- --- KOMBI_FV35() Fault Tractor 35h, offset:50, len:1
--- --- KOMBI_FV36() Fault Tractor 36h, offset:49, len:1
--- --- KOMBI_FV37() Fault Tractor 37h, offset:48, len:1
--- --- KOMBI_PGV01() State of flux 01h, offset:63, len:1
--- --- KOMBI_PGV02() State of state 02h, offset:62, len:1
--- --- KOMBI_PGV03() State of flux 03h, offset:61, len:1
--- --- KOMBI_PGV04() State of flux 04h, offset:60, len:1
--- --- KOMBI_PGV05() State of state 05h, offset:59, len:1
--- --- KOMBI_PGV06() State of state 06h, offset:58, len:1
--- --- KOMBI_PGV07() State of state 07h, offset:57, len:1
--- --- KOMBI_PGV08() State of production 08h, offset:56, len:1
--- SG_APPL_KOMBI ID:0x0774
--- --- SG_APPL() Control unit to external application, offset:0, len:64
MRM
--- MRM_A1 ID:0x0006
--- --- WISCHER_LSS_ST() Status 6-stage wiper switch, offset:5, len:3
--- --- BLI_LI() Directional flashing left (request), offset:4, len:1
--- --- BLI_RE() Directional right (requirement), offset:3, len:1
--- --- FL_EIN() Switch on main light (requirement), offset:2, len:1
--- --- LHP_EIN() Switch on the headlight, offset:1, len:1
--- --- SGH_EIN_LR() Switch on signal horn, offset:0, len:1
--- --- TIPP_WISCH() Tap wiped, offset:12, len:1
--- --- WASCHEN() Washing, offset:11, len:1
--- --- SCH_WI_INT() LSS in position I (Regenensensor operation), offset:10, len:1
--- --- SCH_WI_1() LSS in position II (stage 1, requirement), Anforderung), offset:9, len:1
--- --- SCH_WI_2() LSS in position III (stage 2, requirement), Anforderung), offset:8, len:1
--- --- SBS_AUS() Deactivating voice operation (abort), offset:23, len:1
--- --- SBS_EIN() Switch the voice control on (Push to talk), offset:22, len:1
--- --- LW_VZ_B() Steering angle sign, offset:28, len:1
--- --- LW_INI_B() Steering angle sensor: not initialized, offset:27, len:1
--- --- LW_CF_B() Steering angle sensor: Code error, offset:26, len:1
--- --- LW_OV_B() Steering angle sensor: overflow, offset:25, len:1
--- --- LW_PA_B() Steering angle Paritat Bit (straight parity), offset:24, len:1
--- --- LW_B(°) steering angle, offset:29, len:11
--- MRM_A2 ID:0x01a8
--- --- WIPPE_1_1() Button on the top left, offset:7, len:1
--- --- WIPPE_1_2() Button on the top left, offset:6, len:1
--- --- WIPPE_2_1() Press the lower left button upwards, offset:5, len:1
--- --- WIPPE_2_2() Button down, offset:4, len:1
--- --- WIPPE_3_1() Button on the top right, offset:3, len:1
--- --- WIPPE_3_2() Button at the top right, offset:2, len:1
--- --- WIPPE_4_1() Button down, offset:1, len:1
--- --- WIPPE_4_2() Button down, offset:0, len:1
--- --- WIPPE_5_1() reserve, offset:15, len:1
--- --- WIPPE_5_2() reserve, offset:14, len:1
--- --- WIPPE_6_1() reserve, offset:13, len:1
--- --- WIPPE_6_2() reserve, offset:12, len:1
--- --- WIPPE_7_1() reserve, offset:11, len:1
--- --- WIPPE_7_2() reserve, offset:10, len:1
--- --- WIPPE_8_1() reserve, offset:9, len:1
--- --- WIPPE_8_2() reserve, offset:8, len:1
--- MRM_A3 ID:0x0296
--- --- LSVH_OB() Steering column adjustment lever turned upwards, offset:5, len:1
--- --- LSVH_UN() Steering column adjustment lever turned downwards, offset:4, len:1
--- --- LS_AUF_MRM() Steering column upwards, offset:3, len:1
--- --- LS_AB_MRM() Steering column downwards, offset:2, len:1
--- --- LS_VOR_MRM() Steering column forward, offset:1, len:1
--- --- LS_ZUR_MRM() Steering column backwards (towards the driver), offset:0, len:1
--- --- ELH_DEF() ELH defective, offset:24, len:1
--- NM_MRM ID:0x0415
--- --- NM() Network Management, offset:0, len:64
--- D_RS_MRM ID:0x04f5
--- --- D_RS() KWP2000 diagnosis response, offset:0, len:64
--- SD_RS_MRM ID:0x07d5
--- --- MRM_FV01() Fault line actuator 01h, offset:7, len:1
--- --- MRM_FV02() Fault Tractor 02h, offset:6, len:1
--- --- MRM_FV03() Fault line actuator 03h, offset:5, len:1
--- --- MRM_FV04() Fault Tractor 04h, offset:4, len:1
--- --- MRM_FV05() Fault Tractor 05h, offset:3, len:1
--- --- MRM_FV06() Fault Tractor 06h, offset:2, len:1
--- --- MRM_FV07() Fault Reservoir 07h, offset:1, len:1
--- --- MRM_KENN() Identification for> 8 byte, offset:0, len:1
--- --- MRM_FV08() Fault check valve 08h, offset:15, len:1
--- --- MRM_FV09() Fault Tractor 09h, offset:14, len:1
--- --- MRM_FV0A() Error flag 0Ah, offset:13, len:1
--- --- MRM_FV0B() Error flag 0Bh, offset:12, len:1
--- --- MRM_FV0C() Fault Tractor 0Ch, offset:11, len:1
--- --- MRM_FV0D() Fault Tractor 0Dh, offset:10, len:1
--- --- MRM_FV0E() Fault Tractor 0Eh, offset:9, len:1
--- --- MRM_FV0F() Fault Tractor 0Fh, offset:8, len:1
--- --- MRM_FV10() Fault Tractor 10h, offset:23, len:1
--- --- MRM_FV11() Fault check valve 11h, offset:22, len:1
--- --- MRM_FV12() Fault Tractor 12h, offset:21, len:1
--- --- MRM_FV13() Fault Tractor 13h, offset:20, len:1
--- --- MRM_FV14() Error-check valve 14h, offset:19, len:1
--- --- MRM_FV15() Fault line 15h, offset:18, len:1
--- --- MRM_FV16() Fault latch 16h, offset:17, len:1
--- --- MRM_FV17() Fault Tractor 17h, offset:16, len:1
--- --- MRM_FV18() Fault flag 18h, offset:31, len:1
--- --- MRM_FV19() Defective actuator 19h, offset:30, len:1
--- --- MRM_FV1A() Fault Tracer 1Ah, offset:29, len:1
--- --- MRM_FV1B() Error 1Bh, offset:28, len:1
--- --- MRM_FV1C() 1Ch, offset:27, len:1
--- --- MRM_FV1D() Fault Tractor 1Dh, offset:26, len:1
--- --- MRM_FV1E() Fault Tractor 1Eh, offset:25, len:1
--- --- MRM_FV1F() Fault Tractor 1Fh, offset:24, len:1
--- --- MRM_FV20() Fault Tractor 20h, offset:39, len:1
--- --- MRM_FV21() Fault Tractor 21h, offset:38, len:1
--- --- MRM_FV22() Fault Tractor 22h, offset:37, len:1
--- --- MRM_FV23() Fault Tractor 23h, offset:36, len:1
--- --- MRM_FV24() Fault line 24h, offset:35, len:1
--- --- MRM_FV25() Fault Tractor 25h, offset:34, len:1
--- --- MRM_FV26() Fault line 26h, offset:33, len:1
--- --- MRM_FV27() Fault Tractor 27h, offset:32, len:1
--- --- MRM_FV28() Fault Tractor 28h, offset:47, len:1
--- --- MRM_FV29() Fault Tractor 29h, offset:46, len:1
--- --- MRM_FV2A() Fault Tracer 2Ah, offset:45, len:1
--- --- MRM_FV2B() Error 2Bh, offset:44, len:1
--- --- MRM_FV2C() Error 2Ch, offset:43, len:1
--- --- MRM_FV2D() Error flag 2h, offset:42, len:1
--- --- MRM_FV2E() Fault Tractor 2Eh, offset:41, len:1
--- --- MRM_FV2F() Fault Tractor 2Fh, offset:40, len:1
--- --- MRM_PGV01() State of flux 01h, offset:55, len:1
--- --- MRM_PGV02() State of state 02h, offset:54, len:1
--- --- MRM_PGV03() State of flux 03h, offset:53, len:1
--- --- MRM_PGV04() State of flux 04h, offset:52, len:1
--- --- MRM_PGV05() State of state 05h, offset:51, len:1
--- --- MRM_PGV06() State of state 06h, offset:50, len:1
--- --- MRM_PGV07() State of state 07h, offset:49, len:1
--- --- MRM_PGV08() State of production 08h, offset:48, len:1
--- SG_APPL_MRM ID:0x0775
--- --- SG_APPL() Control unit to external application, offset:0, len:64
SAM_V
--- SAM_V_A1 ID:0x000a
--- --- AFL_AKT() Outdoor light activated by light sensor, offset:7, len:1
--- --- NSW_ST_EIN() Fog lamps are switched on, offset:6, len:1
--- --- FL_ST_EIN() High beam is switched on, offset:5, len:1
--- --- SGH_ST_EIN() Signal horn is switched on, offset:4, len:1
--- --- KL_15_KG_V() Kl15 / 87 FW, offset:3, len:1
--- --- KL_15R_KG_V() Kl15R, offset:2, len:1
--- --- SWA_AKT() Headlight activation active, offset:1, len:1
--- --- KL_61_EIN() Terminal 61, offset:0, len:1
--- --- FL_EIN_SAM_V() Switch on the main light, offset:15, len:1
--- --- PL_LI_EIN() Turn on parking light on the left, offset:14, len:1
--- --- PL_RE_EIN() Turn on parking light on the right, offset:13, len:1
--- --- DIMM2() Outdoor light dimmed with threshold 2, offset:12, len:1
--- --- STL_EIN() Switch the parking light on, offset:11, len:1
--- --- ABL_EIN() Switch on dipped beam, offset:10, len:1
--- --- NSW_EIN() Switch on the fog lamp, offset:9, len:1
--- --- NSL_EIN() Switch on the fog light, offset:8, len:1
--- --- BBV_KL() Brake lining wear indicator light, offset:23, len:1
--- --- DIAG_15R_EIN() Terminal 15R activated via diagnostics, offset:22, len:1
--- --- DIAG_15_EIN() Terminal 15 activated via diagnostics, offset:21, len:1
--- --- KOMP_DEF() Cooling compressor control Current output defective, offset:20, len:1
--- --- KOMP_EIN() Air conditioning compressor, offset:19, len:1
--- --- HAS_KL() Hand brake applied (control lamp), offset:18, len:1
--- --- KOMP_LFT() Cold compressor, offset:17, len:1
--- --- TFL_EIN_ECE() Day driving lights, offset:16, len:1
--- --- INF_RFE_SAM() SAM / x: EHB-ASG in the retracted plane, x = B (230), V (211,164,251), F (240), x = B (230), V (211,164,251), F (240), offset:31, len:1
--- --- BLS_A() SAM / x: Brake light switch output EHB-ASG, x = B (230), V (211), F (240), x = B (230), V (211), F (240), offset:30, len:1
--- --- SAM_V_PAS() SAM / V passive, offset:29, len:1
--- --- VSTAT_A() SAM / x: v signal from the EHB-ASG, x = B (230), V (211), F (240), x = B (230), V (211), F ( 240), offset:28, len:1
--- --- MW_AKT_SAM_V() SBC value: follow-up active, offset:27, len:1
--- --- KWS_KL() Cooling water level too low Control lamp, offset:26, len:1
--- --- WWS_KL() Wash water level too low control lamp, offset:25, len:1
--- --- BFL_KL() Brake fluid level control lamp, offset:24, len:1
--- --- INSTR_AUS() Instrument lighting, offset:39, len:1
--- --- SM_DEF_VBF() Sidemarker front passenger side defective, offset:38, len:1
--- --- SM_DEF_VF() Sidemarker front driver's side defective, offset:37, len:1
--- --- BLI_DEF_VF() Front turn signal driver is defective, offset:36, len:1
--- --- PL_DEF_VF() Front parking light defective, offset:35, len:1
--- --- ABL_DEF_F() Low beam driver's side defective, offset:34, len:1
--- --- FL_DEF_F() High beam driver defective, offset:33, len:1
--- --- NSW_DEF_F() Foglights Driver's side defective, offset:32, len:1
--- --- ABBL_DEF_F() Cornering light driver's side defective, offset:47, len:1
--- --- ABBL_LI_EIN() Cornering light left requested, offset:46, len:1
--- --- ABBL_DEAKT_F() Deactivate cornering light immediately, offset:45, len:1
--- --- ABBL_RE_EIN() Cornering light right requested, offset:44, len:1
--- --- ABL_K_AUS() Turn off the light on the passenger side, offset:43, len:1
--- --- DIAG_X4_F() Start Xenon4 diagnostic procedure Driver's side, offset:42, len:1
--- --- PL_ERS_VF() Replacement front parking light active, offset:41, len:1
--- --- BLI_ERS_VF() Replacement front turn signal driver active, offset:40, len:1
--- --- KL15_ST_RL() Shock signal Kl15, offset:55, len:1
--- --- KL15R_ST_RL() Shock signal Kl15R, offset:54, len:1
--- --- EHB_BEH() EHB Behelfsspannungsversorgung, offset:52, len:2
--- --- BBV_H_100() Brake lining wear rear 100%, offset:51, len:1
--- --- BBV_H_50() Brake lining wear rear 50%, offset:50, len:1
--- --- BBV_V_100() Brake lining wear front 100%, offset:49, len:1
--- --- BBV_V_50() Brake lining wear front 50%, offset:48, len:1
--- SAM_V_A2 ID:0x0017
--- --- T_AUSSEN_B(°C) Outside air temperature, offset:0, len:8
--- --- P_KAELTE(bar) Pressure refrigerant R134a, offset:8, len:16
--- --- T_KAELTE(°C) Temperature of refrigerant R134a, offset:24, len:16
--- --- I_KOMP(mA) Current compressor main control valve, offset:40, len:8
--- SAM_V_A3 ID:0x0070
--- --- RS_INT() Rain sensor on / off (position interval), offset:7, len:1
--- --- KL_31B_RS() Wiper outside the parking area, offset:6, len:1
--- --- KL_86_RS() Washing, offset:5, len:1
--- --- SAM_V_INIT() SAM_V initialization, offset:4, len:1
--- --- SCH_WI_1_RS() Steering column switch in stage 1, offset:3, len:1
--- --- DIAG_RS() Diagnosis of rain sensor, offset:2, len:1
--- NM_SAM_V ID:0x0402
--- --- NM() Network Management, offset:0, len:64
--- D_RS_SAM_V ID:0x04e2
--- --- D_RS() KWP2000 diagnosis response, offset:0, len:64
--- SD_RS_SAM_V ID:0x07c2
--- --- SAM_V_PGV01() State of flux 01h, offset:7, len:1
--- --- SAM_V_PGV02() State of state 02h, offset:6, len:1
--- --- SAM_V_PGV03() State of flux 03h, offset:5, len:1
--- --- SAM_V_PGV04() State of flux 04h, offset:4, len:1
--- --- SAM_V_PGV05() State of state 05h, offset:3, len:1
--- --- SAM_V_PGV06() State of state 06h, offset:2, len:1
--- --- SAM_V_PGV07() State of state 07h, offset:1, len:1
--- --- SAM_V_KENN() Identification for> 8 byte, offset:0, len:1
--- --- SAM_V_FM01() Error message 01h, offset:8, len:16
--- --- SAM_V_FM02() Error message 02h, offset:24, len:16
--- --- SAM_V_FM03() Error message 03h, offset:40, len:16
--- --- SAM_V_PGV08() State of production 08h, offset:63, len:1
--- --- SAM_V_PGV09() State of production 09h, offset:62, len:1
--- --- SAM_V_PGV0A() Condition 0Ah, offset:61, len:1
--- --- SAM_V_PGV0B() Condition 0Bh, offset:60, len:1
--- --- SAM_V_PGV0C() State of state 0Ch, offset:59, len:1
--- --- SAM_V_PGV0D() Condition 0Dh, offset:58, len:1
--- --- SAM_V_PGV0E() Condition 0Eh, offset:57, len:1
--- --- SAM_V_PGV0F() Condition 0Fh, offset:56, len:1
--- SG_APPL_SAM_V ID:0x0762
--- --- SG_APPL() Control unit to external application, offset:0, len:64
SAM_B
--- SAM_B_A1 ID:0x008c
--- --- KL_15_KG_DEF() Driver error for relays Kl15 / 87FW, offset:7, len:1
--- --- KL_15R_KG_DEF() Driver error for relay Kl15R, offset:6, len:1
--- --- KL_15_KG_B() Kl15 / 87 FW, offset:5, len:1
--- --- KL_15R_KG_B() Kl15R, offset:4, len:1
--- --- ZWP_LFT() Auxiliary water pump runs, offset:1, len:1
--- --- RG_SAM_B() Reverse gear engaged (manual gearbox only), offset:0, len:1
--- --- ABBL_DEF_B() Cornering light on passenger side defective, offset:13, len:1
--- --- BLI_DEF_VBF() Blinker front Passenger side defective, offset:12, len:1
--- --- PL_DEF_VBF() Parking light in the front passenger side defective, offset:11, len:1
--- --- ABL_DEF_BF() Low beam Passenger side defective, offset:10, len:1
--- --- FL_DEF_BF() High beam passenger side defective, offset:9, len:1
--- --- NSW_DEF_BF() Front fog lamp defective, offset:8, len:1
--- --- DIAG_X4_B() Start Xenon4 diagnostic procedure Passenger side, offset:18, len:1
--- --- PL_ERS_VBF() Replacement light Parkl. Front Beif page active, offset:17, len:1
--- --- BLI_ERS_VBF() Replacement light Blinker front Beif.page active, offset:16, len:1
--- --- KL_30A_EIN() 2. Switch on the battery, offset:26, len:1
--- --- GWHST_P_SAM_B() Transmission select lever "P" detected, offset:25, len:1
--- SAM_B_A2 ID:0x0260
--- --- HUPE_EIN() Triggering the horn warning, offset:7, len:1
--- --- HUPEN_EIN_ZEIT(ms) Time of horn control, offset:8, len:8
--- SHZ_A1 ID:0x0210
--- --- SH_VL_ST() Status Seat heating, front left, offset:3, len:2
--- --- SHB_VL_USPG() Sitzheizg./-beluftg. Off wg. UnderVoltage., offset:0, len:1
--- --- SH_VR_ST() Seat heating right front, offset:11, len:2
--- --- SHB_VR_USPG() Sitzheizg./-beluftg. Off wg. UnderVoltage., offset:8, len:1
--- NM_SAM_B ID:0x0401
--- --- NM() Network Management, offset:0, len:64
--- D_RS_SAM_B ID:0x04e1
--- --- D_RS() KWP2000 diagnosis response, offset:0, len:64
--- SD_RS_SAM_B ID:0x07c1
--- --- SAM_B_FV01() Fault line actuator 01h, offset:7, len:1
--- --- SAM_B_FV02() Fault Tractor 02h, offset:6, len:1
--- --- SAM_B_FV03() Fault line actuator 03h, offset:5, len:1
--- --- SAM_B_FV04() Fault Tractor 04h, offset:4, len:1
--- --- SAM_B_FV05() Fault Tractor 05h, offset:3, len:1
--- --- SAM_B_FV06() Fault Tractor 06h, offset:2, len:1
--- --- SAM_B_FV07() Fault Reservoir 07h, offset:1, len:1
--- --- SAM_B_KENN() Identification for> 8 byte, offset:0, len:1
--- --- SAM_B_FV08() Fault check valve 08h, offset:15, len:1
--- --- SAM_B_FV09() Fault Tractor 09h, offset:14, len:1
--- --- SAM_B_FV0A() Error flag 0Ah, offset:13, len:1
--- --- SAM_B_FV0B() Error flag 0Bh, offset:12, len:1
--- --- SAM_B_FV0C() Fault Tractor 0Ch, offset:11, len:1
--- --- SAM_B_FV0D() Fault Tractor 0Dh, offset:10, len:1
--- --- SAM_B_FV0E() Fault Tractor 0Eh, offset:9, len:1
--- --- SAM_B_FV0F() Fault Tractor 0Fh, offset:8, len:1
--- --- SAM_B_FV10() Fault Tractor 10h, offset:23, len:1
--- --- SAM_B_FV11() Fault check valve 11h, offset:22, len:1
--- --- SAM_B_FV12() Fault Tractor 12h, offset:21, len:1
--- --- SAM_B_FV13() Fault Tractor 13h, offset:20, len:1
--- --- SAM_B_FV14() Error-check valve 14h, offset:19, len:1
--- --- SAM_B_FV15() Fault line 15h, offset:18, len:1
--- --- SAM_B_FV16() Fault latch 16h, offset:17, len:1
--- --- SAM_B_FV17() Fault Tractor 17h, offset:16, len:1
--- --- SAM_B_FV18() Fault flag 18h, offset:31, len:1
--- --- SAM_B_FV19() Defective actuator 19h, offset:30, len:1
--- --- SAM_B_FV1A() Fault Tracer 1Ah, offset:29, len:1
--- --- SAM_B_FV1B() Error 1Bh, offset:28, len:1
--- --- SAM_B_FV1C() 1Ch, offset:27, len:1
--- --- SAM_B_FV1D() Fault Tractor 1Dh, offset:26, len:1
--- --- SAM_B_FV1E() Fault Tractor 1Eh, offset:25, len:1
--- --- SAM_B_FV1F() Fault Tractor 1Fh, offset:24, len:1
--- --- SAM_B_FV20() Fault Tractor 20h, offset:39, len:1
--- --- SAM_B_FV21() Fault Tractor 21h, offset:38, len:1
--- --- SAM_B_FV22() Fault Tractor 22h, offset:37, len:1
--- --- SAM_B_FV23() Fault Tractor 23h, offset:36, len:1
--- --- SAM_B_FV24() Fault line 24h, offset:35, len:1
--- --- SAM_B_FV25() Fault Tractor 25h, offset:34, len:1
--- --- SAM_B_FV26() Fault line 26h, offset:33, len:1
--- --- SAM_B_FV27() Fault Tractor 27h, offset:32, len:1
--- --- SAM_B_PGV01() State of flux 01h, offset:47, len:1
--- --- SAM_B_PGV02() State of state 02h, offset:46, len:1
--- --- SAM_B_PGV03() State of flux 03h, offset:45, len:1
--- --- SAM_B_PGV04() State of flux 04h, offset:44, len:1
--- --- SAM_B_PGV05() State of state 05h, offset:43, len:1
--- --- SAM_B_PGV06() State of state 06h, offset:42, len:1
--- --- SAM_B_PGV07() State of state 07h, offset:41, len:1
--- --- SAM_B_PGV08() State of production 08h, offset:40, len:1
--- SG_APPL_SAM_B ID:0x0761
--- --- SG_APPL() Control unit to external application, offset:0, len:64
SAM_H
--- SAM_H_A1 ID:0x0004
--- --- TVL_AUF() Tur front left is up, offset:7, len:1
--- --- TVR_AUF() Tur front right is up, offset:6, len:1
--- --- THL_AUF() Door rear left is on, offset:5, len:1
--- --- THR_AUF() Door rear right is up, offset:4, len:1
--- --- HD_AUF() Rear lid is on, offset:3, len:1
--- --- HDK_BET() Rear lid contact, offset:2, len:1
--- --- KL54_RM() Terminal 54 Hardware active, offset:1, len:1
--- --- PNK_AKT() Panic alarm is active, offset:0, len:1
--- --- SAM_H_PAS() SAM / H passive, offset:15, len:1
--- --- HSCHL_ZU() Rear lock in 90? position, offset:14, len:1
--- --- HHS_ST_EIN() Heated rear window is switched on, offset:12, len:1
--- --- HHS_ST_USPG() Heizb. Rear window is switched off due to subsp., offset:11, len:1
--- --- MOT_AUF() The bonnet is on, offset:8, len:1
--- --- EDW_AUTO_AKTIV() EDW self-creation "Belgium" active, offset:22, len:1
--- --- EDW_FT_ENT() EDW activated with opened driver's door, offset:21, len:1
--- --- EDW_ALARM() EDW alarm triggered, offset:20, len:1
--- --- EDW_AAG_AKT() Activate EDW attachment monitoring, offset:19, len:1
--- --- EDW_IRS_AKT() Activate EDW interior protection, offset:18, len:1
--- --- EDW_AKT() EDW, offset:17, len:1
--- --- EDW_IL_EIN() Switch on the EDW interior light, offset:16, len:1
--- --- KL_54_DEF() Terminal 54 error, offset:31, len:1
--- --- BL3_DEF() 3. Braking lamp defective, offset:30, len:1
--- --- NSL_DEF_L() Rear fog light defective, offset:29, len:1
--- --- BLI_DEF_HL() Blinker rear left defective, offset:28, len:1
--- --- SL_DEF_L() Rear left defective, offset:27, len:1
--- --- BL_DEF_L() Brake light left defective, offset:26, len:1
--- --- RFL_DEF_L() Rear light defective, offset:25, len:1
--- --- KZL_DEF_L() License plate light defective, offset:24, len:1
--- --- NSL_DEF_R() Rear fog light defective, offset:37, len:1
--- --- BLI_DEF_HR() Blinker rear right defective, offset:36, len:1
--- --- SL_DEF_R() Final right defect, offset:35, len:1
--- --- BL_DEF_R() Brake light right defective, offset:34, len:1
--- --- RFL_DEF_R() Rear right light defective, offset:33, len:1
--- --- KZL_DEF_R() License plate light defective, offset:32, len:1
--- --- BLI_ERS_HL() Replacement light left rear indicator active, offset:47, len:1
--- --- SL_ERS_HL() Replacement light rear left rear light active, offset:46, len:1
--- --- BL_ERS_HL() Replacement light brake light rear left, offset:45, len:1
--- --- BLI_ERS_HR() Replacement light indicator right rear active, offset:43, len:1
--- --- SL_ERS_HR() Replacement light rear right rear active, offset:42, len:1
--- --- BL_ERS_HR() Replacement light brake light rear right, offset:41, len:1
--- --- FS_ENT_L() Fund seat left unlocked, offset:55, len:1
--- --- FS_ENT_R() Fundown right unlocked, offset:54, len:1
--- --- FS_VER_L() Fund seat left locked, offset:53, len:1
--- --- FS_VER_R() Fund office right locked, offset:52, len:1
--- --- HFS_SB_EIN() Switch HFS searchlight on, offset:51, len:1
--- --- RFL_L_EIN() Switch on the reverse light on the left, offset:63, len:1
--- --- RFL_R_EIN() Turn the rear right light on, offset:62, len:1
--- --- NSL_L_EIN() Switch on rear fog light, offset:61, len:1
--- --- NSL_R_EIN() Turn the rear fog light on the right, offset:60, len:1
--- --- NSL_L_D_EIN() Switch the rear fog light dimmed to the left, offset:59, len:1
--- --- NSL_R_D_EIN() Turn dimmed fog light dimmed, offset:58, len:1
--- SAM_H_A2 ID:0x0090
--- --- TANK_FS_B(%) Tank fuel level, offset:0, len:8
--- --- TANK_GE_RE(%) Tank feed value right, offset:8, len:8
--- --- TANK_GE_LI(%) Fuel tank value on the left, offset:16, len:8
--- SAM_H_A3 ID:0x000e
--- --- WARN_AKT() Warning light is active, offset:2, len:1
--- --- BLI_LI_EIN() Turn the turn signal to the left, offset:1, len:1
--- --- BLI_RE_EIN() Turn the turn signal to the right, offset:0, len:1
--- --- HELL_BLINK(ms) Flashing Light light phase, offset:8, len:8
--- SAM_H_A4 ID:0x0041
--- --- ZV_NOTOEFF() ZV emergency opening, offset:7, len:1
--- SAM_H_A5 ID:0x0230
--- --- SL_EIN_EDW() Turn on the taillight, offset:2, len:1
--- --- ABL_EIN_EDW() Switch on dipped beam, offset:1, len:1
--- --- NSW_EIN_EDW() Switch on the fog lamp, offset:0, len:1
--- --- HELL_EDW(ms) Continuous light phase, offset:8, len:8
--- SAM_H_A6 ID:0x00cc