IQDetector.v

This module implements I/Q detection via offset-binary converson and a 1-z-2 filter of a data stream as implemented in Hengjie's code.

IQ detector/filter

Ports

clkinputThe clock input.
resetinputThe reset input.
dinoutputInput data stream.
doutoutput   Output data stream

Parameters

wid14Width of the input data stream.

Notes

Example instantiation in Verilog:

wire	[11:0]	d1;
wire	[12:0]	d2;
IQDetector #(.wid(12)) iq0(.clk(clk), .reset(reset), .din(d1), .dout(d2));