summaryrefslogtreecommitdiffstats
path: root/usrp2/control_lib
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2011-10-06 22:56:51 -0700
committerMatt Ettus <matt@ettus.com>2011-10-26 15:57:22 -0700
commit80ec54d3f39536461c09c960c296e7c02c418310 (patch)
tree816eb661f0a4b1287877d30dd5c9cae97e055a74 /usrp2/control_lib
parentf4c61186f6a81a09a038cef500d07d4ca5e65a57 (diff)
downloaduhd-80ec54d3f39536461c09c960c296e7c02c418310.tar.gz
uhd-80ec54d3f39536461c09c960c296e7c02c418310.tar.bz2
uhd-80ec54d3f39536461c09c960c296e7c02c418310.zip
dspengine: insert into the rx chain
Diffstat (limited to 'usrp2/control_lib')
-rw-r--r--usrp2/control_lib/Makefile.srcs2
-rw-r--r--usrp2/control_lib/double_buffer.v2
2 files changed, 3 insertions, 1 deletions
diff --git a/usrp2/control_lib/Makefile.srcs b/usrp2/control_lib/Makefile.srcs
index a1c11c026..a88f156c5 100644
--- a/usrp2/control_lib/Makefile.srcs
+++ b/usrp2/control_lib/Makefile.srcs
@@ -11,7 +11,9 @@ atr_controller.v \
bin2gray.v \
dcache.v \
decoder_3_8.v \
+dbsm.v \
dpram32.v \
+double_buffer.v \
gray2bin.v \
gray_send.v \
icache.v \
diff --git a/usrp2/control_lib/double_buffer.v b/usrp2/control_lib/double_buffer.v
index eabd0f956..e8e565963 100644
--- a/usrp2/control_lib/double_buffer.v
+++ b/usrp2/control_lib/double_buffer.v
@@ -54,7 +54,7 @@ module double_buffer
assign rw0_adr = (read_ok & ~read_ptr) ? read_adr : write_adr;
assign rw1_adr = (read_ok & read_ptr) ? read_adr : write_adr;
- wire [35:0] access_dat_i, access_dat_o_0, access_dat_o_1;
+ wire [35:0] access_dat_o_0, access_dat_o_1;
wire access_ptr;
assign access_dat_o = access_ptr? access_dat_o_1 : access_dat_o_0;