New standalone firmware, burn_dbsrx_eeprom, that burns new dbid into
[debian/gnuradio] / gr-usrp / src / usrp_sink_c.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004 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
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
23 #ifndef INCLUDED_USRP_SINK_C_H
24 #define INCLUDED_USRP_SINK_C_H
25
26 #include <usrp_sink_base.h>
27
28 class usrp_sink_c;
29 typedef boost::shared_ptr<usrp_sink_c> usrp_sink_c_sptr;
30
31
32 // public shared_ptr constructor
33
34 usrp_sink_c_sptr
35 usrp_make_sink_c (int which_board=0,
36                   unsigned int interp_rate=32,
37                   int nchan=1,
38                   int mux=-1,
39                   int fusb_block_size=0,
40                   int fusb_nblocks=0,
41                   const std::string fpga_filename="",
42                   const std::string firmware_filename=""
43                   ) throw (std::runtime_error);
44
45
46 /*!
47  * \brief interface to Universal Software Radio Peripheral Tx path (Rev 1)
48  *
49  * input: gr_complex
50  */
51 class usrp_sink_c : public usrp_sink_base {
52  private:
53
54   friend usrp_sink_c_sptr
55   usrp_make_sink_c (int which_board,
56                      unsigned int interp_rate,
57                      int nchan,
58                      int mux,
59                      int fusb_block_size,
60                      int fusb_nblocks,
61                      const std::string fpga_filename,
62                      const std::string firmware_filename
63                      ) throw (std::runtime_error);
64
65  protected:
66   usrp_sink_c (int which_board,
67                 unsigned int interp_rate,
68                 int nchan,
69                 int mux,
70                 int fusb_block_size,
71                 int fusb_nblocks,
72                 const std::string fpga_filename,
73                 const std::string firmware_filename
74                 ) throw (std::runtime_error);
75
76   virtual void copy_to_usrp_buffer (gr_vector_const_void_star &input_items,
77                                     int  input_index,
78                                     int  input_items_available,
79                                     int  &input_items_consumed,
80                                     void *usrp_buffer,
81                                     int  usrp_buffer_length,
82                                     int  &bytes_written);
83  public:
84   ~usrp_sink_c ();
85 };
86
87 #endif /* INCLUDED_USRP_SINK_C_H */