Unfortunately we do not accept new members for free, Now Registration cost 30€, if you are interesting Send Email to [email protected]

Disable CC messages relating to a CC-ID codes
19-01-2023, 18:45 PM,
Post: #11
RE: Disable CC messages relating to a CC-ID codes
You can check the CC ID codes that are currently present using the cluster hidden menu then code them out.
Quote this message in a reply
[+] 1 user says Thank You to TheNine90 for this post
20-01-2023, 11:08 AM, (This post was last modified: 20-01-2023, 11:09 AM by elthox.)
Post: #12
RE: Disable CC messages relating to a CC-ID codes
(19-01-2023, 18:45 PM)TheNine90 Wrote:  You can check the CC ID codes that are currently present using the cluster hidden menu then code them out.

in E series yes. In F series I didnt check as a matter of fact. Can be visible in F series too, even in 6WB?
Quote this message in a reply
[+] 1 user says Thank You to elthox for this post
30-01-2023, 21:54 PM,
Post: #13
RE: Disable CC messages relating to a CC-ID codes
(12-01-2023, 14:31 PM)Node Wrote:  IMHO general idea is that there is 1 bit for each CC-ID and all of them are sequential.

AFAIK SOS failure is CC-ID 299.

Each group has 8 bytes so 64 (= 8 * 8) bits total.

299 / 64 = 4.xxx so it's 5th group (as groups are counted from 1: 4 + 1 = 5).

299 - 64 * 4 = 43 so it's 43rd bit in 5th group.

43 / 8 = 5.xxx so it's 5th byte (as bytes are counted from 0: 5 + 0 = 5).

43 - 5 * 8 = 3 so it's 3rd bit (as bits are also counted from 0)

3rd bit has value of 8 (= 2 ^ 3) so FF - 8 = F7. Well, to be more precise - works when bit WAS SET ONLY. Normally you would do NOT-AND operation which works always. So initial value FF & (~8). ~8 = F7. FF & F7 = F7.

ELEMENTARY!!!

Example for CC-ID 128 (failure left high beam) would mean:

128 / 64 = 2 -> 2+1 = 3 = cc_aktivierung_3
128 - 64 * 2 = 0
0 / 8 = 0th byte
0 / -0 * 8 = 0th bit
FF - 2^0 = assuming default is FF -> - 1 = EF?
FF, FF, FF, FF, FF, FF, FF, FF transform to -> EF, FF, FF, FF, FF, FF, FF, FF ?
Quote this message in a reply
31-01-2023, 06:49 AM,
Post: #14
RE: Disable CC messages relating to a CC-ID codes
FF - 1 = FE, not EF (just like 22 - 1 = 21, not 12)
Reputation: +1 - Node [+1]
Quote this message in a reply
22-02-2023, 15:04 PM,
Post: #15
RE: Disable CC messages relating to a CC-ID codes
Hello, anyone can help me for CC-ID 428 sideview failure.
I can find byte to Change.

Thanks.
Quote this message in a reply
25-02-2023, 11:07 AM,
Post: #16
XZBMW  RE: Disable CC messages relating to a CC-ID codes
I have errors with the right front lamp.

But the lamp shines without problems.
Please confirm if I interpret errors correctly and calculate ccid?

805B2E High-beam headlighht
CC-ID 130 – Right High Beam Failure

cc_aktivierung_3 -> 0 bytes -> -1  FF, FF, FF, FF, FF, FF, FF, FF -> FE, FF, FF, FF, FF, FF, FF, FF

8041B6 LWR system faulty
CC-ID 256 – Headlight Leveling System Failure

cc_aktivierung_5 -> 0 bytes -> -1  FF, FF, FF, FF, FF, FF, FF, FF -> FE, FF, FF, FF, FF, FF, FF, FF

8041BA AHL system faulty
CC-ID 295 – Adaptive Cornering Lights Failure

cc_aktivierung_5 -> 4 bytes -> -128  FF, FF, FF, FF, FF, FF, FF, FF -> FF, FF, FF, FF, 7F, FF, FF, FF

Expert users please confirm
Quote this message in a reply
28-02-2023, 08:08 AM,
Post: #17
XZBMW  RE: Disable CC messages relating to a CC-ID codes
(25-02-2023, 11:07 AM)krzysiek80r Wrote:  I have errors with the right front lamp.

But the lamp shines without problems.
Please confirm if I interpret errors correctly and calculate ccid?

805B2E High-beam headlighht
CC-ID 130 – Right High Beam Failure

cc_aktivierung_3 -> 0 bytes -> -1  FF, FF, FF, FF, FF, FF, FF, FF -> FE, FF, FF, FF, FF, FF, FF, FF

8041B6 LWR system faulty
CC-ID 256 – Headlight Leveling System Failure

cc_aktivierung_5 -> 0 bytes -> -1  FF, FF, FF, FF, FF, FF, FF, FF -> FE, FF, FF, FF, FF, FF, FF, FF

