• 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...
  • ASM CRC
    Hello All, I have this asm crc calculation code: ADDCHECK PUSH ACC ;for 8031 ADD A,CHEKSUM RLC A JC ADCK3 XRL A,#11011101b ;(#0DDh) ADCK3 MOV CHEKSUM,A CLR C ;if CHK >= 244 then CHK= CHK...
  • CRC-16
    Hi.......I a trying to implement CRC-16 code for error detection in C.Do anyone have the code for it...
  • CRC in MCU
    Does anyone have C code or ASM code of CRC calculation for an array of 256 byte data?
  • 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...