diff options
author | Matt Ettus <matt@ettus.com> | 2010-06-10 15:45:58 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-06-10 15:45:58 -0700 |
commit | a4b11332ab4f6a24bf4645c0b2770f9578a36f45 (patch) | |
tree | 4672f3f43673de1ec925363887f807c91be60696 /usrp2 | |
parent | b38a1db20233e6d23ffce831c38d67a500e87b51 (diff) | |
download | uhd-a4b11332ab4f6a24bf4645c0b2770f9578a36f45.tar.gz uhd-a4b11332ab4f6a24bf4645c0b2770f9578a36f45.tar.bz2 uhd-a4b11332ab4f6a24bf4645c0b2770f9578a36f45.zip |
debug pins
Diffstat (limited to 'usrp2')
-rw-r--r-- | usrp2/top/u1e/u1e_core.v | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usrp2/top/u1e/u1e_core.v b/usrp2/top/u1e/u1e_core.v index 8db995b17..64173ef2d 100644 --- a/usrp2/top/u1e/u1e_core.v +++ b/usrp2/top/u1e/u1e_core.v @@ -428,13 +428,16 @@ module u1e_core //assign debug = { phase[23:8], txsync, txblank, tx }; - assign debug_gpio_0 = { {run_tx, strobe_tx, run_rx, strobe_rx, rx_i[11:0]}, - {rx1_src_rdy, rx1_dst_rdy, rx_src_rdy, rx_dst_rdy, rx_q[11:0]} }; + assign debug_gpio_0 = { {run_tx, strobe_tx, run_rx, strobe_rx, tx_i[11:0]}, + {tx1_src_rdy, tx1_dst_rdy, tx_src_rdy, tx_dst_rdy, tx_q[11:0]} }; + + assign debug_gpio_1 = debug_vtd | debug_vtc; +/* assign debug_gpio_1 = { {rx_enable, rx_src_rdy, rx_dst_rdy, rx_src_rdy & ~rx_dst_rdy}, {tx_enable, tx_src_rdy, tx_dst_rdy, tx_dst_rdy & ~tx_src_rdy}, {rx_sof, rx_eof, rx_src_rdy, rx_dst_rdy, rx_data[33:32],2'b0}, {2'b0, bus_error, debug_gpmc[4:0] }, {misc_gpio[7:0]} }; - + */ endmodule // u1e_core |