8041BA AHL system faulty
CC-ID 295 – Adaptive Cornering Lights Failure

cc_aktivierung_5 -> 4 bytes -> -128  FF, FF, FF, FF, FF, FF, FF, FF -> FF, FF, FF, FF, 7F, FF, FF, FF

Expert users please confirm

The above encoding settings don't work, there is still an error
Quote this message in a reply
28-02-2023, 08:24 AM,
Post: #18
RE: Disable CC messages relating to a CC-ID codes
130 / 64 = 2 so group 3 ok
130 - 64 * 2 = 2
2 / 8 = 0 so byte 0 ok
but BIT IS 2!!! so why you change bit 0???

Other two seem to be correct so WHICH error is still there???
Reputation: +1 - krzysiek80r [+1]
Quote this message in a reply
[+] 1 user says Thank You to Node for this post
28-02-2023, 09:06 AM,
Post: #19
RE: Disable CC messages relating to a CC-ID codes
(28-02-2023, 08:08 AM)krzysiek80r Wrote:  
(25-02-2023, 11:07 AM)krzysiek80r Wrote:  I have errors with the right front lamp.

But the lamp shines without problems.
Please confirm if I interpret errors correctly and calculate ccid?

805B2E High-beam headlighht
CC-ID 130 – Right High Beam Failure

cc_aktivierung_3 -> 0 bytes -> -1  FF, FF, FF, FF, FF, FF, FF, FF -> FE, FF, FF, FF, FF, FF, FF, FF

8041B6 LWR system faulty
CC-ID 256 – Headlight Leveling System Failure

cc_aktivierung_5 -> 0 bytes -> -1  FF, FF, FF, FF, FF, FF, FF, FF -> FE, FF, FF, FF, FF, FF, FF, FF

8041BA AHL system faulty
CC-ID 295 – Adaptive Cornering Lights Failure

cc_aktivierung_5 -> 4 bytes -> -128  FF, FF, FF, FF, FF, FF, FF, FF -> FF, FF, FF, FF, 7F, FF, FF, FF

Expert users please confirm

The above encoding settings don't work, there is still an error
256,295 is true. CC-ID 130: FB, FF, FF, FF, FF, FF, FF, FF

- Secure coding (NCD 2.0) fit to FA changed (Typschlussel, Serie, Region...).
- Remove component protection MGU18/21 (only case BDC replace).
- ID8.5 (SFA) conversion/ change region map.
- Virgin Kafas4, MRR, RAM used.
- Mgu patch, fsc custom match to vin, remove CP.
- Reset ISN 7DTC, 8HP for F, G serie (include EGS7).
- Write ISN MG1/MD1 with remotely.
- Carplay/Android Auto MGU with/without ATM (6AE).
Skype live:laquangksxd
Reputation: +1 - krzysiek80r [+1]
Quote this message in a reply
[+] 1 user says Thank You to laquangksxd for this post
28-02-2023, 09:33 AM,
Post: #20
RE: Disable CC messages relating to a CC-ID codes
An error has occurred right high beam failure.
This is not a permanent error, it occurs from time to time, sometimes immediately after using the high beam, sometimes after a few days.

Thanks for the clarification, now I know what's going on.
Time for tests.
Quote this message in a reply


Possibly Related Threads…
Thread Author Replies Views Last Post
XZBMW Brake Pads Warning Disable -Racing purpose marcdts 4 249 28-04-2024, 18:48 PM
Last Post: CeyLive
  Disable active steering e91 xMoses 1 106 28-04-2024, 01:35 AM
Last Post: Marx
XZBMW Requesting fsc DEBLOCKING codes 0x1AA for Headunit BMWF01 1 137 21-04-2024, 10:05 AM
Last Post: BugFix
  Flash CAS 3 for disable ELV UnFan 3 224 19-04-2024, 08:20 AM
Last Post: ravager
XZBMW Requesting FSC enabling codes for BMW F40 BMWF01 3 190 10-04-2024, 10:10 AM
Last Post: RuleNormaliai
  E60 disable active steering BimmerSLO 4 434 05-03-2024, 19:32 PM
Last Post: BimmerSLO
  NEED FA CODES FROM VIN E92 tigre 1 115 28-02-2024, 17:41 PM
Last Post: nBlacky
  G01 disable Seat Belt Tightening after drive away BusyBox 5 461 13-02-2024, 13:03 PM
Last Post: BusyBox
  Solved ✔ F56, disable Keyless Entry by coding Edward1968 5 708 07-02-2024, 19:48 PM
Last Post: Edward1968
  Solved ✔ Cas3 black disable elv sokisoki3 6 603 25-01-2024, 11:35 AM
Last Post: sokisoki3

Forum Jump:


Users browsing this thread:
1 Guest(s)

Return to TopReturn to Content