Author: matt
Date: 2007-07-24 16:10:04 -0600 (Tue, 24 Jul 2007)
New Revision: 6059
Modified:
gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_rx.v
Log:
switched to longfifo
Modified: gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_rx.v
===================================================================
--- gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_rx.v 2007-07-24
07:01:34 UTC (rev 6058)
+++ gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_rx.v 2007-07-24
22:10:04 UTC (rev 6059)
@@ -71,10 +71,10 @@
wire full, empty;
assign rx_done_o = 0;
- assign rx_write_o = rx_ready_i & ~empty;
+ assign rx_write_o = rx_ready_i & ~empty; // FIXME potential critical
path
assign overrun = full & stb_decim;
- shortfifo rxshortfifo
+ longfifo #(.WIDTH(32),.SIZE(9)) rxfifo
(.clk(clk),.rst(rst),.datain({q_decim[23:8],i_decim[23:8]}),.dataout(rx_dat_o),
.read(rx_write_o),.write(stb_decim & ~full),.full(full),.empty(empty));
_______________________________________________
Commit-gnuradio mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnuradio