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