diff options
author | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2007-03-03 03:50:06 +0000 |
---|---|---|
committer | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2007-03-03 03:50:06 +0000 |
commit | 2a732b0122279fc795203e176c430d6f9974c66d (patch) | |
tree | 6fe07568356669c80fb44332e3315c62027ad4ae /toplevel/usrp_std/usrp_std_config_1rxhb_1tx.vh | |
parent | 78ba89f589ac3a1e53e2767edd8811d231e13946 (diff) | |
download | uhd-2a732b0122279fc795203e176c430d6f9974c66d.tar.gz uhd-2a732b0122279fc795203e176c430d6f9974c66d.tar.bz2 uhd-2a732b0122279fc795203e176c430d6f9974c66d.zip |
Add new standard configuration for 1 RX w/ half-band, 1 TX
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@4695 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'toplevel/usrp_std/usrp_std_config_1rxhb_1tx.vh')
-rw-r--r-- | toplevel/usrp_std/usrp_std_config_1rxhb_1tx.vh | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/toplevel/usrp_std/usrp_std_config_1rxhb_1tx.vh b/toplevel/usrp_std/usrp_std_config_1rxhb_1tx.vh new file mode 100644 index 000000000..e0291924b --- /dev/null +++ b/toplevel/usrp_std/usrp_std_config_1rxhb_1tx.vh @@ -0,0 +1,61 @@ +// -*- verilog -*- +// +// USRP - Universal Software Radio Peripheral +// +// Copyright (C) 2006 Matt Ettus +// +// 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 2 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, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Boston, MA 02110-1301 USA +// + +// ------------------------------------------------------------ +// If TX_ON is not defined, there is *no* transmit circuitry built + `define TX_ON + +// ------------------------------------------------------------ +// Define 1 and only one of TX_SINGLE, TX_DUAL and TX_QUAD +// to respectively enable 1, 2 or 4 transmit channels. +// [Please note that only TX_DUAL is currently valid] + `define TX_SINGLE +//`define TX_DUAL +//`define TX_QUAD + +// ------------------------------------------------------------ +// Define TX_HB_ON to enable the transmit halfband filter +// [Not implemented] +//`define TX_HB_ON + +// ------------------------------------------------------------ +// IF RX_ON is not defined, there is *no* transmit circuitry built + `define RX_ON + +// ------------------------------------------------------------ +// Define 1 and only one of RX_SINGLE, RX_DUAL and RX_QUAD +// to respectively define 1, 2 or 4 receive channels. + + `define RX_SINGLE +//`define RX_DUAL +//`define RX_QUAD + +// ------------------------------------------------------------ +// Define RX_HB_ON to enable the receive halfband filter + `define RX_HB_ON + +// ------------------------------------------------------------ +// Define RX_NCO_ON to enable the receive Numerical Controlled Osc + `define RX_NCO_ON + +// ------------------------------------------------------------ +// Define RX_CIC_ON to enable the receive Cascaded Integrator Comb filter + `define RX_CIC_ON
\ No newline at end of file |