diff options
author | Matt Ettus <matt@ettus.com> | 2011-05-12 16:29:41 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-06-08 10:52:52 -0700 |
commit | 2edca948d0a43159138b3754c49a26e0dae562a1 (patch) | |
tree | 7822e90d8ce1b5c4a94f1de14e0d40a91d65bc5f /usrp2/sdr_lib | |
parent | 3993b882c9f3aa69b1cdb6e7370bedd6d9e7931a (diff) | |
download | uhd-2edca948d0a43159138b3754c49a26e0dae562a1.tar.gz uhd-2edca948d0a43159138b3754c49a26e0dae562a1.tar.bz2 uhd-2edca948d0a43159138b3754c49a26e0dae562a1.zip |
dsp: do proper rounding at the end of dsp chain
Diffstat (limited to 'usrp2/sdr_lib')
-rw-r--r-- | usrp2/sdr_lib/dsp_core_rx.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/sdr_lib/dsp_core_rx.v b/usrp2/sdr_lib/dsp_core_rx.v index 1b04c4f36..cd3e7cc22 100644 --- a/usrp2/sdr_lib/dsp_core_rx.v +++ b/usrp2/sdr_lib/dsp_core_rx.v @@ -152,7 +152,7 @@ module dsp_core_rx round_sd #(.WIDTH_IN(18),.WIDTH_OUT(16)) round_qout (.clk(clk), .in(q_hb2), .strobe_in(strobe_hb2), .out(q_out), .strobe_out()); - assign sample = {i_hb2,q_hb2}; + assign sample = {i_out,q_out}; assign debug = {enable_hb1, enable_hb2, run, strobe, strobe_cic, strobe_cic_d1, strobe_hb1, strobe_hb2}; endmodule // dsp_core_rx |