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

Solved ✔ Citroen C4 2009 - Need to know the mileage
16-01-2023, 10:59 AM,
Post: #1
PCitroen  Citroen C4 2009 - Need to know the mileage
Hi, Folks!

I need to know the mileage of a Citroen BSI (from Johnson Controls) code 96.640.591.80-02 / 04EV K05-00, with eeprom 95128, where I found the VIN and PIN, but I do not know the mileage and their addresses:
- VIN -> Addr 0x0F3h till 0x103h;
- PIN -> Addr 0xA76h till 0xA79h.

Which addresses are the mileage written and how I can calculate it?
I did not find the addresses of this mileage when I read the eeprom.

Attached is the BSI eeprom file.

Many thanks for your help.

Carlos Frederico Costa


Attached Files
BSI_966405918002_04EV_K0500_HW_281192496D_SUM_AFE7H_ORI.rar
File Type: .rar
Downloaded: 4 times
Size: 5.64 KB

16-01-2023, 12:40 PM, (This post was last modified: 16-01-2023, 12:46 PM by ads05.)
Post: #2
RE: Citroen C4 2009 - Need to know the mileage
mileage is 171499, this is crypto.. how much you need km?

If i helpful to you, please push Reputation yes and Thanks  buttons.  nod
Reputation: +1 - cfocosta [+1]
[+] 1 user says Thank You to ads05 for this post
16-01-2023, 13:25 PM,
Post: #3
PCitroen  RE: Citroen C4 2009 - Need to know the mileage
(16-01-2023, 12:40 PM)ads05 Wrote:  mileage is 171499, this is crypto.. how much you need km?

Many Thanks for your answer.

As the original BSI was damaged, the owner bought this BSI, and he said that the mileage is about 100000 km.
Please if you can change to this new value I appreciate very much.

Do you know how I can calculate this value and which eeprom addresses are pointed to it?

Many Thanks.

Carlos Frederico Costa
16-01-2023, 13:34 PM, (This post was last modified: 16-01-2023, 15:41 PM by Clusters.)
Post: #4
RE: Citroen C4 2009 - Need to know the mileage
Mileage X 10 to hex, inverted, CRC Kermit repeated 8 times from 0336-0365.

If someone took the time to help you, the least you can do is take a few seconds and press two buttons! 

Thanks [Image: tyl_add.png] + [Image: postbit_reputation.gif] reputation.
Reputation: +2 - ads05 [+1] , cfocosta [+1]
[+] 1 user says Thank You to Clusters for this post
16-01-2023, 13:44 PM,
Post: #5
RE: Citroen C4 2009 - Need to know the mileage
here your file with 100000 try it and report


Attached Files
100000.rar
File Type: .rar
Downloaded: 4 times
Size: 5.49 KB


If i helpful to you, please push Reputation yes and Thanks  buttons.  nod
Reputation: +1 - cfocosta [+1]
[+] 1 user says Thank You to ads05 for this post
16-01-2023, 15:35 PM, (This post was last modified: 16-01-2023, 15:35 PM by cfocosta.)
Post: #6
PCitroen  RE: Citroen C4 2009 - Need to know the mileage
(16-01-2023, 13:44 PM)ads05 Wrote:  here your file with 100000 try it and report

Hi, "ads05" and also "Clusters"!


Thank you for your help. Each day I learn something new.

I tried to calculate again what "Clusters" said and "ads05" did in the original eeprom file, calculating for 100.000 km mileage.
Let me show step by step.

For km = 100.000, we have:
- KM x 10 = 1000000, converting to hex =>  00 0F 42 40;
- Inverting the values => 40 42 0F 00
- Calculating the CRC, using the WEB site crccalc.com and looking at CRC-16/Kermit => 0x26B1h

In the file sent by "ads05" it showed 0x61D2h instead 0x26B1h calculated by CRC web site.
I would like to know what it is the corrected CRC value.

ADDRES: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
0x0330: 00 40 00 00 5B DF 40 42 0F 00 61 D2 40 42 0F 00
0x0340: 61 D2 40 42 0F 00 61 D2 40 42 0F 00 61 D2 40 42
0x0350: 0F 00 61 D2 40 42 0F 00 61 D2 40 42 0F 00 61 D2
0x0360: 40 42 0F 00 61 D2 00 00

The complete addresses for the mileage are from 0x0336h till 0x365h.

Many Thanks.

Carlos Frederico Costa
16-01-2023, 15:39 PM,
Post: #7
RE: Citroen C4 2009 - Need to know the mileage
To calculate Kermit, swap bytes, then Xor with ff ff 00 00

40 42 0f 00 swap 42 40 00 0f Xor bd bf 00 0f

Kermit result = d2 61 byte swap = 61 d2

If someone took the time to help you, the least you can do is take a few seconds and press two buttons! 

Thanks [Image: tyl_add.png] + [Image: postbit_reputation.gif] reputation.
Reputation: +2 - cfocosta [+1] , al70 [+1]
[+] 1 user says Thank You to Clusters for this post
16-01-2023, 15:51 PM,
Post: #8
PCitroen  RE: Citroen C4 2009 - Need to know the mileage
(16-01-2023, 15:39 PM)Clusters Wrote:  To calculate Kermit, swap bytes, then Xor with ff ff 00 00

40 42 0f 00 swap 42 40 00 0f Xor bd bf 00 0f

Kermit result = d2 61 byte swap = 61 d2

Many Thanks "Clusters". It works.

Now I can understand how mileage can be calculated.

Best regards,

Carlos Frederico Costa
Reputation: +1 - al70 [+1]
31-01-2023, 19:12 PM,
Post: #9
PCitroen  RE: Citroen C4 2009 - Need to know the mileage
(16-01-2023, 15:51 PM)cfocosta Wrote:  
(16-01-2023, 15:39 PM)Clusters Wrote:  To calculate Kermit, swap bytes, then Xor with ff ff 00 00

40 42 0f 00 swap 42 40 00 0f Xor bd bf 00 0f

Kermit result = d2 61 byte swap = 61 d2

Many Thanks "Clusters". It works.

Now I can understand how mileage can be calculated.

Best regards,

Carlos Frederico Costa
Solved...


Possibly Related Threads…
Thread Author Replies Views Last Post
  aprilia sr50 2018 mileage TKservice 0 20 8 hours ago
Last Post: TKservice
  Beverly 350,93c66 mileage correction, problem marko.p 5 37 Yesterday, 14:10 PM
Last Post: marko.p
  GOLF V 2005 Visteon need mileage correction Mshumacher 6 86 05-05-2024, 18:59 PM
Last Post: sivyx
UNissan Nissan Murano 2012 mileage correction Mariushas 3 43 03-05-2024, 08:33 AM
Last Post: Mariushas
  VW Crafter 7C0920731A mileage corection C(A)R 6 133 02-05-2024, 15:55 PM
Last Post: iProg-carradio
0Scope 2008-2009 Mercedes W204 C230 kila68 3 58 01-05-2024, 13:13 PM
Last Post: kila68
0Dash Yamaha FJR mileage modification bm92 14 174 30-04-2024, 09:01 AM
Last Post: bm92
  2021 VW ID 4 PRO Cluster 10A920320C mileage correction possible ? NickMayer 5 122 28-04-2024, 21:12 PM
Last Post: NickMayer
YTMercedes vito cluster mileage spoool 3 144 24-04-2024, 23:46 PM
Last Post: spoool
PCitroen Citroen C4 dash P9664319880 need pinout pinotec 5 107 24-04-2024, 13:51 PM
Last Post: al70

Forum Jump:


Users browsing this thread:
1 Guest(s)

Return to TopReturn to Content