diff options
author | Matt Ettus <matt@ettus.com> | 2011-06-16 10:41:35 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-06-16 10:41:35 -0700 |
commit | dd41da159157afe417e7f3b77ba30e189eb510fe (patch) | |
tree | 802e3a224064254d48864590fe005ff899b851ed | |
parent | f7625cca193efd56072024e6a5cef5d220a10170 (diff) | |
download | uhd-dd41da159157afe417e7f3b77ba30e189eb510fe.tar.gz uhd-dd41da159157afe417e7f3b77ba30e189eb510fe.tar.bz2 uhd-dd41da159157afe417e7f3b77ba30e189eb510fe.zip |
u1p: connect have_packet signal
-rw-r--r-- | usrp2/gpmc/gpmc_async.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/gpmc/gpmc_async.v b/usrp2/gpmc/gpmc_async.v index 911e08969..9972e81b0 100644 --- a/usrp2/gpmc/gpmc_async.v +++ b/usrp2/gpmc/gpmc_async.v @@ -116,7 +116,7 @@ module gpmc_async (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_rx), .data_i(rx18_data), .src_rdy_i(rx18_src_rdy), .dst_rdy_o(rx18_dst_rdy), .EM_D(EM_D_fifo), .EM_NCS(EM_NCS4), .EM_NOE(EM_NOE), - .have_packet(have_packet), .frame_len(rx_frame_len), .bus_error(bus_error_rx) ); + .have_packet(rx_have_data), .frame_len(rx_frame_len), .bus_error(bus_error_rx) ); // //////////////////////////////////////////// // Control path on CS6 |