aboutsummaryrefslogtreecommitdiffstats
path: root/fpga/usrp2/sdr_lib/dummy_rx.v
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2014-10-07 11:25:20 +0200
committerMartin Braun <martin.braun@ettus.com>2014-10-07 11:25:20 +0200
commitfd3e84941de463fa1a7ebab0a69515b4bf2614cd (patch)
tree3fa721a13d41d2c0451d663a59a220a38fd5e614 /fpga/usrp2/sdr_lib/dummy_rx.v
parent3b66804e41891e358c790b453a7a59ec7462dba4 (diff)
downloaduhd-fd3e84941de463fa1a7ebab0a69515b4bf2614cd.tar.gz
uhd-fd3e84941de463fa1a7ebab0a69515b4bf2614cd.tar.bz2
uhd-fd3e84941de463fa1a7ebab0a69515b4bf2614cd.zip
Removed copy of FPGA source files.
Diffstat (limited to 'fpga/usrp2/sdr_lib/dummy_rx.v')
-rw-r--r--fpga/usrp2/sdr_lib/dummy_rx.v79
1 files changed, 0 insertions, 79 deletions
diff --git a/fpga/usrp2/sdr_lib/dummy_rx.v b/fpga/usrp2/sdr_lib/dummy_rx.v
deleted file mode 100644
index 42bbe36b2..000000000
--- a/fpga/usrp2/sdr_lib/dummy_rx.v
+++ /dev/null
@@ -1,79 +0,0 @@
-//
-// Copyright 2011 Ettus Research LLC
-//
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see <http://www.gnu.org/licenses/>.
-//
-
-
-`define DSP_CORE_RX_BASE 160
-module dummy_rx
- (input clk, input rst,
- input set_stb, input [7:0] set_addr, input [31:0] set_data,
-
- input [13:0] adc_a, input adc_ovf_a,
- input [13:0] adc_b, input adc_ovf_b,
-
- output [31:0] sample,
- input run,
- output strobe
- );
-
- wire [15:0] scale_i, scale_q;
- wire [31:0] phase_inc;
- reg [31:0] phase;
-
- wire [23:0] i_decim, q_decim;
- wire [7:0] decim_rate;
-
- setting_reg #(.my_addr(`DSP_CORE_RX_BASE+0)) sr_0
- (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr),
- .in(set_data),.out(phase_inc),.changed());
-
- setting_reg #(.my_addr(`DSP_CORE_RX_BASE+1)) sr_1
- (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr),
- .in(set_data),.out({scale_i,scale_q}),.changed());
-
- setting_reg #(.my_addr(`DSP_CORE_RX_BASE+2)) sr_2
- (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr),
- .in(set_data),.out(decim_rate),.changed());
-
- strobe_gen strobe_gen(.clock(clk),.reset(rst),.enable(run),.rate(decim_rate),
- .strobe_in(1),.strobe(strobe) );
-
- reg [15:0] i_out, q_out;
- assign sample = {i_out,q_out};
-
- always @(posedge clk)
- if(rst)
- i_out <= 0;
- else if(~run)
- i_out <= 0;
- else if(strobe)
- i_out <= i_out + 1;
-
- reg run_d1;
- always @(posedge clk)
- if(rst)
- run_d1 <= 0;
- else
- run_d1 <= run;
-
- always @(posedge clk)
- if(rst)
- q_out <= 0;
- else if (run & ~run_d1)
- q_out <= q_out + 1;
-
-
-endmodule // ddc_chain