Applied patch to cleanup msdd
[debian/gnuradio] / gr-msdd6000 / src / msdd_source_simple.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 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 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
24
25 #include <msdd_source_simple.h>
26 #include <gr_io_signature.h>
27 #include <string.h>
28
29
30 msdd_source_simple_sptr
31 msdd_make_source_simple ( const char *src, unsigned short port_src) 
32 {
33   return msdd_source_simple_sptr (new msdd_source_simple ( src, port_src)); 
34 }
35
36
37 msdd_source_simple::msdd_source_simple (
38                     const char *src, 
39                     unsigned short port_src) 
40                 : gr_sync_block("MSDD_SOURCE_SIMPLE",
41                                 gr_make_io_signature (0,0,0),
42                                 gr_make_io_signature (1, 1, sizeof (short))),
43                   rcv(new MSDD6000((char*) src)), d_lastseq(0), d_firstrun(true)
44 {
45     set_output_multiple(MSDD_COMPLEX_SAMPLES_PER_PACKET*2);
46 }
47
48 msdd_source_simple::~msdd_source_simple ()
49 {
50 }
51
52
53 int
54 msdd_source_simple::work (int noutput_items,
55                          gr_vector_const_void_star &input_items,
56                          gr_vector_void_star &output_items)
57 {
58         
59 #define BUF_LEN        (MSDD_COMPLEX_SAMPLES_PER_PACKET*sizeof(short)*2 + 6)
60
61         float* out1 =(float*) output_items[0];
62
63     for(int i=0; i<floor(noutput_items*1.0/(2*MSDD_COMPLEX_SAMPLES_PER_PACKET));i++){
64             char buffer[BUF_LEN];
65             rcv->read( &buffer[0], BUF_LEN );
66
67             int seq = *((int*) &buffer[2]);
68
69             if(d_lastseq == -MSDD_COMPLEX_SAMPLES_PER_PACKET){
70                     // not started case
71                     if(seq == 0){
72                             d_lastseq = 0;
73                             } else {
74                             // THROW AWAY SAMPLES WE ARE NOT STARTED YET!
75                             return 0;
76                             }
77
78                     } else {
79                     // started case
80                     int samples_missed = seq - d_lastseq - MSDD_COMPLEX_SAMPLES_PER_PACKET;
81                     if(samples_missed > 0){
82                 if(d_firstrun == true){
83                     // we may have missed some initial samples off the beginning of
84                     // a stream but there are no drop outs in the middle of what we have
85                     } else {
86                                 printf("dropped %d samples.\n", samples_missed);
87                     }
88                             }
89                     d_lastseq = seq;
90                     }
91
92             int out_idx = i*MSDD_COMPLEX_SAMPLES_PER_PACKET*2;
93             memcpy(&out1[out_idx], &buffer[6], BUF_LEN - 6);
94             d_firstrun = false;
95         }
96
97     return noutput_items;
98
99 }
100
101 bool msdd_source_simple::set_decim_rate(unsigned int rate)
102 {
103     rcv->set_decim((int) floor(log2(rate)));
104         return true;
105 }
106
107
108 bool msdd_source_simple::set_rx_freq(int channel, double freq)
109 {
110         long new_fc = (long)freq;
111         rcv->set_fc( new_fc/1000000, new_fc%1000000);
112         return true;
113 }
114
115
116 bool msdd_source_simple::set_pga(int which, double gain)
117 {
118         if(gain < 0 || gain > 10){
119                 printf("GAIN IS OUTSIDE ACCEPTABLE RANGE!\n");
120                 return false;
121         }
122         // ok i lied this is not really a pga, its decimation gain
123         rcv->set_ddc_gain((int)gain);
124         return true;
125 }
126
127
128 bool msdd_source_simple::start()
129 {
130         rcv->start();
131         return true;
132 }
133
134
135 bool msdd_source_simple::stop()
136 {
137         rcv->stop();
138         return true;
139 }
140
141 long msdd_source_simple::adc_freq(){
142         return 102400000;
143 }
144
145 int msdd_source_simple::decim_rate(){
146         return 1 << rcv->d_decim;
147 }
148
149
150 std::vector<int> msdd_source_simple::gain_range(){
151         static std::vector<int> r;
152         r.push_back(0);
153         r.push_back(12);
154         return r;
155 }
156
157 std::vector<float> msdd_source_simple::freq_range(){
158         std::vector<float> r;
159         r.push_back(30.0*1000*1000);
160         r.push_back(6.0*1000*1000*1000);
161         return r;
162 }