summaryrefslogtreecommitdiffstats
path: root/usrp2/vrt
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2011-11-04 14:45:32 -0700
committerJosh Blum <josh@joshknows.com>2011-11-04 23:04:44 -0700
commitca02bf0358677043fb5d594a0f12413ba242c892 (patch)
tree81f471fdbbf0b73556cc1a58eeb35ab596f0d7d9 /usrp2/vrt
parent8ae4113fb0666490bf7a0bfce89009012d88b96b (diff)
downloaduhd-ca02bf0358677043fb5d594a0f12413ba242c892.tar.gz
uhd-ca02bf0358677043fb5d594a0f12413ba242c892.tar.bz2
uhd-ca02bf0358677043fb5d594a0f12413ba242c892.zip
dsp: remove dsp_buffer and replace with simpler add_routing_header,
other funcs of dsp_buffer are done by double_buffer and dsp_engine
Diffstat (limited to 'usrp2/vrt')
-rw-r--r--usrp2/vrt/vita_rx_chain.v5
1 files changed, 2 insertions, 3 deletions
diff --git a/usrp2/vrt/vita_rx_chain.v b/usrp2/vrt/vita_rx_chain.v
index 63e1e45dd..8b41e5fa8 100644
--- a/usrp2/vrt/vita_rx_chain.v
+++ b/usrp2/vrt/vita_rx_chain.v
@@ -72,9 +72,8 @@ module vita_rx_chain
.access_skip_read(access_skip_read), .access_adr(access_adr), .access_len(access_len),
.access_dat_i(buf_to_dsp), .access_dat_o(dsp_to_buf));
- dsp_framer36 #(.BUF_SIZE(FIFOSIZE),
- .PORT_SEL(UNIT),
- .PROT_ENG_FLAGS(PROT_ENG_FLAGS)) dsp0_framer36
+ add_routing_header #(.PORT_SEL(UNIT),
+ .PROT_ENG_FLAGS(PROT_ENG_FLAGS)) dsp_routing_header
(.clk(clk), .reset(reset), .clear(clear),
.data_i(rx_data_int2), .src_rdy_i(rx_src_rdy_int2), .dst_rdy_o(rx_dst_rdy_int2),
.data_o(rx_data_o), .src_rdy_o(rx_src_rdy_o), .dst_rdy_i(rx_dst_rdy_i) );