This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
215_b.txt
2452 lines (2415 loc) · 124 KB
/
215_b.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
FRAME EZS_A1 (0x0000)
B: KL_15c_ein, OFFSET 7 LEN 1 - Terminal 15c is switched on
B: KL_15R_ein, OFFSET 6 LEN 1 - Terminal 15R is switched on
B: KL_15_ein, OFFSET 5 LEN 1 - Terminal 15 is switched on
B: KL_15x_ein, OFFSET 4 LEN 1 - Terminal 15x is switched on
B: Schlue_st, OFFSET 3 LEN 1 - Key is inserted
B: KL_50_ein, OFFSET 1 LEN 1 - Terminal 50 is switched on
B: KG_KL_akt, OFFSET 0 LEN 1 - Keyless Go terminal control active
B: ZV_N_VER_MW_AKT, OFFSET 12 LEN 1 - Do not lock ZV while SBC added value is active
B: Fzg_rech, OFFSET 11 LEN 1 - Message: "Vehicle is calculating, please wait"
B: Appl_aus, OFFSET 10 LEN 1 - Do not send application IDs, only NM IDs
B: Diag_Tgl, OFFSET 9 LEN 1 - Diagnosis toggle bit
B: Diag_akt, OFFSET 8 LEN 1 - diagnostic mode active (Diag_akt = 1 => cycle time = 20ms)
I: U_Batt, OFFSET 16 LEN 8 - battery voltage
E: Spei_Nr, OFFSET 29 LEN 3 - Current memory block number
RAW: 0 - memory block 1 / MEMORY1
RAW: 1 - memory block 2 / MEMORY2
RAW: 2 - memory block 3 / MEMORY3
RAW: 3 - not defined
RAW: 7 - signal not available / SNV
B: Fern_Alm, OFFSET 28 LEN 1 - Remote triggering of the MSS alarm
B: Pnk_Alm_aus, OFFSET 27 LEN 1 - Switch off panic alarm with a key
B: Pnk_Alm_ein, OFFSET 26 LEN 1 - Switch on panic alarm with key
B: BS_SL, OFFSET 25 LEN 1 - brake switch for shift lock
B: Schlue_neu, OFFSET 24 LEN 1 - Message: "Renew key"
I: SD_St1, OFFSET 32 LEN 8 - System diagnosis status (R230)
FRAME EZS_A2 (0x0002)
E: DRTGVL, OFFSET 0 LEN 2 - direction of rotation of front left wheel
RAW: 0 - No direction of rotation detection / PASSIVE
RAW: 1 - direction of rotation forward / FORWARD
RAW: 2 - direction of rotation backwards / REVERSE
RAW: 3 - signal not available / SNV
I: DVL, OFFSET 2 LEN 14 - wheel speed front left
I: N_MOT, OFFSET 16 LEN 16 - motor speed
I: T_MOT, OFFSET 32 LEN 8 - engine coolant temperature
I: RIZ_VL, OFFSET 40 LEN 8 - Pulse ring counter, front left wheel (48 per revolution)
I: RIZ_VR, OFFSET 48 LEN 8 - Pulse ring counter, front right wheel (48 per revolution)
FRAME EZS_A3 (0x0001)
B: SN1_Sel_EZS, OFFSET 7 LEN 1 - lock nut 1 (open) selectively
B: SN1_Glo_EZS, OFFSET 6 LEN 1 - lock nut 1 (open) globally
B: SN2_Glo_EZS, OFFSET 5 LEN 1 - lock nut 2 (close) global
B: HFE_EZS, OFFSET 4 LEN 1 - remote trunk lid unlocking
B: BLi_Stat, OFFSET 3 LEN 1 - blinker status (open / close feedback)
E: ZVQ, OFFSET 0 LEN 3 - source ZV request
RAW: 0 - radio receiver (DBE) / FUNK
RAW: 1 - IR receiver (TVL / TVR) / IR
RAW: 2 - lock nut buttons (TVL / TVR / HD) / SN
RAW: 3 - Keyless Go / KG
RAW: 7 - signal not available / SNV
B: HD_stop, OFFSET 8 LEN 1 - trunk lid stop
FRAME EZS_A4 (0x0150)
I: Schlue_ID, OFFSET 0 LEN 32 - Identification key for pre-filtering
I: KM_EZS, OFFSET 32 LEN 24 - mileage
FRAME EZS_A5 (0x001F)
B: LL, OFFSET 7 LEN 1 - left-hand drive
B: RL, OFFSET 6 LEN 1 - right hand drive
E: RDK_Ld, OFFSET 4 LEN 2 - RDK country coding
RAW: 0 - world / RDW
RAW: 1 - USA / USA
RAW: 2 - not defined
RAW: 3 - SG not programmed / SNV
E: MSS_Var, OFFSET 1 LEN 3 - MSS variant coding
RAW: 0 - SG not programmed / SNV
RAW: 1 - Taxi / TAXI
RAW: 2 - special vehicle / SPECIAL
B: ABC_VH, OFFSET 15 LEN 1 - ABC available
B: Ers_Licht, OFFSET 14 LEN 1 - Complete replacement light allowed
E: Licht_Ld, OFFSET 12 LEN 2 - country coding light control
RAW: 0 - Canada / CAN
RAW: 1 - Japan / JAP
RAW: 2 - USA / USA
RAW: 3 - Rest of the World / RDW
E: KLA_Ld, OFFSET 10 LEN 2 - KLA country coding
RAW: 0 - European climate / EURO
RAW: 1 - hot countries / hot
RAW: 2 - Kaltländer / KALT
RAW: 3 - SG not programmed / SNV
B: AHLFV_sperr, OFFSET 9 LEN 1 - Front window regulator: Disable automatic run-up
B: AHLFH_sperr, OFFSET 8 LEN 1 - rear window regulator: disable automatic run-up
E: EDW_Var, OFFSET 21 LEN 3 - EDW variant coding
RAW: 0 - no IS, no AS / KIS_KAS
RAW: 1 - IS, no AS / IS_KAS
RAW: 2 - no IS, AS / KIS_AS
RAW: 3 - IS, AS / IS_AS
RAW: 7 - SG not programmed / SNV
E: Tank_Var, OFFSET 19 LEN 2 - tank variant coding
RAW: 0 - standard tank / STD
RAW: 1 - ski bag tank / SKI
RAW: 2 - not defined
RAW: 3 - SG not programmed / SNV
E: FSB_Var, OFFSET 16 LEN 3 - windscreen variant coding
RAW: 0 - special protective glazing / SPECIAL
RAW: 2 - green glass with band filter / GREEN
RAW: 6 - Siglasol with band filter / SIGLASOL
RAW: 7 - SG not programmed / SNV
E: FCOD_BR, OFFSET 27 LEN 5 - vehicle code series
RAW: 0 - BR 221 or BR 140 / BR221
RAW: 1 - BR 129 / BR129
RAW: 2 - BR 210 or BR 212 / BR210
RAW: 3 - BR 202 or BR 204 / BR202
RAW: 4 - BR 220 / BR220
RAW: 5 - BR 170 / BR170
RAW: 6 - BR 203 / BR203
RAW: 7 - BR 168 / BR168
RAW: 8 - BR 163 / BR163
RAW: 9 - BR 208 / BR208
RAW: 10 - BR 463 / BR463
RAW: 11 - BR 215 / BR215
RAW: 12 - BR 230 / BR230
RAW: 13 - BR 211 / BR211
RAW: 14 - BR 209 / BR209
RAW: 15 - BR 461 / BR461
RAW: 16 - BR 240 / BR240
RAW: 17 - BR 251 / BR251
RAW: 18 - BR 171 / BR171
RAW: 19 - BR 164 / BR164
RAW: 20 - BR 169 or BR 245 / BR169
RAW: 21 - BR 199 / BR199
RAW: 22 - BR 216 / BR216
RAW: 23 - BR 219 / BR219
RAW: 24 - BR 454 (z-car) / BR454
RAW: 25 - NCV2 / NCV2
RAW: 26 - V-Class / Vito / VITO
RAW: 27 - Sprinter / SPRINTER
RAW: 28 - NCV3 / NCV3
RAW: 29 - NCV1 / NCV1
RAW: 30 - all other BR / REST
RAW: 31 - code does not exist / SNV
E: FCOD_KAR, OFFSET 24 LEN 3 - vehicle code body
RAW: 0 - W - Limousine (or G for short BM1 / 3 for BR 463, G for 461) / W
RAW: 1 - V - sedan long (or VF with BR 210/211, G long BM6 with BR 463) / V
RAW: 2 - C - Coupé (or VV for BR 210/211/220) / C
RAW: 3 - S - T-Modell (or special protection B4 for BR W240, T for BR 245) / S
RAW: 4 - A - Cabrio (or X with BR 164) / A
RAW: 5 - R - Roadster (or special protection B4 for BR 210/211/220 / V240) / R
RAW: 6 - SS - special protection B6 / 7 (or CL for BR 203) / SS
RAW: 7 - code does not exist / SNV
E: FCOD_MOT, OFFSET 34 LEN 6 - Vehicle code engine
RAW: 0 - M272 E35 or M272 DE35 / M272E35_DE35
RAW: 1 - M271 E18 ML red. (105 kW) / M271E18ML105
RAW: 2 - M271 E18 ML (120 kW) / M271E18ML120
RAW: 3 - M112 E37 / M112E37
RAW: 4 - M272 E25 or M272 DE25 / M272E25_DE25
RAW: 5 - M272 E30 or M272 DE30 / M272E30_DE30
RAW: 7 - M112 E28 / M112E28
RAW: 8 - M112 E32 / M112E32
RAW: 10 - M273 E46 or M273 DE46 / M273E46_DE46
RAW: 11 - M273 E55 or M273 DE55 / M273E55_DE55
RAW: 12 - M112 E26 / M112E26
RAW: 13 - M113 E43 / M113E43
RAW: 14 - M113 E50 / M113E50
RAW: 18 - M271 E18 ML / 1 (140 kW) / M271E18ML140
RAW: 19 - M271 DE18 ML red. (105 kW) / M271DE18ML105
RAW: 20 - M271 DE18 ML (125 kW) / M271DE18ML125
RAW: 22 - M111E E23 ML / M111E_E23ML
RAW: 23 - M111E E20 / M111E_E20
RAW: 24 - M111E E20 ML / M111E_E20ML
RAW: 25 - M112 E32 red. (140 kW) / M112E32_140
RAW: 26 - M266 E20 ATL / M266E20ATL
RAW: 27 - M266 E15 / M266E15
RAW: 28 - M266 E17 / M266E17
RAW: 29 - M266 E20 / M266E20
RAW: 30 - M275 E55 or M285 E55 / M275E55
RAW: 31 - M137 E58 / M137E58
RAW: 32 - OM 640 DE20 LA (60 kW) / OM640DE20LA60
RAW: 34 - OM 640 DE20 LA (80 kW) / OM640DE20LA80
RAW: 35 - OM642 DE30 LA (155/160 kW) / OM642DE30LA160
RAW: 36 - OM 640 DE20 LA (100 kW) / OM640DE20LA100
RAW: 37 - OM613 DE32 LA or OM648 DE32 LA / OM613DE32LA
RAW: 38 - OM 639 DE15 LA (70/50 kW) / OM639DE15LA
RAW: 39 - OM628 DE40 LA / OM628DE40LA
RAW: 40 - OM642 DE30 LA (140 kW) / OM642DE30LA140
RAW: 43 - OM612 DE27 LA or OM647 DE27 LA (120/130 kW) / OM612DE27LA
RAW: 44 - OM611 DE22 LA (105/100 kW) or OM646 DE22 LA (100/105/110 kW) / OM611DE22LA100
RAW: 45 - OM611 DE22 LA (85 kW) or OM646 DE22 LA (90 kW) / OM611DE22LA85
RAW: 46 - OM611 DE22 LA (75 kW) or OM646 DE22 LA (75 kW) / OM611DE22LA75
RAW: 48 - AMG M112 E32 ML / AMGM112E32ML
RAW: 49 - AMG M113 E55 ML / AMGM113E55ML
RAW: 50 - AMG M155 E55 ML / AMGM155E55ML
RAW: 51 - AMG M275 E60 / AMGM275E60
RAW: 52 - AMG OM612 DE30 LA / AMGOM612DE30LA
RAW: 56 - AMG M137 E63 / AMGM137E63
RAW: 57 - AMG M113 E55 / AMGM113E55
RAW: 60 - AMG M156 E60 ML / AMGM156E60ML
RAW: 61 - AMG M156 E63 / AMGM156E55ML
RAW: 62 - VR6 from VW / VR6
RAW: 63 - code does not exist / SNV
B: PRW_VH, OFFSET 32 LEN 1 - Flat roll warning device available
E: FZGVERSN, OFFSET 45 LEN 3 - model-dependent vehicle version (only 220/215/230)
RAW: 0 - Status when the respective series / START was launched
RAW: 1 - BR 220: AJ 99 / X, C215: AJ 01/1, R230: AJ 02/1 / V1
RAW: 2 - BR 220: AJ 01/1, C215: AJ 02 / X, R230: AJ 03 / X / V2
RAW: 3 - BR 220: ÄJ 02 / X, C215: ÄJ 03 / X, R230: not defined / V3
RAW: 4 - BR 220: prohibited, C215 / R230: not defined / V4
RAW: 5 - BR 220: prohibited, C215 / R230: not defined / V5
RAW: 6 - BR 220: ÄJ 03 / X, C215 / R230: not defined / V6
RAW: 7 - BR 220 / C215 / R230: not defined / V7
B: KP_VH, OFFSET 44 LEN 1 - communication platform available
B: MSS_vh, OFFSET 42 LEN 1 - SA multifunction SG special vehicles available
B: STH_vh, OFFSET 41 LEN 1 - SA auxiliary heating available
B: KG_vh, OFFSET 40 LEN 1 - SA Keyless Go available
B: SBS_vh, OFFSET 55 LEN 1 - SA voice control system available
B: MFL_vh, OFFSET 54 LEN 1 - SA multi-function steering wheel available
B: Tel_vh, OFFSET 53 LEN 1 - SA telephone available
B: OMS_vh, OFFSET 52 LEN 1 - SA OMS available
B: FKSH_vh, OFFSET 51 LEN 1 - SA Raise rear head restraints available
B: ASG_vh, OFFSET 50 LEN 1 - SA Automated manual transmission available
B: WWSHZG_vh, OFFSET 49 LEN 1 - SA washing water hose heater available
B: ART_VH, OFFSET 48 LEN 1 - SA ART available (Code 219)
B: RDK_vh, OFFSET 63 LEN 1 - SA tire pressure control available
B: Xen_vh, OFFSET 62 LEN 1 - Xenon light available
B: HR_vh, OFFSET 61 LEN 1 - SA rear roller blind available
B: ZZH_vh, OFFSET 60 LEN 1 - closing aid available
B: FKLA_vh, OFFSET 59 LEN 1 - SA rear KLA available
B: AHK_vh, OFFSET 58 LEN 1 - SA trailer coupling available
B: PTS_vh, OFFSET 57 LEN 1 - Parktronic system available
B: Spi_vh, OFFSET 56 LEN 1 - SA Automatic mirror dimming available
FRAME EZS_A6 (0x01D0)
I: ZB_FBC_EZS, OFFSET 0 LEN 64 - access / drive authorization code
FRAME EZS_A7 (0x0003)
E: BLS, OFFSET 6 LEN 2 - brake light switch
RAW: 0 - brake not applied / BREMSE_NBET
RAW: 1 - brake applied / BREMSE_BET
RAW: 2 - not defined
RAW: 3 - signal not available / SNV
B: BLS_UNT, OFFSET 5 LEN 1 - brake light suppression
B: INF_RFE_FSG, OFFSET 4 LEN 1 - FSG: EHB-ASG in fall-back level
B: LUEFT_MOT_KL, OFFSET 3 LEN 1 - motor fan defective control lamp
B: KOMP_NOTAUS, OFFSET 2 LEN 1 - Air conditioning compressor emergency shutdown
B: KOMP_BAUS, OFFSET 1 LEN 1 - switch off air conditioning compressor: acceleration
B: ANL_LFT, OFFSET 0 LEN 1 - starter is running
E: WHC, OFFSET 12 LEN 4 - gear selector lever position (only NAG)
RAW: 5 - Selector lever in position "D" / D
RAW: 6 - Selector lever in position "N" / N
RAW: 7 - Selector lever in position "R" / R
RAW: 8 - Selector lever in position "P" / P
RAW: 9 - Selector lever in position "+" / PLUS
RAW: 10 - Selector lever in position "-" / MINUS
RAW: 11 - Selector lever in intermediate position "N-D" / N_ZW_D
RAW: 12 - Selector lever in intermediate position "R-N" / N_ZW_R
RAW: 13 - Selector lever in intermediate position "P-R" / P_ZW_R
RAW: 15 - Selector lever position implausible / SNV
B: LTG_CHK_POS, OFFSET 11 LEN 1 - line monitoring possible
B: EHB_PUMPE_LFT, OFFSET 10 LEN 1 - EHB pump is running
B: VGL_ST, OFFSET 9 LEN 1 - preheating status
B: Rg, OFFSET 8 LEN 1 - reverse gear engaged (all transmissions)
B: ST3_LEDL_DL, OFFSET 23 LEN 1 - Left LED 3-stage switch permanent light
B: ST3_LEDL_BL, OFFSET 22 LEN 1 - Left LED 3-position switch, flashing light
B: ST3_LEDR_DL, OFFSET 21 LEN 1 - Right LED 3-stage switch permanent light
B: ST3_LEDR_BL, OFFSET 20 LEN 1 - Right LED 3-position switch, flashing light
B: ST2_LED_DL, OFFSET 19 LEN 1 - LED 2-stage switch permanent light
E: LOADED, OFFSET 17 LEN 2 - loading
RAW: 0 - Unloaded / EMPTY
RAW: 1 - Half Load / HALF
RAW: 2 - Fully Loaded / FULL
RAW: 3 - load not recognized / SNV
B: CRASH_MS, OFFSET 16 LEN 1 - crash signal from engine control
E: WHST, OFFSET 29 LEN 3 - Gear selector lever position (NAG and KSG)
RAW: 0 - Gear selector lever in position "P" / P
RAW: 1 - Gear selector lever in position "R" / R
RAW: 2 - Gear selector lever in position "N" / N
RAW: 4 - Gear selector lever in position "D" / D
RAW: 7 - signal not available / SNV
E: EHB_BN, OFFSET 27 LEN 2 - EHB electrical system status
RAW: 0 - U_EHB> 10.5 V for t> 500 ms / U_GRUEN
RAW: 1 - 9.5 V <U_EHB <= 10.5 V for t> 500 ms / U_GELB
RAW: 2 - 8.5 V <U_EHB <= 9.5 V for t> 500 ms / U_ROT
RAW: 3 - U_EHB <= 8.5 V (only Bosch: or signal not available) / U_MIN
B: ART_ABW_AKT, OFFSET 24 LEN 1 - ART distance warning is switched on
B: KPL, OFFSET 38 LEN 1 - clutch stepped
FRAME EZS_A8 (0x017E)
B: KFK_aus, OFFSET 7 LEN 1 - refrigerant level control inactive
B: SUS_aus, OFFSET 6 LEN 1 - Corrosive gas-dependent air recirculation switch with AKF inactive
B: SUS_ein, OFFSET 5 LEN 1 - Corrosive gas-dependent recirculation switching generally active
B: Tunnel_aus, OFFSET 4 LEN 1 - tunnel function inactive
B: GBA_man, OFFSET 3 LEN 1 - Fan bar display only in manual mode
B: RHT_ein, OFFSET 2 LEN 1 - REHEAT operation (t_Verd_Soll = 0 ° C fixed)
B: Umluft_ubg, OFFSET 1 LEN 1 - manual recirculation switching for an unlimited period
B: DSPL_neg, OFFSET 0 LEN 1 - display always negative
B: DSPL_pos, OFFSET 15 LEN 1 - display always positive
B: SAS_aus, OFFSET 14 LEN 1 - Key-dependent storage off
B: MDSL_aus, OFFSET 13 LEN 1 - Center nozzle fast run inactive
B: Circulating air lock, OFFSET 12 LEN 1 - 100% circulating air not possible
B: SGR_aus, OFFSET 11 LEN 1 - Immediate fan reaction off
B: AGE_aus, OFFSET 10 LEN 1 - Automatic basic setting inactive
B: HLK_auf, OFFSET 9 LEN 1 - Main air flap open in "OFF" mode
B: GBL_aus, OFFSET 8 LEN 1 - E-suction fan: basic ventilation off
E: P_KNL, OFFSET 20 LEN 4 - pressure characteristic
RAW: 0 - 20bar / 100% characteristic / P_KNL0
RAW: 1 - 20bar / 90% characteristic / P_KNL1
RAW: 2 - 20bar / 80% or 28bar / 100% characteristic curve / P_KNL2
RAW: 3 - 18bar / 100% characteristic / P_KNL3
RAW: 4 - 18bar / 90% characteristic / P_KNL4
RAW: 15 - SG not programmed / SNV
E: GBL_KNL, OFFSET 17 LEN 3 - basic ventilation characteristic
RAW: 0 - 25% basic ventilation / GBL_KNL0
RAW: 1 - 40% basic ventilation / GBL_KNL1
RAW: 2 - 30% basic ventilation / GBL_KNL2
RAW: 7 - SG not programmed / SNV
B: AHLF_aus, OFFSET 16 LEN 1 - Recirculation comfort function: Automatic deceleration off
B: FR_COOL, OFFSET 31 LEN 1 - Cooling as footwell flushing inactive
B: GRSBS_aus, OFFSET 29 LEN 1 - Fan reduction inactive on Linguatronic request
FRAME VIN (0x001D)
I: VIN, OFFSET 0 LEN 64 - Vehicle Identification Number
FRAME EZS_ANZ (0x0332)
B: EZS_M0, OFFSET 7 LEN 1 - Message 0: "MK status reduced"
B: EZS_M1, OFFSET 6 LEN 1 - message 1: "MK reload immediately"
B: EZS_M2, OFFSET 5 LEN 1 - Message 2: "MK expired, vehicle blocked"
B: EZS_M3, OFFSET 4 LEN 1 - Message 3: "MK authorization error"
B: EZS_M4, OFFSET 3 LEN 1 - message 4: "MK manual reloading done"
B: EZS_M5, OFFSET 2 LEN 1 - message 5: "MK manual reload successful"
B: EZS_M6, OFFSET 1 LEN 1 - message 6: "MK manual reloading failed"
B: EZS_M7, OFFSET 0 LEN 1 - Message 7: "MK"
FRAME TP_EZS_TELEAID5 (0x03BE)
I: TP_EZS_TELEAID, OFFSET 0 LEN 64 - Communication EZS to TELEAID
FRAME NM_EZS (0x0400)
I: NM, OFFSET 0 LEN 64 - network management
FRAME D_RS_EZS (0x06F0)
I: D_RS, OFFSET 0 LEN 64 - KWFB diagnostic response
FRAME SD_RS_EZS (0x0760)
I: SD_RS, OFFSET 0 LEN 64 - System diagnosis response
FRAME SG_APPL_EZS (0x07B1)
I: SG_APPL, OFFSET 0 LEN 64 - control device to external application
FRAME D_RQ_AAG (0x05B0)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_BNS (0x06BF)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_DBE (0x0747)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_FKLA (0x06B2)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_KG (0x05D7)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_KLA (0x0571)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_KOMBI (0x0734)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_LRK (0x074F)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_MKLH (0x067E)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_MKLVL (0x06DC)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_MKLVR (0x06DD)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_MRM (0x06B5)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_MSS (0x06A6)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_OBF (0x05C5)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_PTS (0x06B3)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_RADIO (0x0676)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_RDK (0x06B8)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_SAM_B (0x05A1)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_SAM_F (0x0782)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_SAM_H (0x05A3)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_SH (0x066E)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_STH (0x06B9)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_SVL (0x06CC)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_SVR (0x06CD)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_THL (0x06C9)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_THR (0x06CB)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_TVL (0x0748)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_TVR (0x074A)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_VS (0x0749)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
FRAME D_RQ_ZVP (0x0564)
I: D_RQ, OFFSET 0 LEN 64 - KWFB diagnosis request
ZGW
FRAME EZS_A5 (0x001F)
B: LL, OFFSET 7 LEN 1 - left-hand drive
B: RL, OFFSET 6 LEN 1 - right hand drive
E: RDK_Ld, OFFSET 4 LEN 2 - RDK country coding
RAW: 0 - world / RDW
RAW: 1 - USA / USA
RAW: 2 - not defined
RAW: 3 - SG not programmed / SNV
E: MSS_Var, OFFSET 1 LEN 3 - MSS variant coding
RAW: 0 - SG not programmed / SNV
RAW: 1 - Taxi / TAXI
RAW: 2 - special vehicle / SPECIAL
B: ABC_VH, OFFSET 15 LEN 1 - ABC available
B: Ers_Licht, OFFSET 14 LEN 1 - Complete replacement light allowed
E: Licht_Ld, OFFSET 12 LEN 2 - country coding light control
RAW: 0 - Canada / CAN
RAW: 1 - Japan / JAP
RAW: 2 - USA / USA
RAW: 3 - Rest of the World / RDW
E: KLA_Ld, OFFSET 10 LEN 2 - KLA country coding
RAW: 0 - European climate / EURO
RAW: 1 - hot countries / hot
RAW: 2 - Kaltländer / KALT
RAW: 3 - SG not programmed / SNV
B: AHLFV_sperr, OFFSET 9 LEN 1 - Front window regulator: Disable automatic run-up
B: AHLFH_sperr, OFFSET 8 LEN 1 - rear window regulator: disable automatic run-up
E: EDW_Var, OFFSET 21 LEN 3 - EDW variant coding
RAW: 0 - no IS, no AS / KIS_KAS
RAW: 1 - IS, no AS / IS_KAS
RAW: 2 - no IS, AS / KIS_AS
RAW: 3 - IS, AS / IS_AS
RAW: 7 - SG not programmed / SNV
E: Tank_Var, OFFSET 19 LEN 2 - tank variant coding
RAW: 0 - standard tank / STD
RAW: 1 - ski bag tank / SKI
RAW: 2 - not defined
RAW: 3 - SG not programmed / SNV
E: FSB_Var, OFFSET 16 LEN 3 - windscreen variant coding
RAW: 0 - special protective glazing / SPECIAL
RAW: 2 - green glass with band filter / GREEN
RAW: 6 - Siglasol with band filter / SIGLASOL
RAW: 7 - SG not programmed / SNV
E: FCOD_BR, OFFSET 27 LEN 5 - vehicle code series
RAW: 0 - BR 221 or BR 140 / BR221
RAW: 1 - BR 129 / BR129
RAW: 2 - BR 210 or BR 212 / BR210
RAW: 3 - BR 202 or BR 204 / BR202
RAW: 4 - BR 220 / BR220
RAW: 5 - BR 170 / BR170
RAW: 6 - BR 203 / BR203
RAW: 7 - BR 168 / BR168
RAW: 8 - BR 163 / BR163
RAW: 9 - BR 208 / BR208
RAW: 10 - BR 463 / BR463
RAW: 11 - BR 215 / BR215
RAW: 12 - BR 230 / BR230
RAW: 13 - BR 211 / BR211
RAW: 14 - BR 209 / BR209
RAW: 15 - BR 461 / BR461
RAW: 16 - BR 240 / BR240
RAW: 17 - BR 251 / BR251
RAW: 18 - BR 171 / BR171
RAW: 19 - BR 164 / BR164
RAW: 20 - BR 169 or BR 245 / BR169
RAW: 21 - BR 199 / BR199
RAW: 22 - BR 216 / BR216
RAW: 23 - BR 219 / BR219
RAW: 24 - BR 454 (z-car) / BR454
RAW: 25 - NCV2 / NCV2
RAW: 26 - V-Class / Vito / VITO
RAW: 27 - Sprinter / SPRINTER
RAW: 28 - NCV3 / NCV3
RAW: 29 - NCV1 / NCV1
RAW: 30 - all other BR / REST
RAW: 31 - code does not exist / SNV
E: FCOD_KAR, OFFSET 24 LEN 3 - vehicle code body
RAW: 0 - W - Limousine (or G for short BM1 / 3 for BR 463, G for 461) / W
RAW: 1 - V - sedan long (or VF with BR 210/211, G long BM6 with BR 463) / V
RAW: 2 - C - Coupé (or VV for BR 210/211/220) / C
RAW: 3 - S - T-Modell (or special protection B4 for BR W240, T for BR 245) / S
RAW: 4 - A - Cabrio (or X with BR 164) / A
RAW: 5 - R - Roadster (or special protection B4 for BR 210/211/220 / V240) / R
RAW: 6 - SS - special protection B6 / 7 (or CL for BR 203) / SS
RAW: 7 - code does not exist / SNV
E: FCOD_MOT, OFFSET 34 LEN 6 - Vehicle code engine
RAW: 0 - M272 E35 or M272 DE35 / M272E35_DE35
RAW: 1 - M271 E18 ML red. (105 kW) / M271E18ML105
RAW: 2 - M271 E18 ML (120 kW) / M271E18ML120
RAW: 3 - M112 E37 / M112E37
RAW: 4 - M272 E25 or M272 DE25 / M272E25_DE25
RAW: 5 - M272 E30 or M272 DE30 / M272E30_DE30
RAW: 7 - M112 E28 / M112E28
RAW: 8 - M112 E32 / M112E32
RAW: 10 - M273 E46 or M273 DE46 / M273E46_DE46
RAW: 11 - M273 E55 or M273 DE55 / M273E55_DE55
RAW: 12 - M112 E26 / M112E26
RAW: 13 - M113 E43 / M113E43
RAW: 14 - M113 E50 / M113E50
RAW: 18 - M271 E18 ML / 1 (140 kW) / M271E18ML140
RAW: 19 - M271 DE18 ML red. (105 kW) / M271DE18ML105
RAW: 20 - M271 DE18 ML (125 kW) / M271DE18ML125
RAW: 22 - M111E E23 ML / M111E_E23ML
RAW: 23 - M111E E20 / M111E_E20
RAW: 24 - M111E E20 ML / M111E_E20ML
RAW: 25 - M112 E32 red. (140 kW) / M112E32_140
RAW: 26 - M266 E20 ATL / M266E20ATL
RAW: 27 - M266 E15 / M266E15
RAW: 28 - M266 E17 / M266E17
RAW: 29 - M266 E20 / M266E20
RAW: 30 - M275 E55 or M285 E55 / M275E55
RAW: 31 - M137 E58 / M137E58
RAW: 32 - OM 640 DE20 LA (60 kW) / OM640DE20LA60
RAW: 34 - OM 640 DE20 LA (80 kW) / OM640DE20LA80
RAW: 35 - OM642 DE30 LA (155/160 kW) / OM642DE30LA160
RAW: 36 - OM 640 DE20 LA (100 kW) / OM640DE20LA100
RAW: 37 - OM613 DE32 LA or OM648 DE32 LA / OM613DE32LA
RAW: 38 - OM 639 DE15 LA (70/50 kW) / OM639DE15LA
RAW: 39 - OM628 DE40 LA / OM628DE40LA
RAW: 40 - OM642 DE30 LA (140 kW) / OM642DE30LA140
RAW: 43 - OM612 DE27 LA or OM647 DE27 LA (120/130 kW) / OM612DE27LA
RAW: 44 - OM611 DE22 LA (105/100 kW) or OM646 DE22 LA (100/105/110 kW) / OM611DE22LA100
RAW: 45 - OM611 DE22 LA (85 kW) or OM646 DE22 LA (90 kW) / OM611DE22LA85
RAW: 46 - OM611 DE22 LA (75 kW) or OM646 DE22 LA (75 kW) / OM611DE22LA75
RAW: 48 - AMG M112 E32 ML / AMGM112E32ML
RAW: 49 - AMG M113 E55 ML / AMGM113E55ML
RAW: 50 - AMG M155 E55 ML / AMGM155E55ML
RAW: 51 - AMG M275 E60 / AMGM275E60
RAW: 52 - AMG OM612 DE30 LA / AMGOM612DE30LA
RAW: 56 - AMG M137 E63 / AMGM137E63
RAW: 57 - AMG M113 E55 / AMGM113E55
RAW: 60 - AMG M156 E60 ML / AMGM156E60ML
RAW: 61 - AMG M156 E63 / AMGM156E55ML
RAW: 62 - VR6 from VW / VR6
RAW: 63 - code does not exist / SNV
B: PRW_VH, OFFSET 32 LEN 1 - Flat roll warning device available
E: FZGVERSN, OFFSET 45 LEN 3 - model-dependent vehicle version (only 220/215/230)
RAW: 0 - Status when the respective series / START was launched
RAW: 1 - BR 220: AJ 99 / X, C215: AJ 01/1, R230: AJ 02/1 / V1
RAW: 2 - BR 220: AJ 01/1, C215: AJ 02 / X, R230: AJ 03 / X / V2
RAW: 3 - BR 220: ÄJ 02 / X, C215: ÄJ 03 / X, R230: not defined / V3
RAW: 4 - BR 220: prohibited, C215 / R230: not defined / V4
RAW: 5 - BR 220: prohibited, C215 / R230: not defined / V5
RAW: 6 - BR 220: ÄJ 03 / X, C215 / R230: not defined / V6
RAW: 7 - BR 220 / C215 / R230: not defined / V7
B: KP_VH, OFFSET 44 LEN 1 - communication platform available
B: MSS_vh, OFFSET 42 LEN 1 - SA multifunction SG special vehicles available
B: STH_vh, OFFSET 41 LEN 1 - SA auxiliary heating available
B: KG_vh, OFFSET 40 LEN 1 - SA Keyless Go available
B: SBS_vh, OFFSET 55 LEN 1 - SA voice control system available
B: MFL_vh, OFFSET 54 LEN 1 - SA multi-function steering wheel available
B: Tel_vh, OFFSET 53 LEN 1 - SA telephone available
B: OMS_vh, OFFSET 52 LEN 1 - SA OMS available
B: FKSH_vh, OFFSET 51 LEN 1 - SA Raise rear head restraints available
B: ASG_vh, OFFSET 50 LEN 1 - SA Automated manual transmission available
B: WWSHZG_vh, OFFSET 49 LEN 1 - SA washing water hose heater available
B: ART_VH, OFFSET 48 LEN 1 - SA ART available (Code 219)
B: RDK_vh, OFFSET 63 LEN 1 - SA tire pressure control available
B: Xen_vh, OFFSET 62 LEN 1 - Xenon light available
B: HR_vh, OFFSET 61 LEN 1 - SA rear roller blind available
B: ZZH_vh, OFFSET 60 LEN 1 - closing aid available
B: FKLA_vh, OFFSET 59 LEN 1 - SA rear KLA available
B: AHK_vh, OFFSET 58 LEN 1 - SA trailer coupling available
B: PTS_vh, OFFSET 57 LEN 1 - Parktronic system available
B: Spi_vh, OFFSET 56 LEN 1 - SA Automatic mirror dimming available
FRAME EZS_A8 (0x017E)
B: KFK_aus, OFFSET 7 LEN 1 - refrigerant level control inactive
B: SUS_aus, OFFSET 6 LEN 1 - Corrosive gas-dependent air recirculation switch with AKF inactive
B: SUS_ein, OFFSET 5 LEN 1 - Corrosive gas-dependent recirculation switching generally active
B: Tunnel_aus, OFFSET 4 LEN 1 - tunnel function inactive
B: GBA_man, OFFSET 3 LEN 1 - Fan bar display only in manual mode
B: RHT_ein, OFFSET 2 LEN 1 - REHEAT operation (t_Verd_Soll = 0 ° C fixed)
B: Umluft_ubg, OFFSET 1 LEN 1 - manual recirculation switching for an unlimited period
B: DSPL_neg, OFFSET 0 LEN 1 - display always negative
B: DSPL_pos, OFFSET 15 LEN 1 - display always positive
B: SAS_aus, OFFSET 14 LEN 1 - Key-dependent storage off
B: MDSL_aus, OFFSET 13 LEN 1 - Center nozzle fast run inactive
B: Circulating air lock, OFFSET 12 LEN 1 - 100% circulating air not possible
B: SGR_aus, OFFSET 11 LEN 1 - Immediate fan reaction off
B: AGE_aus, OFFSET 10 LEN 1 - Automatic basic setting inactive
B: HLK_auf, OFFSET 9 LEN 1 - Main air flap open in "OFF" mode
B: GBL_aus, OFFSET 8 LEN 1 - E-suction fan: basic ventilation off
E: P_KNL, OFFSET 20 LEN 4 - pressure characteristic
RAW: 0 - 20bar / 100% characteristic / P_KNL0
RAW: 1 - 20bar / 90% characteristic / P_KNL1
RAW: 2 - 20bar / 80% or 28bar / 100% characteristic curve / P_KNL2
RAW: 3 - 18bar / 100% characteristic / P_KNL3
RAW: 4 - 18bar / 90% characteristic / P_KNL4
RAW: 15 - SG not programmed / SNV
E: GBL_KNL, OFFSET 17 LEN 3 - basic ventilation characteristic
RAW: 0 - 25% basic ventilation / GBL_KNL0
RAW: 1 - 40% basic ventilation / GBL_KNL1
RAW: 2 - 30% basic ventilation / GBL_KNL2
RAW: 7 - SG not programmed / SNV
B: AHLF_aus, OFFSET 16 LEN 1 - Recirculation comfort function: Automatic deceleration off
B: FR_COOL, OFFSET 31 LEN 1 - Cooling as footwell flushing inactive
B: GRSBS_aus, OFFSET 29 LEN 1 - Fan reduction inactive on Linguatronic request
FRAME TELEAID_A1 (0x017F)
B: RDU, OFFSET 0 LEN 1 - Remote door unlock
FRAME TELEAID_A2 (0x023E)
B: LIVE_TELEAID, OFFSET 4 LEN 1 - Alive message TELEAID
B: MK_ATRSRT, OFFSET 0 LEN 1 - mobility account authorized
FRAME CONFIG (0x001E)
E: VER_AE, OFFSET 6 LEN 2 - year of change
RAW: 0 - change year "/ 1" / AE1
RAW: 1 - change year "/ X" / AEX
RAW: 2 - change year "/ 2" / AE2
RAW: 3 - Status when the / START series was launched
E: VER_JAHR, OFFSET 1 LEN 5 - year specification
RAW: 0 - year 0 (beginning of year 2000) / YEAR00
RAW: 1 - year 1 / YEAR01
RAW: 29 - Year 29 / YEAR29
RAW: 30 - undefined
RAW: 31 - Status at the market launch of the / START series
E: LAND, OFFSET 12 LEN 4 - Country-specific SA coding
RAW: 0 - rest of the world / RDW
RAW: 1 - USA version (CODE 494) / C494
RAW: 2 - Canada (CODE 460) / C460
RAW: 3 - Japan (CODE 498) / C498
RAW: 4 - Switzerland (CODE 823) / C823
RAW: 5 - Australia (CODE 625) / C625
RAW: 6 - Gulf States (CODE 623) / C623
RAW: 15 - SG not programmed / SNV
FRAME CP_ANZ (0x032A)
B: CP_M0, OFFSET 7 LEN 1 - Message 0: "MK status reduced"
B: CP_M1, OFFSET 6 LEN 1 - Message 1: "Reload MK, Tel. Temporary not available"
B: CP_M2, OFFSET 5 LEN 1 - Message 2: "Reload MK immediately"
B: CP_M3, OFFSET 4 LEN 1 - Message 3: "MK end of duty in a few days"
B: CP_M4, OFFSET 3 LEN 1 - Message 4: ""
B: CP_M5, OFFSET 2 LEN 1 - message 5: ""
FRAME GW_M_I1 (0x0098)
I: T_GET, OFFSET 0 LEN 8 - transmission oil temperature
I: AY_S, OFFSET 8 LEN 8 - vehicle lateral acceleration. in the center of gravity (+ = left)
I: FTK_BMI, OFFSET 16 LEN 8 - code number acceleration type (> 100: dynamic)
I: FTK_LMI, OFFSET 24 LEN 8 - code number lateral acceleration type (> 100: dynamic)
I: FTK_VMI, OFFSET 32 LEN 8 - code number brake type (> 100: dynamic)
I: GIER_ROH, OFFSET 40 LEN 16 - Raw signal yaw rate without adjustment / filtering (+ = left)
I: FMMOTMAX, OFFSET 56 LEN 8 - factor for depreciation. d. Max. Mom. When decreasing A. pressure
FRAME GW_M_I2 (0x0200)
B: BRE_AKT_ESP, OFFSET 0 LEN 1 - ESP brake intervention active
I: MBRE_ESP, OFFSET 4 LEN 12 - Set braking torque
B: LW_VZ, OFFSET 20 LEN 1 - steering angle sign (right [0], left [1])
B: LW_INI, OFFSET 19 LEN 1 - Steering angle sensor: not initialized
B: LW_CF, OFFSET 18 LEN 1 - Steering angle sensor: Code error
B: LW_OV, OFFSET 17 LEN 1 - Steering angle sensor: overflow
B: LW_PA, OFFSET 16 LEN 1 - Steering angle parity (even parity)
I: LW, OFFSET 21 LEN 11 - steering angle
E: PRESF_L_SVL, OFFSET 38 LEN 2 - Presafe adjustment seat front left
RAW: 0 - Presafe off / OFF
RAW: 1 - Approach presafe position / PRESAFE
RAW: 2 - go to starting position / BACK
RAW: 3 - not defined
E: PRESF_R_SVR, OFFSET 36 LEN 2 - Presafe adjustment seat front right
RAW: 0 - Presafe off / OFF
RAW: 1 - Approach presafe position / PRESAFE
RAW: 2 - go to starting position / BACK
RAW: 3 - not defined
B: PRESF_TGL, OFFSET 32 LEN 1 - Presafe toggle bit
E: PRESF_L_SHD, OFFSET 46 LEN 2 - Presafe adjustment, sliding / tilting roof
RAW: 0 - Presafe off / OFF
RAW: 1 - Approach presafe position / PRESAFE
RAW: 2 - go to starting position / BACK
RAW: 3 - not defined
E: PRESF_R_SHD, OFFSET 44 LEN 2 - Presafe adjustment sliding / tilting roof
RAW: 0 - Presafe off / OFF
RAW: 1 - Approach presafe position / PRESAFE
RAW: 2 - go to starting position / BACK
RAW: 3 - not defined
B: ZVB_EIN_MS, OFFSET 51 LEN 1 - switch on additional consumer
B: N_VRBT_SBCSH_AKT, OFFSET 50 LEN 1 - SBC-S / H active, ASG must not switch to "N"
B: NOTBRE, OFFSET 49 LEN 1 - emergency braking (brake light flashing)
B: ASV_KKL_169, OFFSET 48 LEN 1 - shut-off valve cooling circuit M266 ATL
FRAME TP_TELEAID_AGW6 (0x01C0)
I: TP_TELEAID_AGW, OFFSET 0 LEN 64 - Communication TELEAID to AGW
FRAME TP_TELEAID_EZS5 (0x00F9)
I: TP_TELEAID_EZS, OFFSET 0 LEN 64 - Communication TELEAID to EZS
FRAME TP_TELEAID_KOMBI4 (0x033E)
I: TP_TELEAID_KOMBI, OFFSET 0 LEN 64 - Communication TELEAID to KOMBI
FRAME NM_ZGW (0x041B)
I: NM, OFFSET 0 LEN 64 - network management
FRAME D_RQ_ACL (0x0560)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_AGW (0x0660)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_ARMADA (0x06BC)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_DBE (0x0740)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_FDSVL (0x06C0)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_FDSVR (0x06DE)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_KOMBI (0x0720)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST0 (0x0640)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST1 (0x0641)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST10 (0x064A)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST11 (0x064B)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST12 (0x064C)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST13 (0x064D)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST14 (0x064E)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST15 (0x064F)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST16 (0x0540)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST17 (0x0541)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST2 (0x0642)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST3 (0x0643)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST4 (0x0644)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST5 (0x0645)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST6 (0x0646)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST7 (0x0647)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST8 (0x0648)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_MOST9 (0x0649)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_OBF (0x05C0)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_PFDS (0x06DA)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_STH (0x06A1)
I: D_RQ, OFFSET 0 LEN 64 - KWP2000 diagnosis request
FRAME D_RQ_GLOBAL (0x001C)
I: D_RQ, OFFSET 0 LEN 64 - Global KWP2000 diagnosis request
KOMBI
FRAME KOMBI_A1 (0x000C)
I: KL_58d, OFFSET 0 LEN 8 - Brightness of instrument and search lighting
B: AFL_ein, OFFSET 15 LEN 1 - Switch on automatic headlights
B: TFL_ein, OFFSET 14 LEN 1 - switch on daytime running lights
B: T_C, OFFSET 13 LEN 1 - temperature unit "° C" [1], "° F" [0]
B: Auto_Tuer, OFFSET 12 LEN 1 - Automatic door locking on / off
B: SBS_ein, OFFSET 11 LEN 1 - switch on the voice control system
B: RR_km, OFFSET 10 LEN 1 - trip calculator km / miles
B: SLF, OFFSET 9 LEN 1 - memory search [1], station search [0]
B: Schlue_Abh_aus, OFFSET 8 LEN 1 - key dependency off [1], on [0]
E: language, OFFSET 20 LEN 4 - language
RAW: 0 - German / GERMAN
RAW: 1 - English / ENGLISH
RAW: 2 - French / FRENCH
RAW: 3 - Italian / ITALIAN
RAW: 4 - Spanish / SPANISH
RAW: 5 - Japanese / JAPANESE
RAW: 6 - English (J) / ENGLISH_J
B: UFB_ein, OFFSET 19 LEN 1 - Switch on surrounding lighting
B: RDK_akt, OFFSET 18 LEN 1 - activate RDK (W220 / C215)
B: FL_OK, OFFSET 17 LEN 1 - Switching on the high beam is permitted
B: IRS_Vdk_ein, OFFSET 16 LEN 1 - Interior protection with the convertible top open
I: InLi_Nlz, OFFSET 24 LEN 8 - afterglow time inside light
I: ABL_Nlz, OFFSET 32 LEN 8 - low beam afterglow time
I: V_Anz, OFFSET 40 LEN 8 - Displayed vehicle speed
B: FDS_F_CHAR, OFFSET 55 LEN 1 - FDS characteristic driver dominant [1], subtle [0]
B: ESH_LS_ein, OFFSET 54 LEN 1 - steering column adjustment with I / O help on [1], off [0]
B: ESH_Sitz_ein, OFFSET 53 LEN 1 - Seat adjustment with I / O help on [1], off [0]
B: FDS_B_CHAR, OFFSET 52 LEN 1 - FDS characteristic co-driver dominant [1], subtle [0]
B: Spi_Park_aus, OFFSET 51 LEN 1 - Parking position exterior mirror on [1], off [0]
B: VWZ_aus_MFL, OFFSET 50 LEN 1 - Preselection time deactivated via MFL, switch off LED
B: VWZ_akt, OFFSET 49 LEN 1 - Preselection time activated, switch on LED
B: STHL_ein_KOMBI, OFFSET 48 LEN 1 - switch on auxiliary heating / ventilation
I: SD_St1, OFFSET 56 LEN 8 - System diagnosis status (R230)
FRAME KOMBI_A2 (0x0262)
E: SNR_KI, OFFSET 4 LEN 4 - Sequence Number
RAW: 160 - Connection Setup (Blocksize in D0, Bit 0 - 3) / CON_SETUP
RAW: 161 - Connection Acknowledge (Blocksize in D0, Bit 0 - 3) / CON_ACK
RAW: 163 - Connection Test / CON_TEST
RAW: 175 - Unacknowledged Data in D0 - D6 / UNACK_DATA
B: EOM_KI, OFFSET 3 LEN 1 - End of message
B: ANR_KI, OFFSET 2 LEN 1 - Acknowledge not requested
B: ST_KI, OFFSET 1 LEN 1 - Service type
B: TPDU_KI, OFFSET 0 LEN 1 - Data [0], connection management [1]
I: D0_KI, OFFSET 8 LEN 8 - data byte 0
I: D1_KI, OFFSET 16 LEN 8 - data byte 1
I: D2_KI, OFFSET 24 LEN 8 - data byte 2
I: D3_KI, OFFSET 32 LEN 8 - data byte 3
I: D4_KI, OFFSET 40 LEN 8 - data byte 4
I: D5_KI, OFFSET 48 LEN 8 - data byte 5
I: D6_KI, OFFSET 56 LEN 8 - data byte 6
FRAME KOMBI_A3 (0x0238)
I: A_time, OFFSET 0 LEN 16 - Current time
I: KM, OFFSET 16 LEN 24 - mileage
I: RW, OFFSET 40 LEN 16 - range
FRAME KOMBI_A4 (0x0334)
B: BBV_KL, OFFSET 7 LEN 1 - Brake pad wear indicator lamp
B: ABS_KL, OFFSET 5 LEN 1 - ABS defective control lamp
B: ESP_KL, OFFSET 4 LEN 1 - ESP defective control lamp
B: BAS_KL, OFFSET 1 LEN 1 - BAS defective control lamp
B: TFSM, OFFSET 0 LEN 1 - minimum tank level
B: DIAG_KL, OFFSET 14 LEN 1 - Diagnostic control lamp (OBD II)
B: OEL_KL, OFFSET 13 LEN 1 - Oil level / oil pressure control lamp
B: UEHITZ, OFFSET 8 LEN 1 - engine oil temperature too high (overheating)
I: T_OEL, OFFSET 16 LEN 8 - oil temperature
I: OEL_FS, OFFSET 24 LEN 8 - oil level
FRAME KOMBI_A5 (0x0338)
B: RLZS_OK, OFFSET 2 LEN 1 - remaining running time / distance valid
B: RLZS_Prio, OFFSET 1 LEN 1 - Priority: remaining distance [0]; Remaining term [1]
B: RLS_km, OFFSET 0 LEN 1 - remaining distance in km [0]; in miles [1]
I: RLZ, OFFSET 8 LEN 16 - remaining time
I: RLS, OFFSET 24 LEN 24 - remaining distance
FRAME KOMBI_A6 (0x003C)
I: DSPL_Dimm, OFFSET 0 LEN 8 - display dimming
B: KOMBI_MW_OK, OFFSET 11 LEN 1 - Kombi has added value
B: HD_BEGRENZ, OFFSET 10 LEN 1 - trunk lid limitation on
B: SP_ANKL_SPERR, OFFSET 9 LEN 1 - Mirror folding in with vehicle locking blocked [1], allowed [0]
B: REST_EIN_KI, OFFSET 8 LEN 1 - switch on residual heat
FRAME KOMBI_A7 (0x00FF)
I: SCHLUE_ID_KI, OFFSET 0 LEN 32 - Key ID from the combination
I: KM_KI, OFFSET 32 LEN 24 - mileage
FRAME KOMBI_A8 (0x0230)
E: MFL_MENUE, OFFSET 0 LEN 8 - Affected MFL menu
RAW: 0 - Reserved
RAW: 1 - Reserved
RAW: 2 - Reserved
RAW: 3 - Audio / AUDIO
RAW: 4 - Navigation / NAVI
RAW: 5 - PHONE / TEL
RAW: 6 - New Services / NEW_SER
RAW: 7 - Voice radio / SPR_FNK
RAW: 8 - radio data transmission / DAT_FNK
RAW: 255 - signal not available / SNV
B: BUTTON_1_1, OFFSET 15 LEN 1 - Next display
B: BUTTON_1_2, OFFSET 14 LEN 1 - Previous display
B: BUTTON_2_1, OFFSET 13 LEN 1 - reserve
B: BUTTON_2_2, OFFSET 12 LEN 1 - reserve
B: BUTTON_3_1, OFFSET 11 LEN 1 - "+" button
B: BUTTON_3_2, OFFSET 10 LEN 1 - button "-"
B: BUTTON_4_1, OFFSET 9 LEN 1 - Telephone send
B: BUTTON_4_2, OFFSET 8 LEN 1 - Telephone End
B: BUTTON_5_1, OFFSET 23 LEN 1 - reserve
B: BUTTON_5_2, OFFSET 22 LEN 1 - reserve
B: BUTTON_6_1, OFFSET 21 LEN 1 - reserve
B: BUTTON_6_2, OFFSET 20 LEN 1 - reserve
B: BUTTON_7_1, OFFSET 19 LEN 1 - reserve
B: BUTTON_7_2, OFFSET 18 LEN 1 - reserve
B: BUTTON_8_1, OFFSET 17 LEN 1 - reserve
B: BUTTON_8_2, OFFSET 16 LEN 1 - reserve
B: PTT_1_1, OFFSET 31 LEN 1 - Activate Linguatronic
B: PTT_1_2, OFFSET 30 LEN 1 - Deactivate Linguatronic
B: PTT_2_1, OFFSET 29 LEN 1 - reserve
B: PTT_2_2, OFFSET 28 LEN 1 - reserve
B: PTT_3_1, OFFSET 27 LEN 1 - reserve
B: PTT_3_2, OFFSET 26 LEN 1 - reserve
B: PTT_4_1, OFFSET 25 LEN 1 - reserve
B: PTT_4_2, OFFSET 24 LEN 1 - reserve
FRAME KOMBI_A9 (0x020B)
E: PRIO_KI, OFFSET 5 LEN 3 - priorities on the combi
RAW: 1 - priority 1 / PRIO1
RAW: 2 - priority 2 / PRIO2
RAW: 3 - priority 3 / PRIO3
FRAME TP_KOMBI_AGW1 (0x027F)
I: TP_KOMBI_AGW, OFFSET 0 LEN 64 - communication KOMBI to AGW
FRAME TP_KOMBI_TELEAID4 (0x03BF)
I: TP_KOMBI_TELEAID, OFFSET 0 LEN 64 - communication KOMBI to TELEAID
FRAME NM_KOMBI (0x0414)
I: NM, OFFSET 0 LEN 64 - network management
FRAME D_RS_KOMBI (0x07A4)
I: D_RS, OFFSET 0 LEN 64 - KWP2000 diagnostic response
FRAME SD_RS_KOMBI (0x0774)
I: SD_RS, OFFSET 0 LEN 64 - System diagnosis response
FRAME SG_APPL_KOMBI (0x07D9)
I: SG_APPL, OFFSET 0 LEN 64 - control device to external application
MRM
FRAME MRM_A1 (0x0101)
B: FL_ein, OFFSET 2 LEN 1 - switch on high beam
B: LHP_ein, OFFSET 1 LEN 1 - switch on headlight flasher
B: SGH_ein_MRM, OFFSET 0 LEN 1 - switch on the horn
B: washing, OFFSET 14 LEN 1 - switch washing on
B: Sch_Wi_Int, OFFSET 13 LEN 1 - Switch on windshield wiper interval
B: Sch_Wi_1, OFFSET 12 LEN 1 - Switch on windshield wiper stage 1
B: Sch_Wi_2, OFFSET 11 LEN 1 - Switch on windshield wiper stage 2
FRAME MRM_A2 (0x0005)
B: Bli_li_ein, OFFSET 7 LEN 1 - Switch on the left turn signal
B: Bli_re_ein, OFFSET 6 LEN 1 - Switch on the right turn signal
I: Bli_Hell, OFFSET 8 LEN 8 - Duration of the blinker light phase
FRAME MRM_A3 (0x0330)
B: Display_up, OFFSET 7 LEN 1 - "Display up" key pressed
B: Display_dn, OFFSET 6 LEN 1 - "Display down" button pressed (W220 to ÄJ 00/1: Voice_Ctrl)
B: Scroll_up, OFFSET 5 LEN 1 - "Scroll up" button pressed
B: Scroll_dn, OFFSET 4 LEN 1 - "Scroll down" button pressed
B: Volume_up, OFFSET 3 LEN 1 - "Volume +" key pressed
B: Volume_dn, OFFSET 2 LEN 1 - "Volume -" key pressed
B: Phone_end, OFFSET 1 LEN 1 - "Phone end" key pressed
B: Phone_send, OFFSET 0 LEN 1 - "Phone send" key pressed
B: Stop, OFFSET 15 LEN 1 - "Cancel" lever pressed
B: Voice_Ctrl, OFFSET 14 LEN 1 - "Push to talk" lever pressed (W220 only from ÄJ 00/1)
FRAME MRM_A4 (0x0204)
B: LS_auf, OFFSET 7 LEN 1 - steering column - up
B: LS_ab, OFFSET 6 LEN 1 - steering column - down
B: LS_vor, OFFSET 5 LEN 1 - steering column - forward
B: LS_back, OFFSET 4 LEN 1 - steering column - to the rear
B: ESH_ein, OFFSET 3 LEN 1 - switch on entry aid (W220 / C215)
B: LSVH_ob, OFFSET 2 LEN 1 - steering column adjustment lever turned up
B: LSVH_un, OFFSET 1 LEN 1 - steering column adjustment lever turned down
FRAME NM_MRM (0x0415)
I: NM, OFFSET 0 LEN 64 - network management
FRAME D_RS_MRM (0x04F5)
I: D_RS, OFFSET 0 LEN 64 - KWFB diagnostic response
FRAME SD_RS_MRM (0x0775)
I: SD_RS, OFFSET 0 LEN 64 - System diagnosis response
FRAME SG_APPL_MRM (0x07DB)
I: SG_APPL, OFFSET 0 LEN 64 - control device to external application
LRK
FRAME LRK_A1 (0x0038)
B: LRK_Stoerg, OFFSET 2 LEN 1 - LRK LEDs flash because of. Disorder
B: Lh_LED_ein, OFFSET 1 LEN 1 - Switch on the LED steering wheel heating
B: LBlft_LED_ein, OFFSET 0 LEN 1 - Switch on the LED steering wheel ventilation
FRAME NM_LRK (0x040F)
I: NM, OFFSET 0 LEN 64 - network management
FRAME D_RS_LRK (0x04EF)
I: D_RS, OFFSET 0 LEN 64 - KWFB diagnostic response
FRAME SD_RS_LRK (0x076F)
I: SD_RS, OFFSET 0 LEN 64 - System diagnosis response
FRAME SG_APPL_LRK (0x07CF)
I: SG_APPL, OFFSET 0 LEN 64 - control device to external application
SAM_F
FRAME SAM_F_A1 (0x000A)
I: T_Outside, OFFSET 0 LEN 8 - outside air temperature
I: T_Kaelte, OFFSET 8 LEN 16 - temperature refrigerant R134a
I: p_Kaelte, OFFSET 24 LEN 16 - pressure refrigerant R134a
B: LS_zh, OFFSET 47 LEN 1 - steering column too high
B: EDW_akt, OFFSET 46 LEN 1 - EDW sharpened
B: IRS_akt, OFFSET 45 LEN 1 - activate interior protection
B: Komp_def, OFFSET 44 LEN 1 - Refrigeration compressor control, current output defective
B: KOMP_EIN, OFFSET 43 LEN 1 - Air conditioning compressor switched on
B: HAS_KL, OFFSET 42 LEN 1 - handbrake applied (control lamp)
B: BBV_VL, OFFSET 41 LEN 1 - Brake pad wear, front left
B: BFL_KL, OFFSET 40 LEN 1 - Brake fluid level control lamp
B: MABL_zu, OFFSET 51 LEN 1 - Message: "Close center shelf! IRS cannot be activated"
B: AS_akt, OFFSET 50 LEN 1 - Activate towing protection
B: Pnk_Alm_akt, OFFSET 49 LEN 1 - Panic alarm is active
B: HD_akt, OFFSET 48 LEN 1 - Activate trunk lid monitoring
I: I_Komp, OFFSET 56 LEN 8 - Current compressor main control valve
FRAME SAM_F_A2 (0x0028)
B: PL_li_ein, OFFSET 7 LEN 1 - switch on left parking light
B: PL_re_ein, OFFSET 6 LEN 1 - switch on right parking light
B: STL_ein, OFFSET 5 LEN 1 - switch on parking lights
B: ABL_ein, OFFSET 4 LEN 1 - switch on low beam
B: NSW_ein, OFFSET 3 LEN 1 - switch on fog lights
B: NSL_ein, OFFSET 2 LEN 1 - switch on rear fog light
B: FL_ein_SAM_F, OFFSET 1 LEN 1 - switch on high beam
B: SRA_ein, OFFSET 0 LEN 1 - switch on headlight cleaning system
B: Bli_def_VL, OFFSET 15 LEN 1 - Front left turn signal defective
B: PL_def_VL, OFFSET 14 LEN 1 - Front left parking light defective
B: ABL_def_R, OFFSET 13 LEN 1 - RIGHT low beam defective (with cross cabling)
B: FL_def_L, OFFSET 12 LEN 1 - left high beam defective
B: NSW_def_L, OFFSET 11 LEN 1 - Left fog light defective
B: SM_def_VL, OFFSET 10 LEN 1 - Sidemarker front left defective
B: AFL_St_akt, OFFSET 8 LEN 1 - Automatic headlight switching is active
B: Bli_Ers_VL, OFFSET 23 LEN 1 - Front left blinker, replacement light active
B: PL_Ers_VL, OFFSET 22 LEN 1 - Parking light, front left, replacement light active
B: SWA_akt, OFFSET 16 LEN 1 - headlight activation active
FRAME SAM_F_A3 (0x0348)
B: Interval, OFFSET 7 LEN 1 - Steering column switch to "Interval position"
B: KL_31b_ein, OFFSET 6 LEN 1 - wiper outside of parking position
B: KL_86_ein, OFFSET 5 LEN 1 - washing activated
E: Config, OFFSET 2 LEN 3 - configuration bit
RAW: 0 - insensitive levels / UEMPF0
RAW: 1 - insensitive levels / UEMPF1
RAW: 2 - insensitive levels / UEMPF2
RAW: 3 - preset Rec. / VOR_EMPF
RAW: 4 - more sensitive levels / EMPF0
RAW: 5 - more sensitive levels / EMPF1
RAW: 6 - more sensitive levels / EMPF2
RAW: 7 - Reinitialization / NEW_INI
B: Parity_SAM_F, OFFSET 0 LEN 1 - Parity from bit 0 to bit 6 (even)
FRAME SAM_F_A4 (0x0110)
B: Bli_li_ein_EDW, OFFSET 7 LEN 1 - switch on the left turn signal
B: Bli_re_ein_EDW, OFFSET 6 LEN 1 - switch on the right turn signal
B: SL_ein_EDW, OFFSET 5 LEN 1 - switch on tail light
B: ABL_ein_EDW, OFFSET 4 LEN 1 - switch on low beam
B: NSW_ein_EDW, OFFSET 3 LEN 1 - switch on fog lights
B: ABL_DL_EDW, OFFSET 2 LEN 1 - switch on low beam permanently
B: IL_DL_EDW, OFFSET 1 LEN 1 - switch on the interior light permanently
B: EDW_Alm, OFFSET 0 LEN 1 - EDW alarm triggered
I: Hell_EDW, OFFSET 8 LEN 8 - Duration light-bright phase
FRAME NM_SAM_F (0x0402)
I: NM, OFFSET 0 LEN 64 - network management
FRAME D_RS_SAM_F (0x04E2)
I: D_RS, OFFSET 0 LEN 64 - KWFB diagnostic response
FRAME SD_RS_SAM_F (0x0762)
I: SD_RS, OFFSET 0 LEN 64 - System diagnosis response
FRAME SG_APPL_SAM_F (0x07B5)
I: SG_APPL, OFFSET 0 LEN 64 - control device to external application
SAM_B
FRAME SAM_B_A1 (0x000E)
B: Bli_def_VR, OFFSET 7 LEN 1 - Front right turn signal defective
B: PL_def_VR, OFFSET 6 LEN 1 - Front right parking light defective
B: ABL_def_L, OFFSET 5 LEN 1 - LEFT low beam defective (with cross cabling)
B: FL_def_R, OFFSET 4 LEN 1 - right high beam defective
B: NSW_def_R, OFFSET 3 LEN 1 - Right fog light defective
B: SM_def_VR, OFFSET 2 LEN 1 - Sidemarker front right defective
B: Mot_auf, OFFSET 0 LEN 1 - bonnet open
B: SGH_St_ein, OFFSET 15 LEN 1 - Signal horn is switched on
B: KWS_KL, OFFSET 14 LEN 1 - cooling water level too low control lamp
B: WWS_KL, OFFSET 13 LEN 1 - wash water level too low control lamp
B: WWP_def, OFFSET 12 LEN 1 - washing water pump defective
B: ZWP_lft, OFFSET 11 LEN 1 - auxiliary water pump is running
B: ZWP_def, OFFSET 10 LEN 1 - additional water pump defective