diff options
| author | Matt Ettus <matt@ettus.com> | 2010-07-21 18:57:40 -0700 | 
|---|---|---|
| committer | Matt Ettus <matt@ettus.com> | 2010-07-28 10:00:44 -0700 | 
| commit | c5605beba381b13c3ceab7a5392a25ee8f336ca6 (patch) | |
| tree | a36903f378b38a5da05397056746f81348f55367 | |
| parent | 9715fc389acfdb0d21b606f0f8c160ace4a4fa47 (diff) | |
| download | uhd-c5605beba381b13c3ceab7a5392a25ee8f336ca6.tar.gz uhd-c5605beba381b13c3ceab7a5392a25ee8f336ca6.tar.bz2 uhd-c5605beba381b13c3ceab7a5392a25ee8f336ca6.zip | |
sequence errors can happen on start of burst as well.
| -rw-r--r-- | usrp2/vrt/vita_tx_deframer.v | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/usrp2/vrt/vita_tx_deframer.v b/usrp2/vrt/vita_tx_deframer.v index 55869b6e7..ce9f222e8 100644 --- a/usrp2/vrt/vita_tx_deframer.v +++ b/usrp2/vrt/vita_tx_deframer.v @@ -108,7 +108,7 @@ module vita_tx_deframer  		else  		  vita_state <= VITA_PAYLOAD;  		seqnum_reg <= seqnum; -		seqnum_err <= ~(is_sob | (seqnum == next_seqnum)); +		seqnum_err <= ~(seqnum == next_seqnum);  	     end // case: VITA_HEADER  	   VITA_STREAMID :  	     if(has_classid_reg) | 
