commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r8822 - usrp2/trunk/fpga/sdr_lib


From: matt
Subject: [Commit-gnuradio] r8822 - usrp2/trunk/fpga/sdr_lib
Date: Mon, 7 Jul 2008 19:45:20 -0600 (MDT)

Author: matt
Date: 2008-07-07 19:45:20 -0600 (Mon, 07 Jul 2008)
New Revision: 8822

Modified:
   usrp2/trunk/fpga/sdr_lib/hb_interp.v
Log:
all strobes generated outside of this block now


Modified: usrp2/trunk/fpga/sdr_lib/hb_interp.v
===================================================================
--- usrp2/trunk/fpga/sdr_lib/hb_interp.v        2008-07-08 01:44:46 UTC (rev 
8821)
+++ usrp2/trunk/fpga/sdr_lib/hb_interp.v        2008-07-08 01:45:20 UTC (rev 
8822)
@@ -10,19 +10,13 @@
      input bypass,
      input stb_in,
      input [WIDTH-1:0] data_in,
-     output reg stb_out,
+     input stb_out,
      output reg [WIDTH-1:0] data_out);
 
    always @(posedge clk)
-     if(bypass)
+     if(bypass && stb_in)
        data_out <= data_in;
      else
        data_out <= 0;
 
-   always @(posedge clk)
-     if(bypass)
-       stb_out <= stb_in;
-     else
-       stb_out <= 0;
-
 endmodule // hb_interp





reply via email to

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