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
  Renault Traffic 2019 EDC17C84 mileage motor25 0 12 6 hours ago
Last Post: motor25
ZSeat dq250 gearbox mileage Lukasz911 3 56 Yesterday, 14:20 PM
Last Post: dabaca
PCitroen Peugeot Citroën BSI flash dump collection volavka 89 85,315 Yesterday, 13:29 PM
Last Post: Purdy
  Peugeot Boxer 2.0 sid208 mileage help sattvv 0 10 31-05-2024, 13:46 PM
Last Post: sattvv
HVolvo Volvo V60 mileage voyager 0 70 29-05-2024, 09:46 AM
Last Post: voyager
ZTAudi 2008 Audi A4 B8 mileage al70 12 241 27-05-2024, 18:28 PM
Last Post: al70
  SOLVED moto guzzi v9 mileage correction Biszi 0 35 27-05-2024, 16:16 PM
Last Post: Biszi
  mileage Renault kerax 380 dxi riad3131 2 55 26-05-2024, 21:46 PM
Last Post: riad3131
ORenult RENAULT EDC17C42 MILEAGE HELP ads05 1 70 26-05-2024, 18:19 PM
Last Post: ads05
LFord Ford fiesta 2009 mileage mefistofilos 1 46 24-05-2024, 03:34 AM
Last Post: kuki88

Forum Jump:


Users browsing this thread:
1 Guest(s)

Return to TopReturn to Content