Calculation eeprom check sume in EDC17 and MED17 ECU
more details PM please
Calculation eeprom check sume in EDC17 and MED17 ECU
more details PM please
x17 calculation in writing ,or for free in support (eep or flash)
u offer calculation service or software? PM me with prices!
SMAIL DJOUNADI (29th December, 2018)
no mate if "insert coin" is mentioned stamp on the report button and scream and scream untill your sick or a moderator shows up[/QUOTE]
i did that on several ocasions. like a insert coiners hunter!!! no actions were taken by the admins, i even got banned once for insisting....
hi all,
here is the crc calc algo:
Algorithm for CS1:
data from - 0x04
leight - 0x7C
CS calculated with Tricore internal CRC32 and low half word - CS1
Inicial value - block id
unsigned long crc_buffer(unsigned long crc, const unsigned long *p, unsigned long sz)
{
const unsigned long poly = 0xEDB88320;
unsigned long tmp1, tmp2;
while(sz--)
{
tmp1 = 0;
tmp2 = crc & poly;
for(int i = 0; i <=31; i++ )
tmp1 ^= ((tmp2 >> i) & 1);
crc = *p++ ^ ((crc << 1) | tmp1) ;
}
return crc;
}
Regards, G
thank you for you valuable information but can you maintain which platform can i use , it locks like C++
Not C++, just good old C![]()
Bookmarks