diff options
author | Matt Ettus <matt@ettus.com> | 2011-04-19 00:16:39 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-05-26 17:31:22 -0700 |
commit | 08149d4c4e904d3a224ac9e24814ce04f3d9c509 (patch) | |
tree | c2042f6d1e7fc15b855b29c2bd41244c120f5ae6 /usrp2 | |
parent | 552e81bf1790c531cbbe4087d6ac93f3baab48d4 (diff) | |
download | uhd-08149d4c4e904d3a224ac9e24814ce04f3d9c509.tar.gz uhd-08149d4c4e904d3a224ac9e24814ce04f3d9c509.tar.bz2 uhd-08149d4c4e904d3a224ac9e24814ce04f3d9c509.zip |
u1p: connect frames per packet
Diffstat (limited to 'usrp2')
-rw-r--r-- | usrp2/gpif/gpif.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/gpif/gpif.v b/usrp2/gpif/gpif.v index 13a549dc7..d003c6b1c 100644 --- a/usrp2/gpif/gpif.v +++ b/usrp2/gpif/gpif.v @@ -103,7 +103,7 @@ module gpif packet_splitter #(.FRAME_LEN(256)) packet_splitter (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_rx), - .frames_per_packet(), + .frames_per_packet(frames_per_packet), .data_i(rx19_data), .src_rdy_i(rx19_src_rdy), .dst_rdy_o(rx19_dst_rdy), .data_o(splt_data), .src_rdy_o(splt_src_rdy), .dst_rdy_i(splt_dst_rdy)); |