How to calcuate IEEE 802.11 CRC-32 FCS?

纵然是瞬间 提交于 2020-01-14 12:32:16

问题


This is from IEEE Std 802.11-2012 Clause 8.2.4.8 FCS field:

I cannot understand the last two paragraphs:

  1. What's the meaning by "the initial remainder of the division is preset to all ones", and why we need to do that?

  2. What's the meaning by "... the serial incoming bits of the calculation fields and FCS..." ?


回答1:


  1. Initializing the CRC to all ones avoids the problem of a string of zeros of any length giving a zero CRC.

  2. Read Ross Williams CRC tutorial.



来源:https://stackoverflow.com/questions/16103328/how-to-calcuate-ieee-802-11-crc-32-fcs

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!