diff options
author | Matt Ettus <matt@ettus.com> | 2010-10-12 23:05:47 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-11-11 18:07:08 -0800 |
commit | 10427284e0e270a5b5bdc735da09d8fde9040537 (patch) | |
tree | 8ee92b7b294e25bd158f33c699f04b79d1f1aa13 | |
parent | 4bac44e009329f6019bb2aec0e181293e049b781 (diff) | |
download | uhd-10427284e0e270a5b5bdc735da09d8fde9040537.tar.gz uhd-10427284e0e270a5b5bdc735da09d8fde9040537.tar.bz2 uhd-10427284e0e270a5b5bdc735da09d8fde9040537.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 |