diff options
author | Matt Ettus <matt@ettus.com> | 2011-10-06 22:56:51 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-10-26 15:57:22 -0700 |
commit | 80ec54d3f39536461c09c960c296e7c02c418310 (patch) | |
tree | 816eb661f0a4b1287877d30dd5c9cae97e055a74 /usrp2/control_lib | |
parent | f4c61186f6a81a09a038cef500d07d4ca5e65a57 (diff) | |
download | uhd-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.srcs | 2 | ||||
-rw-r--r-- | usrp2/control_lib/double_buffer.v | 2 |
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; |