diff options
author | Matt Ettus <matt@ettus.com> | 2010-10-15 15:52:26 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-05-26 17:31:20 -0700 |
commit | 8f78482c36bdef3d0c25f294df699ea8c00bba03 (patch) | |
tree | 2a93aa90ac8fecaca3161296826d6aa56cebd4b6 | |
parent | 9ff35c8e1e6b04e191c83ce21e10772969ea4b64 (diff) | |
download | uhd-8f78482c36bdef3d0c25f294df699ea8c00bba03.tar.gz uhd-8f78482c36bdef3d0c25f294df699ea8c00bba03.tar.bz2 uhd-8f78482c36bdef3d0c25f294df699ea8c00bba03.zip |
fixed length command packets
-rw-r--r-- | usrp2/control_lib/fifo_to_wb_tb.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/control_lib/fifo_to_wb_tb.v b/usrp2/control_lib/fifo_to_wb_tb.v index 971d3db1a..e02e60b7c 100644 --- a/usrp2/control_lib/fifo_to_wb_tb.v +++ b/usrp2/control_lib/fifo_to_wb_tb.v @@ -75,7 +75,7 @@ module fifo_to_wb_tb(); data_val <= data_val + 1; @(posedge clk); end - repeat (16-len-1) + repeat (12-len-1) begin cmd <= {2'b00,16'hBEEF}; @(posedge clk); |