0

could anyone tell me that

is it right way if i calculate the crc by the method given below:

i did this because dataword length is large.

hand calc

hand calc

is it right?

Mark Adler
  • 79,438
  • 12
  • 96
  • 137

2 Answers2

0

The bottom set of divisions are what you want for a CRC, and arrive at the correct remainders. Your quotients each need one more bit, but they are not used anyway.

The top division was not completed, but it is not relevant, since you need to append the four zeros first as you did in the bottom left, or the four-bit CRC as you did in the bottom right.

Mark Adler
  • 79,438
  • 12
  • 96
  • 137
0

Ultimately, You are doing the same thing what a division does. Refer https://www.wikihow.com/Divide-Binary-Numbers binary division for more. However, the data word to be sent to the receiver should not be altered.