aboutsummaryrefslogtreecommitdiffstats
path: root/usrp2/vrt/vita_tx_deframer.v
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-04-10 19:10:10 -0700
committerJosh Blum <josh@joshknows.com>2012-04-10 19:10:10 -0700
commite8dc93363a60ad94b4777a5a8d64424c1273ed3e (patch)
treef5885cf35b25e4012fc5e397398ad3b16e9d3f7f /usrp2/vrt/vita_tx_deframer.v
parent510632d8968eb95d383da4cf2d72184d66da0bee (diff)
downloaduhd-e8dc93363a60ad94b4777a5a8d64424c1273ed3e.tar.gz
uhd-e8dc93363a60ad94b4777a5a8d64424c1273ed3e.tar.bz2
uhd-e8dc93363a60ad94b4777a5a8d64424c1273ed3e.zip
usrp: work on meeting timing constraints
* fifo ctrl register the vita ticks and use late * vita de/framer make nchans const since we dont change it * simplify readback muxes to minimal usage
Diffstat (limited to 'usrp2/vrt/vita_tx_deframer.v')
-rw-r--r--usrp2/vrt/vita_tx_deframer.v3
1 files changed, 2 insertions, 1 deletions
diff --git a/usrp2/vrt/vita_tx_deframer.v b/usrp2/vrt/vita_tx_deframer.v
index 6919da11a..ed3916311 100644
--- a/usrp2/vrt/vita_tx_deframer.v
+++ b/usrp2/vrt/vita_tx_deframer.v
@@ -43,10 +43,11 @@ module vita_tx_deframer
localparam FIFOWIDTH = 5+64+16+(32*MAXCHAN);
- wire [1:0] numchan;
+ wire [1:0] numchan = 0;/*
setting_reg #(.my_addr(BASE), .at_reset(0), .width(2)) sr_numchan
(.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr),
.in(set_data),.out(numchan),.changed());
+ */
reg [3:0] vita_state;
wire has_streamid, has_classid, has_secs, has_tics, has_trailer;