diff options
| author | Matt Ettus <matt@ettus.com> | 2010-01-23 01:05:13 -0800 | 
|---|---|---|
| committer | Matt Ettus <matt@ettus.com> | 2010-01-23 01:05:13 -0800 | 
| commit | ab2f3f78bb3f6b88190312b06a6476c3a08561d2 (patch) | |
| tree | 3b87964d1c85d0663003fafff3dab91c2b8d625f | |
| parent | 8b377a9d6d0ad281474a8dbff49ea3b093178b28 (diff) | |
| download | uhd-ab2f3f78bb3f6b88190312b06a6476c3a08561d2.tar.gz uhd-ab2f3f78bb3f6b88190312b06a6476c3a08561d2.tar.bz2 uhd-ab2f3f78bb3f6b88190312b06a6476c3a08561d2.zip | |
typo caused the tx udp chain to be disconnected
| -rw-r--r-- | usrp2/udp/udp_wrapper.v | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/usrp2/udp/udp_wrapper.v b/usrp2/udp/udp_wrapper.v index 6e8d19dfd..5a78cd09c 100644 --- a/usrp2/udp/udp_wrapper.v +++ b/usrp2/udp/udp_wrapper.v @@ -22,7 +22,7 @@ module udp_wrapper     // TX side     fifo36_to_fifo19 fifo36_to_fifo19       (.clk(clk), .reset(reset), .clear(clear), -      .f36_datain(tx_f36_data), .f36_src_rdy_i(tx_f36_src_rdy_), .f36_dst_rdy_o(tx_f36_dst_rdy_o), +      .f36_datain(tx_f36_data), .f36_src_rdy_i(tx_f36_src_rdy_i), .f36_dst_rdy_o(tx_f36_dst_rdy_o),        .f19_dataout(tx_int1_data), .f19_src_rdy_o(tx_int1_src_rdy), .f19_dst_rdy_i(tx_int1_dst_rdy) );     fifo_short #(.WIDTH(19)) shortfifo19_a | 
