diff options
author | Matt Ettus <matt@ettus.com> | 2010-07-20 17:29:45 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-07-28 10:00:44 -0700 |
commit | 9715fc389acfdb0d21b606f0f8c160ace4a4fa47 (patch) | |
tree | eceab38a4279981bced585c5f8504fd6a2881ded /usrp2/vrt/vita_tx_chain.v | |
parent | a3b53a92d894305e5b319cb325888ab4e686dd05 (diff) | |
download | uhd-9715fc389acfdb0d21b606f0f8c160ace4a4fa47.tar.gz uhd-9715fc389acfdb0d21b606f0f8c160ace4a4fa47.tar.bz2 uhd-9715fc389acfdb0d21b606f0f8c160ace4a4fa47.zip |
more informative error codes
Diffstat (limited to 'usrp2/vrt/vita_tx_chain.v')
-rw-r--r-- | usrp2/vrt/vita_tx_chain.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/vrt/vita_tx_chain.v b/usrp2/vrt/vita_tx_chain.v index ad9f11fc6..705be4a0e 100644 --- a/usrp2/vrt/vita_tx_chain.v +++ b/usrp2/vrt/vita_tx_chain.v @@ -25,10 +25,10 @@ module vita_tx_chain wire [31:0] debug_vtc, debug_vtd, debug_tx_dsp; wire error; - wire [3:0] error_code; + wire [15:0] error_code; assign underrun = error; - assign message = {28'h0,error_code}; + assign message = {16'h0,error_code}; setting_reg #(.my_addr(BASE_CTRL+2), .at_reset(0)) sr_streamid (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), |