Imported Upstream version 3.2.2
[debian/gnuradio] / usrp2 / host / include / usrp2 / mimo_config.h
1 /* -*- c -*- */
2 /*
3  * Copyright 2008,2009 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio 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 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio 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 along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 #ifndef INCLUDED_USRP2_MIMO_CONFIG_H
22 #define INCLUDED_USRP2_MIMO_CONFIG_H
23
24 // FIXME: This duplicates the firmware usrp2_mimo_config.h file
25
26 namespace usrp2 {
27
28   static const int _MC_WE_LOCK          = 0x0001;
29   static const int _MC_MIMO_CLK_INPUT   = 0x0002;               // else SMA input
30   
31   /*
32    * Derived masks (use these):
33    *
34    * We get our input from 1 of three places:
35    *  Our free running oscilator, our SMA connector, or from the MIMO connector
36    */
37   static const int MC_WE_DONT_LOCK      = 0x0000;
38   static const int MC_WE_LOCK_TO_SMA    = (_MC_WE_LOCK | 0);
39   static const int MC_WE_LOCK_TO_MIMO   = (_MC_WE_LOCK | _MC_MIMO_CLK_INPUT);
40   
41   /*
42    * Independent of the source of the clock, we may or may not drive our
43    * clock onto the mimo connector.  Note that there are dedicated clock
44    * signals in each direction, so disaster doesn't occurs if we're
45    * unnecessarily providing clock.
46    */
47   static const int MC_PROVIDE_CLK_TO_MIMO = 0x0004;
48 }
49
50 #endif /* INCLUDED_USRP2_MIMO_CONFIG_H */