diff options
author | Matt Ettus <matt@ettus.com> | 2010-10-10 23:38:56 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-10-10 23:38:56 -0700 |
commit | a3cf4ea0fca439b91a299eee782ee7858c3a9468 (patch) | |
tree | 3ca7e751ac5d042c7583cf219bd947389ed5741a /usrp2/top/u2_rev3 | |
parent | e16fbb404322cb75a7b8abe8abe8afd594464d8a (diff) | |
download | uhd-a3cf4ea0fca439b91a299eee782ee7858c3a9468.tar.gz uhd-a3cf4ea0fca439b91a299eee782ee7858c3a9468.tar.bz2 uhd-a3cf4ea0fca439b91a299eee782ee7858c3a9468.zip |
separated flow control and error reporting on tx path. should work with and without flow control
Diffstat (limited to 'usrp2/top/u2_rev3')
-rw-r--r-- | usrp2/top/u2_rev3/u2_core_udp.v | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usrp2/top/u2_rev3/u2_core_udp.v b/usrp2/top/u2_rev3/u2_core_udp.v index 4879cfc6b..809218a75 100644 --- a/usrp2/top/u2_rev3/u2_core_udp.v +++ b/usrp2/top/u2_rev3/u2_core_udp.v @@ -694,7 +694,8 @@ module u2_core ); vita_tx_chain #(.BASE_CTRL(SR_TX_CTRL), .BASE_DSP(SR_TX_DSP), - .REPORT_ERROR(1), .PROT_ENG_FLAGS(1)) + .REPORT_ERROR(1), .DO_FLOW_CONTROL(1), + .PROT_ENG_FLAGS(1), .USE_TRANS_HEADER(1)) vita_tx_chain (.clk(dsp_clk), .reset(dsp_rst), .set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), |