View Single Post
      03-07-2024, 03:09 PM   #89
mrpingu
Captain
Norway
194
Rep
652
Posts

Drives: 2018 F48 X1 xDrive 18D
Join Date: Nov 2022
Location: Norway

iTrader: (0)

Garage List
Well there are 9 groups and every group consists of 8 bytes. 8 bytes can hold 64 zeroes and ones.
1 being show the error on the cluster, 0 suppres the error.

Group 9 thus holds value 513 till 576.
(Group 1: 1- 64, group 2: 65-128, group 3: 129-192, group 4: 193 - 256, group 5 257 - 320, group 6: 321-384, group 7: 385 - 448, group 8: 449 - 512, group 9: 513 - 576, group 10: 577 - 640)


The ohne_533 turns off the 533 error. The calculation can be used to verify this.

If you would choose the “aus” you would disable all CC-ID errors from 513 to 576, potentially supressing more errors than you would like to.

Example FF in binary representation is
1 1 1 1 1 1 1 1 1

DF is
1 1 0 1 1 1 1 1

And you can guess
00
That is
0 0 0 0 0 0 0 0 0


If you would like to turn off error 513

The start of the series would need to look like

0 1 1 1 1 1 1 1 . …

If you want to turn off 514, it should look like
1 0 1 1 1 1 1 1 …


If you want to turn off both it would look like
0 0 1 1 1 1 1 1 …

Using this site you can convert hex to binary and vice versa:
https://www.rapidtables.com/convert/...ry-to-hex.html

Meaning if you would like to disable 513 and 514 you need to fill in

[3F, FF, FF, FF, FF, FF, FF, FF]

Last edited by mrpingu; 03-07-2024 at 05:57 PM..
Appreciate 0