diff options
author | Matt Ettus <matt@ettus.com> | 2010-10-12 23:05:47 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-10-12 23:05:47 -0700 |
commit | ecea1b5b4a0c7eb6683d15ca15e176f57a5a372a (patch) | |
tree | 1cf85c95ba794ec65a8ad405b08d2d5d8343b729 | |
parent | c82dffc89991272f103866d64fb29d435f67412a (diff) | |
download | uhd-ecea1b5b4a0c7eb6683d15ca15e176f57a5a372a.tar.gz uhd-ecea1b5b4a0c7eb6683d15ca15e176f57a5a372a.tar.bz2 uhd-ecea1b5b4a0c7eb6683d15ca15e176f57a5a372a.zip |
don't clear out following packets on an eob ack
-rw-r--r-- | usrp2/vrt/vita_tx_control.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/vrt/vita_tx_control.v b/usrp2/vrt/vita_tx_control.v index ed470418b..936762212 100644 --- a/usrp2/vrt/vita_tx_control.v +++ b/usrp2/vrt/vita_tx_control.v @@ -109,7 +109,7 @@ module vita_tx_control else if(eop) if(eob) begin - ibs_state <= IBS_ERROR; // Not really an error + ibs_state <= IBS_ERROR_DONE; // Not really an error error_code <= CODE_EOB_ACK; send_error <= 1; end |