Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
04/20/04 05:28
Read: times


 
#68858 - RE: Implementing CRC 16 in C
Responding to: ???'s previous message

A CRC will not generate a checksum! A CRC generates a 'Cyclic Redundancy Check' whereas a checksum is generated from the sum of the values. You probably know this but it is always wise to use the correct terms to avoid confusion.

Raj is also right in pointing you to the web. There are two main methods for CRC generation/checking: table driven or looped. Table driven is faster but chews up memory due to the table whereas looped is smaller but executes slower.

List of 5 messages in thread
TopicAuthorDate
Implementing CRC 16 in C            01/01/70 00:00      
   RE: Implementing CRC 16 in C            01/01/70 00:00      
   RE: Implementing CRC 16 in C            01/01/70 00:00      
      RE: Implementing CRC 16 in C            01/01/70 00:00      
   RE: Implementing CRC 16 in C            01/01/70 00:00      

Back to Subject List