diff options
author | Matt Ettus <matt@ettus.com> | 2010-10-11 16:39:31 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-11-11 18:07:08 -0800 |
commit | 5c3073e9a8fcf17e2fc0897c1a0380c96216e346 (patch) | |
tree | d6ab10d3ac19e8dfd9a40d54284629e6e94f7c85 /usrp2/vrt/vita_tx_chain.v | |
parent | f39dc8ef3113edaf96000c61f1d481f53bb23bda (diff) | |
download | uhd-5c3073e9a8fcf17e2fc0897c1a0380c96216e346.tar.gz uhd-5c3073e9a8fcf17e2fc0897c1a0380c96216e346.tar.bz2 uhd-5c3073e9a8fcf17e2fc0897c1a0380c96216e346.zip |
switch to 32 bit sequence numbers. Will wrap in ~15 hours at max rate
Diffstat (limited to 'usrp2/vrt/vita_tx_chain.v')
-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 09da377f8..eee19bebf 100644 --- a/usrp2/vrt/vita_tx_chain.v +++ b/usrp2/vrt/vita_tx_chain.v @@ -29,7 +29,7 @@ module vita_tx_chain wire error, packet_consumed; wire [31:0] error_code; wire clear_seqnum; - wire [15:0] current_seqnum; + wire [31:0] current_seqnum; assign underrun = error; assign message = error_code; |