short id fix
[debian/gnuradio] / usrp / host / lib / inband / usrp_rx_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_RX_STUB_H
22 #define INCLUDED_USRP_RX_STUB_H
23
24 #include <mblock/mblock.h>
25 #include <vector>
26 #include "usrp_standard.h"
27 #include <ui_nco.h>
28 #include <fstream>
29 #include <queue>
30 #include <usrp_inband_usb_packet.h>
31
32 typedef usrp_inband_usb_packet transport_pkt;
33
34 extern bool usrp_rx_stop_stub;   // used to communicate a 'stop' to the RX stub
35 extern std::queue<pmt_t> d_cs_queue;
36
37 static pmt_t s_timeout = pmt_intern("%timeout");
38 static pmt_t s_done = pmt_intern("done");
39
40 /*!
41  * \brief Implements the low level usb interface to the USRP
42  */
43 class usrp_rx_stub : public mb_mblock
44 {
45  public:
46
47   mb_port_sptr  d_cs;
48   usrp_standard_rx* d_urx;
49   
50   long          d_samples_per_frame;
51   long    d_decim_rx;
52
53   mb_time d_t0;
54   double d_delta_t;
55   
56   // for generating sine wave output
57   ui_nco<float,float>   d_nco;
58   double                d_amplitude;
59
60   bool d_disk_write;
61
62   std::ofstream d_ofile;
63   
64  public:
65   usrp_rx_stub(mb_runtime *rt, const std::string &instance_name, pmt_t user_arg);
66   ~usrp_rx_stub();
67   void initial_transition();
68   void handle_message(mb_message_sptr msg);
69
70  private:
71   void read_and_respond();
72   void read_data();
73   void start_packet_timer();
74  
75 };
76   
77
78 #endif /* INCLUDED_USRP_RX_H */
79