Merged r11377:11390 from jcorgan/usrp-headers in to trunk.
[debian/gnuradio] / usrp / limbo / inband / usrp_tx_stub.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_TX_STUB_H
22 #define INCLUDED_USRP_TX_STUB_H
23
24 #include <mblock/mblock.h>
25 #include <vector>
26 #include "usrp_standard.h"
27 #include <fstream>
28 #include <usrp_inband_usb_packet.h>
29
30 typedef usrp_inband_usb_packet transport_pkt;
31
32 /*!
33  * \brief Implements the low level usb interface to the USRP
34  */
35 class usrp_tx_stub : public mb_mblock
36 {
37  public:
38
39   mb_port_sptr  d_cs;
40   usrp_standard_tx* d_utx;
41   
42   std::ofstream d_ofile;
43   std::ofstream d_cs_ofile;
44
45   bool d_disk_write;
46
47  public:
48   usrp_tx_stub(mb_runtime *rt, const std::string &instance_name, pmt_t user_arg);
49   ~usrp_tx_stub();
50   void initial_transition();
51   void handle_message(mb_message_sptr msg);
52
53  private:
54   void write(pmt_t data);
55   void parse_cs(pmt_t invocation_handle, transport_pkt pkt);
56  
57 };
58   
59
60 #endif /* INCLUDED_USRP_TX_STUB_H */
61