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
YTMercedes W906 2018 Sprinter mileage EIS MihaiC 6 84 Yesterday, 12:11 PM
Last Post: MihaiC
PPeugeot peugeot partner jci bsi 95128 mileage ILDIRA 1 19 Yesterday, 11:55 AM
Last Post: dabaca
  Solved ✔ Beverly 350 mileage correction marko.p 3 30 22-04-2024, 20:20 PM
Last Post: al70
  Solved ✔ Citroen C4 JC BSI km change VeLikej_ToMik11 4 52 22-04-2024, 18:34 PM
Last Post: VeLikej_ToMik11
  Iveco mileage Misiek 4 460 22-04-2024, 12:41 PM
Last Post: sepica
PCitroen Citroen C4 dash P9664319880 need pinout pinotec 1 29 22-04-2024, 08:31 AM
Last Post: al70
YTMercedes vito mileage calibration spoool 2 60 20-04-2024, 22:39 PM
Last Post: Clusters
  citroen c4 picasso bsi odo konradzd 2 47 18-04-2024, 19:31 PM
Last Post: konradzd
  edc17c74 vw passat mileage Lifestyle 1 73 17-04-2024, 04:21 AM
Last Post: sattvv
  BMW G30 mileage Harrycz44 14 430 16-04-2024, 14:28 PM
Last Post: Gabriel87

Forum Jump:


Users browsing this thread:
1 Guest(s)

Return to TopReturn to Content