diff options
author | Josh Blum <josh@joshknows.com> | 2011-07-27 18:28:39 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-07-28 00:53:08 -0700 |
commit | 64cf011b0845ad553ec8bfb91fabd903bd7c14fc (patch) | |
tree | 756b22ec8079c4edd1b968d73603b0a1f9d60221 | |
parent | 253f8912824ba2905191c35792b2b450122002d6 (diff) | |
download | uhd-64cf011b0845ad553ec8bfb91fabd903bd7c14fc.tar.gz uhd-64cf011b0845ad553ec8bfb91fabd903bd7c14fc.tar.bz2 uhd-64cf011b0845ad553ec8bfb91fabd903bd7c14fc.zip |
usrp2: fixed swapped tx/rx signals for nsgpio
-rw-r--r-- | usrp2/top/N2x0/u2plus_core.v | 2 | ||||
-rw-r--r-- | usrp2/top/USRP2/u2_core.v | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/top/N2x0/u2plus_core.v b/usrp2/top/N2x0/u2plus_core.v index 8cdaa3fe7..65b3ec323 100644 --- a/usrp2/top/N2x0/u2plus_core.v +++ b/usrp2/top/N2x0/u2plus_core.v @@ -421,7 +421,7 @@ module u2plus_core nsgpio nsgpio(.clk_i(wb_clk),.rst_i(wb_rst), .cyc_i(s4_cyc),.stb_i(s4_stb),.adr_i(s4_adr[4:0]),.we_i(s4_we), .dat_i(s4_dat_o),.dat_o(s4_dat_i),.ack_o(s4_ack), - .tx(run_rx0_d1 | rx_rx1_d1), .rx(run_tx), .gpio({io_tx,io_rx}) ); + .rx(run_rx0_d1 | rx_rx1_d1), .tx(run_tx), .gpio({io_tx,io_rx}) ); // ///////////////////////////////////////////////////////////////////////// // Buffer Pool Status -- Slave #5 diff --git a/usrp2/top/USRP2/u2_core.v b/usrp2/top/USRP2/u2_core.v index 2eb3d67b6..58104bb2b 100644 --- a/usrp2/top/USRP2/u2_core.v +++ b/usrp2/top/USRP2/u2_core.v @@ -426,7 +426,7 @@ module u2_core nsgpio nsgpio(.clk_i(wb_clk),.rst_i(wb_rst), .cyc_i(s4_cyc),.stb_i(s4_stb),.adr_i(s4_adr[4:0]),.we_i(s4_we), .dat_i(s4_dat_o),.dat_o(s4_dat_i),.ack_o(s4_ack), - .tx(run_rx0_d1 | rx_rx1_d1), .rx(run_tx), .gpio({io_tx,io_rx}) ); + .rx(run_rx0_d1 | rx_rx1_d1), .tx(run_tx), .gpio({io_tx,io_rx}) ); // ///////////////////////////////////////////////////////////////////////// // Buffer Pool Status -- Slave #5 |