diff options
author | Matt Ettus <matt@ettus.com> | 2011-02-17 12:23:54 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-02-17 12:23:54 -0800 |
commit | 739f27c96dafa461245e51d6f44010f8d860be27 (patch) | |
tree | 39b4e0da8bda87bf54686a7e40f53dd1aaec06c1 /usrp2/vrt | |
parent | 2f5e56a89b154db379909651413c1e7458bb9cae (diff) | |
download | uhd-739f27c96dafa461245e51d6f44010f8d860be27.tar.gz uhd-739f27c96dafa461245e51d6f44010f8d860be27.tar.bz2 uhd-739f27c96dafa461245e51d6f44010f8d860be27.zip |
u2/u2p: proper hookup of vita_rx_chain
Diffstat (limited to 'usrp2/vrt')
-rw-r--r-- | usrp2/vrt/vita_rx_chain.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/vrt/vita_rx_chain.v b/usrp2/vrt/vita_rx_chain.v index 8d8825e42..f5578eb15 100644 --- a/usrp2/vrt/vita_rx_chain.v +++ b/usrp2/vrt/vita_rx_chain.v @@ -8,7 +8,7 @@ module vita_rx_chain output [35:0] rx_data_o, output rx_src_rdy_o, input rx_dst_rdy_i, output [31:0] debug ); - wire [99:0] sample_data; + wire [100:0] sample_data; wire sample_dst_rdy, sample_src_rdy; wire [31:0] vrc_debug, vrf_debug; @@ -28,6 +28,6 @@ module vita_rx_chain .fifo_occupied(), .fifo_full(), .fifo_empty(), .debug_rx(vrf_debug) ); - assign debug = vrc_debug | vrf_debug; + assign debug = vrc_debug; // | vrf_debug; endmodule // vita_rx_chain |