commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r9045 - in gnuradio/branches/developers/gnychis/fpga/u


From: gnychis
Subject: [Commit-gnuradio] r9045 - in gnuradio/branches/developers/gnychis/fpga/usrp/fpga/inband_lib: . testbenches
Date: Tue, 29 Jul 2008 13:31:46 -0600 (MDT)

Author: gnychis
Date: 2008-07-29 13:31:45 -0600 (Tue, 29 Jul 2008)
New Revision: 9045

Modified:
   
gnuradio/branches/developers/gnychis/fpga/usrp/fpga/inband_lib/rx_buffer_inband.v
   
gnuradio/branches/developers/gnychis/fpga/usrp/fpga/inband_lib/testbenches/tb_timestamps.v
Log:
fixing strobe generation

Modified: 
gnuradio/branches/developers/gnychis/fpga/usrp/fpga/inband_lib/rx_buffer_inband.v
===================================================================
--- 
gnuradio/branches/developers/gnychis/fpga/usrp/fpga/inband_lib/rx_buffer_inband.v
   2008-07-29 19:20:23 UTC (rev 9044)
+++ 
gnuradio/branches/developers/gnychis/fpga/usrp/fpga/inband_lib/rx_buffer_inband.v
   2008-07-29 19:31:45 UTC (rev 9045)
@@ -191,7 +191,8 @@
     .empty ( cmd_empty),
     .full ( rx_full[NUM_CHAN] ),
     .q ( dataout[NUM_CHAN]),
-    .usedw ( usedw[NUM_CHAN] )
+    .usedw ( usedw[NUM_CHAN] ),
+    .almost_empty()
   );
        
   assign chan_empty[NUM_CHAN] = cmd_empty | rx_WR_enabled;

Modified: 
gnuradio/branches/developers/gnychis/fpga/usrp/fpga/inband_lib/testbenches/tb_timestamps.v
===================================================================
--- 
gnuradio/branches/developers/gnychis/fpga/usrp/fpga/inband_lib/testbenches/tb_timestamps.v
  2008-07-29 19:20:23 UTC (rev 9044)
+++ 
gnuradio/branches/developers/gnychis/fpga/usrp/fpga/inband_lib/testbenches/tb_timestamps.v
  2008-07-29 19:31:45 UTC (rev 9045)
@@ -20,7 +20,7 @@
   reg [15:0] ch_6;
   reg [15:0] ch_7;
   reg rxclk;
-  reg rxstrobe;
+  wire rxstrobe;
   reg clear_status;
   reg [6:0] serial_addr;
   reg [31:0] serial_data;
@@ -50,7 +50,7 @@
 
   // I am not sure of this...
   strobe_gen sgen
-    (.timestamp_clock(timestamp_clock), .reset(reset), .rxclk(rxclk), 
.rxstrobe(rxstrobe), .rate(8'd64), .strobe_in(1'b1));
+    (.clock(rxclk), .reset(reset), .enable(1'b1), .rate(8'd64), 
.strobe_in(1'b1), .strobe(rxstrobe));
 
   always
     #5 rxclk = ~rxclk;





reply via email to

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