commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r6059 - gnuradio/branches/developers/matt/u2f/sdr_lib


From: matt
Subject: [Commit-gnuradio] r6059 - gnuradio/branches/developers/matt/u2f/sdr_lib
Date: Tue, 24 Jul 2007 16:10:05 -0600 (MDT)

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));
    





reply via email to

[Prev in Thread] Current Thread [Next in Thread]