• CRC-32 or CRC-16 code
    Dear friends, I'm trying to develop a CRC-32 routine for my V-Star Quisar 320 using the Keil C51 compiler suite. I have found (in the Internet) a sample C code implementing CRC-32 algorithm. Testing...
  • CRC in MCU
    Does anyone have C code or ASM code of CRC calculation for an array of 256 byte data?
  • CRC problem
    I have used this C code posted by others in the forum. But i found that i can only do CRC for 7 bytes. Is it the problem of only 16 elements in the feedback array? or why? /*********************...
  • CRC-16
    Hi.......I a trying to implement CRC-16 code for error detection in C.Do anyone have the code for it...
  • Initialie ROM CRC byte
    I can set a variable in the ROM area as following: #define END_CODE_SIZE 0x3FFF char code CRCbyte _at_ END_CODE_SIZE How do I set its value to says 0xAA? I can do this: char code CRCbyte = 0xAA; ...