This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Efficiet CRC code???

kindly tell me any efficient code for generating CRC for 40 bytes data I am using the modulo 2 division method.

with thanks,
karthik.

Parents Reply Children
  • Most implementations that are table-based comes with two compilation options.

    Either use a pre-built table (already there in the source code) or call a function to built the table.

    Obviously, an embedded target with very little RAM should choose to use the pre-built table but placing it in the code space.

    Google will show many, many implmenetations.

    The documentation (or search on this forum for how to place variables in code) will answer how to place the table where it doesn't consume RAM.