diff options
author | Ian Buckley <ianb@server2.(none)> | 2010-08-19 17:28:07 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-11-11 12:06:12 -0800 |
commit | 9bfab308d55c2b253f1ec9f0c998ee9920e0468f (patch) | |
tree | 0e7c845f6995582209c1427f3ac13dea2f78241e /usrp2/vrt | |
parent | d4b6fa72eb3fec872a41dea136a5845d3c6ff1ec (diff) | |
download | uhd-9bfab308d55c2b253f1ec9f0c998ee9920e0468f.tar.gz uhd-9bfab308d55c2b253f1ec9f0c998ee9920e0468f.tar.bz2 uhd-9bfab308d55c2b253f1ec9f0c998ee9920e0468f.zip |
Added a bunch of debug signals.
Diffstat (limited to 'usrp2/vrt')
-rw-r--r-- | usrp2/vrt/vita_tx_deframer.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/vrt/vita_tx_deframer.v b/usrp2/vrt/vita_tx_deframer.v index f9cd7d00d..b62507092 100644 --- a/usrp2/vrt/vita_tx_deframer.v +++ b/usrp2/vrt/vita_tx_deframer.v @@ -84,7 +84,7 @@ module vita_tx_deframer seqnum_err <= 0; end else - if((vita_state == VITA_STORE) & fifo_space) + if((vita_state == VITA_STORE) & fifo_space ) //& src_rdy_i) if(eop) if(has_trailer_reg) vita_state <= VITA_TRAILER; @@ -183,7 +183,7 @@ module vita_tx_deframer 3: sample_d <= data_i[31:0]; endcase // case (vector_phase) - wire store = (vita_state == VITA_STORE); + wire store = (vita_state == VITA_STORE) ; //& src_rdy_i; fifo_short #(.WIDTH(FIFOWIDTH)) short_tx_q (.clk(clk), .reset(reset), .clear(clear), .datain(fifo_i), .src_rdy_i(store), .dst_rdy_o(fifo_space), |