Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When reading data from a RFID device you will find a CRC-CCITT over the payload. "The CRC is initialized with 0x3791 instead of the usual value 0xFFFF." How can I define the function, that checks that the CRC is ok.

sample

data: { 0x02, 0x40, 0x00, 0x00, 0x00, 0x00, 0xA0 } CRC: { 0x60, 0xE7 }

another sample

data: { 0x02, 0x41, 0x00, 0x00, 0x00, 0x00, 0xA4 } CRC: { 0x6F, 0xA5 }

share|improve this question
were you able to solve this? How? – jacknad Jan 25 '11 at 21:09

2 Answers

up vote 0 down vote accepted

The only way I could get this to work was by implementing the bit-by-bit algorithm (TMS37157 datasheet Figure 52).

UINT16 rfid_get_crc(const UINT8 * data, INT8 size)
{
 static BOOL lsb;
 static BOOL rxdt;
 static UINT16 crc;
 static UINT8 bits;
 static UINT8 byte;
 static UINT8 i;
 const UINT16 RFID_CRC_INIT = 0x3791;

 crc = RFID_CRC_INIT;
 for (i=0; i<size; i++)
 {
  bits = 8;
  byte = data[i]; // Next byte
  while (bits --> 0)
  {
   lsb = crc & 1; // Store LSB
   crc >>= 1; // Shift right 1 bit
   rxdt = byte & 1;
   if (rxdt)
    crc |= 0x8000; // Shift in next bit
   if (lsb) // Check stored LSB
    crc ^= 0x8000; // Invert MSB
   if (0x8000 == (crc & 0x8000)) // Check MSB
    crc ^= 0x0408; // Invert bits 3 and 10
   byte >>= 1; // Next bit
  }
 }
 return crc;
}
share|improve this answer

You should calculate that CRC, using the following code: http://www.eagleairaust.com.au/code/crc16.htm That code should be repeated for each byte of input data. Also, initial value of crc should be 0x3791

share|improve this answer
Found this page alredy before. The calculated CRC of the first sample is 0x0D1474D4. That's unsigned int and even if you use only the lower 16 bits it's not related to the expected result 0xE760. – harper Nov 26 '10 at 15:52
You should cast the value to 16bits after each iteration, on that link it seems to be assumed that int by default is 16 bit. – Nickolay Olshevsky Nov 29 '10 at 14:44
The CRC for only the first byte (0x02) is 0xA625. With the algorythm you mentioned I get 0x7924f7f6 (32 Bit crc variable) or 0xf7f6 (16 Bit crc variable). How should this be casted to 0xA625? – harper Mar 21 '11 at 19:03
1  
To answer my own question in comment: The code assumes that the data is shifted with MSB first. But the RFID data is shifted LSB first. To use the code mentiod you need to mirror each data byte, the initial CRC and the resulting CRC. – harper Mar 21 '11 at 19:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.