• 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?
  • 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? /*********************...