Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

What is the checksum method ?

Status
Not open for further replies.

IBO

Full Member level 3
Joined
Mar 1, 2007
Messages
153
Helped
2
Reputation
4
Reaction score
1
Trophy points
1,298
Activity points
1,980
checksum

what is a checksum
 

checksum

A checksum is a method of determining whether an error has occurred in the transmission of data. There an numerous different algorithms. Essentially you send an extra piece of data that is used to validate the previous block.
The most common are the CRC checks. These usually involve XORing the incoming data with a seed value. There is alot of math behind it, but the key is to me able to catch whether any of the bits were received incorrectly.
Usually when the CRC or checksum indicates a failure, all you can do is request a retransmission. The checksum only gives a yes-no answer to an indication of where in the block of data the error is.

Check sums are even used on compresses files or on software programs in embedded systems so that the integrity of the files can be checked before execution. In systems where personal safety is concerned, you do not want to operate if the ROM is corrupted.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top