Imported Upstream version 3.2.2
[debian/gnuradio] / usrp / host / lib / legacy / db_xcvr2450.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 asversion 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
18 // along with GNU Radio; see the file COPYING.  If not, write to
19 // the Free Software Foundation, Inc., 51 Franklin Street,
20 // Boston, MA 02110-1301, USA.
21
22 #ifndef DB_XCVR2450_H
23 #define DB_XCVR2450_H
24
25 #include <db_base.h>
26 #include <boost/shared_ptr.hpp>
27
28 class xcvr2450;
29 typedef boost::shared_ptr<xcvr2450> xcvr2450_sptr;
30
31
32 /******************************************************************************/
33
34
35 class db_xcvr2450_base: public db_base
36 {
37   /*
38    * Abstract base class for all xcvr2450 boards.
39    * 
40    * Derive board specific subclasses from db_xcvr2450_base_{tx,rx}
41    */
42 public:
43   db_xcvr2450_base(usrp_basic_sptr usrp, int which);
44   ~db_xcvr2450_base();
45   struct freq_result_t set_freq(double target_freq);
46   bool is_quadrature();
47   double freq_min();
48   double freq_max();
49
50 protected:
51   xcvr2450_sptr d_xcvr;
52   void shutdown_common();
53 };
54
55
56 /******************************************************************************/
57
58
59 class db_xcvr2450_tx : public db_xcvr2450_base
60 {
61 protected:
62   void shutdown();
63
64 public:
65   db_xcvr2450_tx(usrp_basic_sptr usrp, int which);
66   ~db_xcvr2450_tx();
67
68   float gain_min();
69   float gain_max();
70   float gain_db_per_step();
71   bool  set_gain(float gain);
72   bool  i_and_q_swapped();
73 };
74
75 class db_xcvr2450_rx : public db_xcvr2450_base
76 {
77 protected:
78   void shutdown();
79
80 public:
81   db_xcvr2450_rx(usrp_basic_sptr usrp, int which);
82   ~db_xcvr2450_rx();
83
84   float gain_min();
85   float gain_max();
86   float gain_db_per_step();
87   bool  set_gain(float gain);
88 };
89
90
91
92 #endif