diff options
author | Matt Ettus <matt@ettus.com> | 2010-10-12 23:02:30 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-10-12 23:02:30 -0700 |
commit | c82dffc89991272f103866d64fb29d435f67412a (patch) | |
tree | a2f4dec6227742076f8dcffdc9508e6efbc1a027 | |
parent | b77f9abf8597765b53c28b9ac99faaa3d535803b (diff) | |
download | uhd-c82dffc89991272f103866d64fb29d435f67412a.tar.gz uhd-c82dffc89991272f103866d64fb29d435f67412a.tar.bz2 uhd-c82dffc89991272f103866d64fb29d435f67412a.zip |
don't flag an error on eob ack
-rw-r--r-- | usrp2/vrt/vita_tx_chain.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/vrt/vita_tx_chain.v b/usrp2/vrt/vita_tx_chain.v index 6cfbdf763..00da4c6e1 100644 --- a/usrp2/vrt/vita_tx_chain.v +++ b/usrp2/vrt/vita_tx_chain.v @@ -31,7 +31,7 @@ module vita_tx_chain wire clear_seqnum; wire [31:0] current_seqnum; - assign underrun = error; + assign underrun = error & ~(error_code == 1); assign message = error_code; setting_reg #(.my_addr(BASE_CTRL+2), .at_reset(0)) sr_streamid |