Convert gr-audio-portaudio to Boost via gruel
[debian/gnuradio] / usrp / limbo / inband / usrp_usb_interface.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2007,2008 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_USRP_USB_INTERFACE_H
22 #define INCLUDED_USRP_USB_INTERFACE_H
23
24 #include <mblock/mblock.h>
25 #include <vector>
26 #include "usrp_standard.h"
27
28 /*!
29  * \brief Implements the low level usb interface to the USRP
30  */
31 class usrp_usb_interface : public mb_mblock
32 {
33  public:
34
35   usrp_standard_tx_sptr d_utx;
36   usrp_standard_rx_sptr d_urx;
37
38   boost::shared_ptr<usrp_basic> d_ub_tx;
39   boost::shared_ptr<usrp_basic> d_ub_rx;
40   
41   mb_port_sptr  d_cs;
42   mb_port_sptr  d_rx_cs;
43   mb_port_sptr  d_tx_cs;
44   
45   long d_ntx_chan;
46   long d_nrx_chan;
47
48   bool d_fake_usrp;
49
50   bool d_rx_reading;
51
52   long d_interp_tx;
53   long d_decim_rx;
54
55   double d_rf_freq;
56
57   std::string d_rbf;
58
59  public:
60   usrp_usb_interface(mb_runtime *rt, const std::string &instance_name, pmt_t user_arg);
61   ~usrp_usb_interface();
62   void initial_transition();
63   void handle_message(mb_message_sptr msg);
64   usrp_subdev_spec pick_rx_subdevice();
65   usrp_subdev_spec pick_tx_subdevice();
66   usrp_subdev_spec pick_subdev(boost::shared_ptr<usrp_basic> d_usrp_basic, std::vector<int> candidates);
67
68  private:
69   void handle_cmd_open(pmt_t data);
70   void handle_cmd_close(pmt_t data);
71   void handle_cmd_write(pmt_t data);
72   void handle_cmd_start_reading(pmt_t data);
73   void handle_cmd_stop_reading(pmt_t data);
74  
75 };
76   
77
78 #endif /* INCLUDED_USRP_USB_INTERFACE_H */