aboutsummaryrefslogtreecommitdiffstats
path: root/usrp2/gpmc/gpmc_to_fifo_async.v
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2010-05-03 12:34:45 -0700
committerMatt Ettus <matt@ettus.com>2010-05-03 12:34:45 -0700
commitb30cbe85e8537de6a94e481a57033b5e57a73e12 (patch)
tree138215aa5f5b3b12913b581e3819938f00be147e /usrp2/gpmc/gpmc_to_fifo_async.v
parenteb5bfb963459dbb3e51df49b5aa22fcbda1627d5 (diff)
downloaduhd-b30cbe85e8537de6a94e481a57033b5e57a73e12.tar.gz
uhd-b30cbe85e8537de6a94e481a57033b5e57a73e12.tar.bz2
uhd-b30cbe85e8537de6a94e481a57033b5e57a73e12.zip
have_space and have_packet now stay high even while busy,
as long as there really is more data/space. This should allow bursting without having additional interrupts. Also lenghten RX FIFO
Diffstat (limited to 'usrp2/gpmc/gpmc_to_fifo_async.v')
-rw-r--r--usrp2/gpmc/gpmc_to_fifo_async.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/gpmc/gpmc_to_fifo_async.v b/usrp2/gpmc/gpmc_to_fifo_async.v
index 6232244d4..3d29745a2 100644
--- a/usrp2/gpmc/gpmc_to_fifo_async.v
+++ b/usrp2/gpmc/gpmc_to_fifo_async.v
@@ -57,7 +57,7 @@ module gpmc_to_fifo_async
if(fifo_rst)
fifo_ready <= 0;
else
- fifo_ready <= first_write & (fifo_space > 16'd1023);
+ fifo_ready <= /* first_write & */ (fifo_space > 16'd1023);
always @(posedge fifo_clk)
if(fifo_rst)