diff options
author | Matt Ettus <matt@ettus.com> | 2010-06-08 14:16:22 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-06-08 14:16:22 -0700 |
commit | 724af67a222aca01207cda9e0e4a8ce33217b7b8 (patch) | |
tree | 0723810799c76e5b471e65e26f5d1f8fdfa3c2f3 /usrp2/gpmc/gpmc_async.v | |
parent | 6eb6050269f469b982843b526eff80b37e8c5f3b (diff) | |
download | uhd-724af67a222aca01207cda9e0e4a8ce33217b7b8.tar.gz uhd-724af67a222aca01207cda9e0e4a8ce33217b7b8.tar.bz2 uhd-724af67a222aca01207cda9e0e4a8ce33217b7b8.zip |
debug pins
Diffstat (limited to 'usrp2/gpmc/gpmc_async.v')
-rw-r--r-- | usrp2/gpmc/gpmc_async.v | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usrp2/gpmc/gpmc_async.v b/usrp2/gpmc/gpmc_async.v index 1050cef7d..9f7b6dc4c 100644 --- a/usrp2/gpmc/gpmc_async.v +++ b/usrp2/gpmc/gpmc_async.v @@ -105,11 +105,14 @@ module gpmc_async .EM_D(EM_D_fifo), .EM_NCS(EM_NCS4), .EM_NOE(EM_NOE), .frame_len(rx_frame_len) ); + wire [31:0] pkt_count; + fifo_watcher fifo_watcher (.clk(fifo_clk), .reset(fifo_rst), .clear(0), .src_rdy1(rx18_src_rdy), .dst_rdy1(rx18_dst_rdy), .sof1(rx18_data[16]), .eof1(rx18_data[17]), .src_rdy2(rx18b_src_rdy), .dst_rdy2(rx18b_dst_rdy), .sof2(rx18b_data[16]), .eof2(rx18b_data[17]), - .have_packet(rx_have_data), .length(rx_frame_len), .bus_error(bus_error_rx) ); + .have_packet(rx_have_data), .length(rx_frame_len), .bus_error(bus_error_rx), + .debug(pkt_count)); // //////////////////////////////////////////// // Control path on CS6 @@ -122,6 +125,6 @@ module gpmc_async .wb_sel_o(wb_sel_o), .wb_cyc_o(wb_cyc_o), .wb_stb_o(wb_stb_o), .wb_we_o(wb_we_o), .wb_ack_i(wb_ack_i) ); - assign debug = 0; + assign debug = pkt_count; endmodule // gpmc_async |