diff options
author | Matt Ettus | 2009-09-05 13:38:13 -0700 |
---|---|---|
committer | Matt Ettus | 2009-09-05 13:38:13 -0700 |
commit | db03fafeec9d360a9837303befcc2dbcce57a06b (patch) | |
tree | e436f1a29abb3917bf05c6e5f255df48bf5bf32f | |
parent | 9e05f0770b92f9c85f09e3629f875011e8f1ac24 (diff) | |
download | gnuradio-db03fafeec9d360a9837303befcc2dbcce57a06b.tar.gz gnuradio-db03fafeec9d360a9837303befcc2dbcce57a06b.tar.bz2 gnuradio-db03fafeec9d360a9837303befcc2dbcce57a06b.zip |
fix a typo which caused tx glitches
-rwxr-xr-x | usrp2/fpga/top/u2_core/u2_core.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/fpga/top/u2_core/u2_core.v b/usrp2/fpga/top/u2_core/u2_core.v index 918215093..e55783d0b 100755 --- a/usrp2/fpga/top/u2_core/u2_core.v +++ b/usrp2/fpga/top/u2_core/u2_core.v @@ -572,7 +572,7 @@ module u2_core (.clk(dsp_clk), .rst(dsp_rst), .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), .master_time(master_time),.underrun(underrun), - .rd_dat_i(rd1_dat), .rd_flags_i(rd_flags), .rd_ready_i(rd1_ready_o), .rd_ready_o(rd1_ready_i), + .rd_dat_i(rd1_dat), .rd_flags_i(rd1_flags), .rd_ready_i(rd1_ready_o), .rd_ready_o(rd1_ready_i), .sample(sample_tx), .run(run_tx), .strobe(strobe_tx), .fifo_occupied(dsp_tx_occ),.fifo_full(dsp_tx_full),.fifo_empty(dsp_tx_empty), .debug(debug_txc) ); |