diff options
author | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-01-19 04:33:11 +0000 |
---|---|---|
committer | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-01-19 04:33:11 +0000 |
commit | c026e03847e106fd4f85eda876a36ba38077d1c5 (patch) | |
tree | 00cb92baeec299cef63f912a2c89e426b3b6e914 /sdr_lib/dsp_core_rx.v | |
parent | 0c6c48651ad45dd6c835c94aad80d760400138ae (diff) | |
download | uhd-c026e03847e106fd4f85eda876a36ba38077d1c5.tar.gz uhd-c026e03847e106fd4f85eda876a36ba38077d1c5.tar.bz2 uhd-c026e03847e106fd4f85eda876a36ba38077d1c5.zip |
24 bit wide z. Can't do this parameterized, unfortunately.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10256 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'sdr_lib/dsp_core_rx.v')
-rw-r--r-- | sdr_lib/dsp_core_rx.v | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sdr_lib/dsp_core_rx.v b/sdr_lib/dsp_core_rx.v index 64c82bbda..716182f65 100644 --- a/sdr_lib/dsp_core_rx.v +++ b/sdr_lib/dsp_core_rx.v @@ -107,9 +107,10 @@ module dsp_core_rx .R(rst) // Synchronous reset input ); - cordic #(.bitwidth(24)) + + cordic_z24 #(.bitwidth(24)) cordic(.clock(clk), .reset(rst), .enable(run), - .xi(prod_i[23:0]),. yi(prod_q[23:0]), .zi(phase[31:16]), + .xi(prod_i[23:0]),. yi(prod_q[23:0]), .zi(phase[31:8]), .xo(i_cordic),.yo(q_cordic),.zo() ); cic_strober cic_strober(.clock(clk),.reset(rst),.enable(run),.rate(cic_decim_rate), |