summaryrefslogtreecommitdiffstats
path: root/usrp2/sdr_lib
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2010-08-16 15:16:19 -0700
committerMatt Ettus <matt@ettus.com>2010-08-16 15:16:19 -0700
commit9ff71ccb960f71384f293dcb97fb2841d1805fa3 (patch)
tree4a4819f3d6f0c8cd69a48fa8b340a7659c8e7cde /usrp2/sdr_lib
parentbbe1965c18bb97d4a4d7b3cde1c343d147c23278 (diff)
parent33083078546a910268ee404fc592c7df31451ebc (diff)
downloaduhd-9ff71ccb960f71384f293dcb97fb2841d1805fa3.tar.gz
uhd-9ff71ccb960f71384f293dcb97fb2841d1805fa3.tar.bz2
uhd-9ff71ccb960f71384f293dcb97fb2841d1805fa3.zip
Merge branch 'ise12' into ise12_efifo_work
* ise12: move declaration ahead of use put run_tx and run_rx on the displayed LEDs remove warnings add mux and demux to build mux multiple fifo streams into one. Allows priority or round robin split fifo into 2 streams based on first line in each packet fix to stop endless error packets updated tests to match new features error packets are now valid Extension Context packets error packets don't have a trailer any more streamid is now optional on data packets, set by header register trailer now has a bit to indicate successful End-of-burst hard-coded some header bits to correct values to ensure valid packets reload bit for vita rx ctrl
Diffstat (limited to 'usrp2/sdr_lib')
-rw-r--r--usrp2/sdr_lib/dsp_core_tx.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/sdr_lib/dsp_core_tx.v b/usrp2/sdr_lib/dsp_core_tx.v
index 22d3d44a3..79d92c9b3 100644
--- a/usrp2/sdr_lib/dsp_core_tx.v
+++ b/usrp2/sdr_lib/dsp_core_tx.v
@@ -29,11 +29,11 @@ module dsp_core_tx
(.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr),
.in(set_data),.out({scale_i,scale_q}),.changed());
- setting_reg #(.my_addr(BASE+2)) sr_2
+ setting_reg #(.my_addr(BASE+2), .width(10)) sr_2
(.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr),
.in(set_data),.out({enable_hb1, enable_hb2, interp_rate}),.changed());
- setting_reg #(.my_addr(BASE+4)) sr_4
+ setting_reg #(.my_addr(BASE+4), .width(8)) sr_4
(.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr),
.in(set_data),.out({dacmux_b,dacmux_a}),.changed());