• 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; ...
  • ROM test
    I am trying to validate the flash during a self test using a CRC check. Most parts are in place, but one issue remains. How do I find the end of the flash (i.e. the amount of flash to be checked)? ...
  • 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-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...
  • Problems with CRC table
    I have a C8051F340 cygnal processor and a section of code that does a CRC calculation. The calculation uses a 256 variable 16 bit integer thats initialized at compile time. Like this: static const uint16_t...