Implement CRC algorithm from equation -



Implement CRC algorithm from equation -

i'm dealing device utilize 16 bit cyclic redundancy check:

ccitt crc-16 polynomial x^16 + x^12 + x^5 + x^1

i looked implementation of such algorithm, did find ones lastly term of equation equal 1 (i.e. x^0) instead of x^1, this one or this.

i going implement algorithm myself, when realized don't know how start. how supposed develop crc calculation starting equation?

this pdf file explains subject: hackersdelight.org/crc.pdf.

i recommend computer networks andrew tanenbaum, has chapter on crc algorithm.

finally, double-check see device in fact implement form of crc opposed standard one. might typo.

equation crc crc16

Comments

Popular posts from this blog

web services - java.lang.NoClassDefFoundError: Could not initialize class net.sf.cglib.proxy.Enhancer -

Accessing MATLAB's unicode strings from C -

javascript - mongodb won't find my schema method in nested container -