commit-gnuradio
[Top][All Lists]
Advanced

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

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


From: matt
Subject: [Commit-gnuradio] r6035 - gnuradio/branches/developers/matt/u2f/sdr_lib
Date: Thu, 19 Jul 2007 18:06:36 -0600 (MDT)

Author: matt
Date: 2007-07-19 18:06:36 -0600 (Thu, 19 Jul 2007)
New Revision: 6035

Modified:
   gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_rx.v
Log:
swap i and q


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-20 
00:06:14 UTC (rev 6034)
+++ gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_rx.v 2007-07-20 
00:06:36 UTC (rev 6035)
@@ -75,7 +75,7 @@
    assign      overrun = full & stb_decim;
    
    shortfifo rxshortfifo
-     
(.clk(clk),.rst(rst),.datain({i_decim[23:8],q_decim[23:8]}),.dataout(rx_dat_o),
+     
(.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));
    
 endmodule // dsp_core_rx





reply via email to

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