1// -*- verilog -*-
2//
3//  USRP - Universal Software Radio Peripheral
4//
5//  Copyright (C) 2006,2007 Matt Ettus
6//  Copyright (C) 2006 Martin Dudok van Heel
7//
8//  This program is free software; you can redistribute it and/or modify
9//  it under the terms of the GNU General Public License as published by
10//  the Free Software Foundation; either version 2 of the License, or
11//  (at your option) any later version.
12//
13//  This program is distributed in the hope that it will be useful,
14//  but WITHOUT ANY WARRANTY; without even the implied warranty of
15//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16//  GNU General Public License for more details.
17//
18//  You should have received a copy of the GNU General Public License
19//  along with this program; if not, write to the Free Software
20//  Foundation, Inc., 51 Franklin Street, Boston, MA  02110-1301  USA
21//
22
23// ====================================================================
24//            User control over what parts get included
25//
26//                  >>>> EDIT ONLY THIS SECTION <<<<
27//                  Uncomment only ONE configuration
28// ====================================================================
29
30// ====================================================================
31// FIXME drive configuration selection from the command line and/or gui
32// ====================================================================
33
34`define MULTI_ON		// enable multi usrp configuration
35
36// Uncomment this for 1 rx channel (w/ halfband) & 1 transmit channel
37//`include "../include/common_config_1rxhb_1tx.vh"
38
39// Uncomment this for multi with 2 rx channels (w/ halfband) & 2 transmit channels
40`include "../include/common_config_2rxhb_2tx.vh"
41
42// Uncomment this for multi with 4 rx channels (w/o halfband) & 0 transmit channels
43//`include "../include/common_config_4rx_0tx.vh"
44
45// Uncomment this for multi with 2 rx channels (w/ halfband) & 0 transmit channels
46//`include "../include/common_config_2rxhb_0tx.vh"
47
48// Uncomment this for multi with 2 rx channels (w/o halfband) & 0 transmit channels
49//`include "../include/common_config_2rx_0tx.vh"
50
51
52// Add other "known to fit" configurations here...
53
54// ====================================================================
55//  Now include the common footer
56// ====================================================================
57
58`ifdef MULTI_ON
59  `define COUNTER_32BIT_ON
60`endif
61
62`include "../include/common_config_bottom.vh"
63