summaryrefslogtreecommitdiff
path: root/usrp2/fpga/top/u2_core
diff options
context:
space:
mode:
authormatt2009-02-26 04:27:08 +0000
committermatt2009-02-26 04:27:08 +0000
commit877bb0fb32b188f0eb7a697ace229d04653eff58 (patch)
treece9e0ae395918c5f0b1ac8ced262b3a8114eb2bd /usrp2/fpga/top/u2_core
parent436f3744f211b396b68fd58699063047899b7281 (diff)
downloadgnuradio-877bb0fb32b188f0eb7a697ace229d04653eff58.tar.gz
gnuradio-877bb0fb32b188f0eb7a697ace229d04653eff58.tar.bz2
gnuradio-877bb0fb32b188f0eb7a697ace229d04653eff58.zip
remove support for unmodified dbsrx because there is way too much phase noise. only modified dbsrx are supported
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10521 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp2/fpga/top/u2_core')
-rwxr-xr-xusrp2/fpga/top/u2_core/u2_core.v10
1 files changed, 1 insertions, 9 deletions
diff --git a/usrp2/fpga/top/u2_core/u2_core.v b/usrp2/fpga/top/u2_core/u2_core.v
index 4fd5f6a6b..90bfb7479 100755
--- a/usrp2/fpga/top/u2_core/u2_core.v
+++ b/usrp2/fpga/top/u2_core/u2_core.v
@@ -375,18 +375,10 @@ module u2_core
assign s3_rty = 1'b0;
// GPIOs -- Slave #4
- reg [4:0] dbsrx_ctr;
- reg dbsrx_clk;
- always @(posedge dsp_clk)
- if(dsp_rst) dbsrx_ctr <= 0;
- else if(dbsrx_ctr == 24) dbsrx_ctr <= 0;
- else dbsrx_ctr <= dbsrx_ctr + 1;
- always @(posedge dsp_clk) dbsrx_clk <= (dbsrx_ctr == 24);
-
nsgpio nsgpio(.clk_i(wb_clk),.rst_i(wb_rst),
.cyc_i(s4_cyc),.stb_i(s4_stb),.adr_i(s4_adr[3:0]),.we_i(s4_we),
.dat_i(s4_dat_o),.dat_o(s4_dat_i),.ack_o(s4_ack),
- .atr(atr_lines),.debug_0(debug_gpio_0),.debug_1({debug_gpio_1[31:1],dbsrx_clk}),
+ .atr(atr_lines),.debug_0(debug_gpio_0),.debug_1(debug_gpio_1),
.gpio( {io_tx,io_rx} ) );
assign s4_err = 1'b0;
assign s4_rty = 1'b0;