diff options
author | Matt Ettus <matt@ettus.com> | 2010-05-03 12:34:45 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-05-03 12:34:45 -0700 |
commit | b30cbe85e8537de6a94e481a57033b5e57a73e12 (patch) | |
tree | 138215aa5f5b3b12913b581e3819938f00be147e /usrp2/gpmc/gpmc_async.v | |
parent | eb5bfb963459dbb3e51df49b5aa22fcbda1627d5 (diff) | |
download | uhd-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_async.v')
-rw-r--r-- | usrp2/gpmc/gpmc_async.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/gpmc/gpmc_async.v b/usrp2/gpmc/gpmc_async.v index 02a00ce57..dd06478b3 100644 --- a/usrp2/gpmc/gpmc_async.v +++ b/usrp2/gpmc/gpmc_async.v @@ -78,7 +78,7 @@ module gpmc_async .f36_datain(rx_data_i), .f36_src_rdy_i(rx_src_rdy_i), .f36_dst_rdy_o(rx_dst_rdy_o), .f18_dataout(rx18_data), .f18_src_rdy_o(rx18_src_rdy), .f18_dst_rdy_i(rx18_dst_rdy) ); - fifo_cascade #(.WIDTH(18), .SIZE(10)) rx_fifo + fifo_cascade #(.WIDTH(18), .SIZE(12)) rx_fifo (.clk(fifo_clk), .reset(fifo_rst), .clear(0), .datain(rx18_data), .src_rdy_i(rx18_src_rdy), .dst_rdy_o(rx18_dst_rdy), .space(rx_fifo_space), .dataout(rx18b_data), .src_rdy_o(rx18b_src_rdy), .dst_rdy_i(rx18b_dst_rdy), .occupied()); |