Fixes the replotting update. It's now based on a QTimer so it's in the event buffer...
[debian/gnuradio] / gr-msdd6000 / src / msdd_rs.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004,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 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 %include "gnuradio.i"   // the common stuff
24
25 %{
26 #include "msdd_rs_source_simple.h"
27 %}
28
29
30 GR_SWIG_BLOCK_MAGIC(msdd_rs,source_simple)
31
32 msdd_rs_source_simple_sptr
33 msdd_rs_make_source_simple (
34         const char *src,
35         unsigned short port_src
36         );
37
38 class msdd_rs_source_simple : public gr_sync_block {
39   protected:
40     msdd_rs_source_simple(
41         const char *src,
42         unsigned short port_src
43         );
44  
45   public:
46     ~msdd_rs_source_c(); 
47   int work (int noutput_items,
48       gr_vector_const_void_star &input_items,
49       gr_vector_void_star &output_items);
50
51   bool start();
52   bool stop();
53
54   /* function starts the flow of data */
55   int start_data();
56
57   /* function stops the flow of data */
58   int stop_data();
59
60   long pull_adc_freq();
61   /* Request the current ddc sample rate */
62   float pull_ddc_samp_rate();
63   /* Request the current ddc bandwidth */
64   float pull_ddc_bw();
65   /* Request the current rx freq */
66   float pull_rx_freq();
67   /* Request current ddc gain */
68   int pull_ddc_gain();
69   /* Request current RF attenuation */
70   int pull_rf_atten();
71
72
73   /*  int decim_rate(); */
74   gr_vector_int gain_range();
75   gr_vector_float freq_range();
76
77   /* Set Functions */
78   /*  bool set_decim_rate(unsigned int); */
79   bool set_rx_freq(double); /* set_rx_freq(int,double); */
80   /*  bool set_pga(int,double); */
81
82   bool set_ddc_gain(double);
83   /* Set desired sample rate of MSDD6000 -- Note bounds checking is 
84   done by the module and it will return the value actually used in the hardware. */
85   bool set_ddc_samp_rate(double);
86   /* Set desired input BW of MSDD6000 -- Note bounds checking is 
87   // done by the module and it will return the value actually used in the hardware. */
88   bool set_ddc_bw(double);
89
90   bool set_rf_atten(double);
91
92
93   };