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 SR MAX 300 mileage correction haker112000 4 315 11 hours ago
Last Post: Clusters
ZSkoda Mileage change DQ200 TC1766 VL381 DQ250 DL382 DQ200 TC1784 pitercie 2 263 Yesterday, 19:23 PM
Last Post: pitercie
  need to adjust mileage in rt1200 lc db8000 2 46 Yesterday, 15:30 PM
Last Post: db8000
  Mileage correction on Hilux 2009 MARTINS AUTOMECH 2 29 Yesterday, 07:53 AM
Last Post: danocar
ORenult Solved ✔ Renault Traffic IV EDC17C84 mileage correction Mariushas 4 94 26-03-2024, 17:59 PM
Last Post: Mariushas
KOpel astra k 2018 bcm mileage correction xro78 2 41 26-03-2024, 11:27 AM
Last Post: viytik
  alfa 147 mileage rapidtuning 5 121 22-03-2024, 16:19 PM
Last Post: raffy haddad
YTMercedes w204 mileage dash correction wosanyn31 1 74 21-03-2024, 20:06 PM
Last Post: nikolanik
  Solved ✔ Iveco 2015 mileage dash+bcm Lifestyle 1 82 21-03-2024, 15:14 PM
Last Post: Lifestyle
  VITO 2020 JC Mileage stoperf 0 68 21-03-2024, 11:52 AM
Last Post: stoperf

Forum Jump:


Users browsing this thread:
1 Guest(s)

Return to TopReturn to Content