0

I would like to understand the CRC compuation in the Header field of IEEE 802.11b PHY. I read in the literature, CRC-16 is used and the 1's compliment of the reminder of the (e SIGNAL, SERVICE, and LENGTH by Generator Polynomial)

But I want to understand, given a bit stream, how this computation is done.

I am trying to understand, how to implement in Hardware using Shift registers or in Matlab.

Any suggestions or useful pointers in this direction would be helpful.

Thanks,

Kiran

Kiran
  • 8,034
  • 36
  • 110
  • 176

2 Answers2

1

Xilinx has an app note and source code for the CRC in IEEE 802.3.

1

Here is a link to an article on CRC generation for hardware description languages (Verilog , VHDL)

OutputLogic
  • 756
  • 4
  • 12
  • Thanks a ton for sharing, would saved few hours of scratching my head. I implemented the model in Simulink in Matlab :) – Kiran May 11 '11 at 09:22