Updated license from GPL version 2 or later to GPL version 3 or later.
[debian/gnuradio] / gnuradio-core / src / python / gnuradio / blksimpl2 / gmsk.py
1 #
2 # GMSK modulation and demodulation.  
3 #
4 #
5 # Copyright 2005,2006,2007 Free Software Foundation, Inc.
6
7 # This file is part of GNU Radio
8
9 # GNU Radio is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3, or (at your option)
12 # any later version.
13
14 # GNU Radio is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18
19 # You should have received a copy of the GNU General Public License
20 # along with GNU Radio; see the file COPYING.  If not, write to
21 # the Free Software Foundation, Inc., 51 Franklin Street,
22 # Boston, MA 02110-1301, USA.
23
24
25 # See gnuradio-examples/python/digital for examples
26
27 from gnuradio import gr
28 from gnuradio import modulation_utils
29 from math import pi
30 import numpy
31 from pprint import pprint
32 import inspect
33
34 # default values (used in __init__ and add_options)
35 _def_samples_per_symbol = 2
36 _def_bt = 0.35
37 _def_verbose = False
38 _def_log = False
39
40 _def_gain_mu = 0.05
41 _def_mu = 0.5
42 _def_freq_error = 0.0
43 _def_omega_relative_limit = 0.005
44
45
46 # /////////////////////////////////////////////////////////////////////////////
47 #                              GMSK modulator
48 # /////////////////////////////////////////////////////////////////////////////
49
50 class gmsk_mod(gr.hier_block2):
51
52     def __init__(self,
53                  samples_per_symbol=_def_samples_per_symbol,
54                  bt=_def_bt,
55                  verbose=_def_verbose,
56                  log=_def_log):
57         """
58         Hierarchical block for Gaussian Minimum Shift Key (GMSK)
59         modulation.
60
61         The input is a byte stream (unsigned char) and the
62         output is the complex modulated signal at baseband.
63
64         @param samples_per_symbol: samples per baud >= 2
65         @type samples_per_symbol: integer
66         @param bt: Gaussian filter bandwidth * symbol time
67         @type bt: float
68         @param verbose: Print information about modulator?
69         @type verbose: bool
70         @param debug: Print modualtion data to files?
71         @type debug: bool       
72         """
73
74         gr.hier_block2.__init__(self, "gmsk_mod",
75                                 gr.io_signature(1,1,gr.sizeof_char),       # Input signature
76                                 gr.io_signature(1,1,gr.sizeof_gr_complex)) # Output signature
77
78         self._samples_per_symbol = samples_per_symbol
79         self._bt = bt
80
81         if not isinstance(samples_per_symbol, int) or samples_per_symbol < 2:
82             raise TypeError, ("samples_per_symbol must be an integer >= 2, is %r" % (samples_per_symbol,))
83
84         ntaps = 4 * samples_per_symbol                  # up to 3 bits in filter at once
85         sensitivity = (pi / 2) / samples_per_symbol     # phase change per bit = pi / 2
86
87         # Turn it into NRZ data.
88         self.nrz = gr.bytes_to_syms()
89
90         # Form Gaussian filter
91         # Generate Gaussian response (Needs to be convolved with window below).
92         self.gaussian_taps = gr.firdes.gaussian(
93                 1,                     # gain
94                 samples_per_symbol,    # symbol_rate
95                 bt,                    # bandwidth * symbol time
96                 ntaps                  # number of taps
97                 )
98
99         self.sqwave = (1,) * samples_per_symbol       # rectangular window
100         self.taps = numpy.convolve(numpy.array(self.gaussian_taps),numpy.array(self.sqwave))
101         self.gaussian_filter = gr.interp_fir_filter_fff(samples_per_symbol, self.taps)
102
103         # FM modulation
104         self.fmmod = gr.frequency_modulator_fc(sensitivity)
105                 
106         # Connect components
107         self.connect(self, self.nrz, self.gaussian_filter, self.fmmod, self)
108
109         if verbose:
110             self._print_verbage()
111          
112         if log:
113             self._setup_logging()
114
115     def samples_per_symbol(self):
116         return self._samples_per_symbol
117
118     def bits_per_symbol(self=None):     # staticmethod that's also callable on an instance
119         return 1
120     bits_per_symbol = staticmethod(bits_per_symbol)      # make it a static method.
121
122
123     def _print_verbage(self):
124         print "bits per symbol = %d" % self.bits_per_symbol()
125         print "Gaussian filter bt = %.2f" % self._bt
126
127
128     def _setup_logging(self):
129         print "Modulation logging turned on."
130         self.connect(self.nrz, gr.file_sink(gr.sizeof_float, "tx_nrz.dat"))
131         self.connect(self.gaussian_filter, gr.file_sink(gr.sizeof_float, "tx_gaussian_filter.dat"))
132         self.connect(self.fmmod, gr.file_sink(gr.sizeof_gr_complex, "tx_fmmod.dat"))
133
134     def add_options(parser):
135         """
136         Adds GMSK modulation-specific options to the standard parser
137         """
138         parser.add_option("", "--bt", type="float", default=_def_bt,
139                           help="set bandwidth-time product [default=%default] (GMSK)")
140     add_options=staticmethod(add_options)
141
142
143     def extract_kwargs_from_options(options):
144         """
145         Given command line options, create dictionary suitable for passing to __init__
146         """
147         return modulation_utils.extract_kwargs_from_options(gmsk_mod.__init__,
148                                                             ('self', 'fg'), options)
149     extract_kwargs_from_options=staticmethod(extract_kwargs_from_options)
150
151
152
153 # /////////////////////////////////////////////////////////////////////////////
154 #                            GMSK demodulator
155 # /////////////////////////////////////////////////////////////////////////////
156
157 class gmsk_demod(gr.hier_block2):
158
159     def __init__(self,
160                  samples_per_symbol=_def_samples_per_symbol,
161                  gain_mu=_def_gain_mu,
162                  mu=_def_mu,
163                  omega_relative_limit=_def_omega_relative_limit,
164                  freq_error=_def_freq_error,
165                  verbose=_def_verbose,
166                  log=_def_log):
167         """
168         Hierarchical block for Gaussian Minimum Shift Key (GMSK)
169         demodulation.
170
171         The input is the complex modulated signal at baseband.
172         The output is a stream of bits packed 1 bit per byte (the LSB)
173
174         @param samples_per_symbol: samples per baud
175         @type samples_per_symbol: integer
176         @param verbose: Print information about modulator?
177         @type verbose: bool
178         @param log: Print modualtion data to files?
179         @type log: bool 
180
181         Clock recovery parameters.  These all have reasonble defaults.
182         
183         @param gain_mu: controls rate of mu adjustment
184         @type gain_mu: float
185         @param mu: fractional delay [0.0, 1.0]
186         @type mu: float
187         @param omega_relative_limit: sets max variation in omega
188         @type omega_relative_limit: float, typically 0.000200 (200 ppm)
189         @param freq_error: bit rate error as a fraction
190         @param float
191         """
192
193         gr.hier_block2.__init__(self, "gmsk_demod",
194                                 gr.io_signature(1,1,gr.sizeof_gr_complex), # Input signature
195                                 gr.io_signature(1,1,gr.sizeof_char))       # Output signature
196
197         self._samples_per_symbol = samples_per_symbol
198         self._gain_mu = gain_mu
199         self._mu = mu
200         self._omega_relative_limit = omega_relative_limit
201         self._freq_error = freq_error
202         
203         if samples_per_symbol < 2:
204             raise TypeError, "samples_per_symbol >= 2, is %f" % samples_per_symbol
205
206         self._omega = samples_per_symbol*(1+self._freq_error)
207
208         self._gain_omega = .25 * self._gain_mu * self._gain_mu        # critically damped
209
210         # Demodulate FM
211         sensitivity = (pi / 2) / samples_per_symbol
212         self.fmdemod = gr.quadrature_demod_cf(1.0 / sensitivity)
213
214         # the clock recovery block tracks the symbol clock and resamples as needed.
215         # the output of the block is a stream of soft symbols (float)
216         self.clock_recovery = gr.clock_recovery_mm_ff(self._omega, self._gain_omega,
217                                                       self._mu, self._gain_mu,
218                                                       self._omega_relative_limit)
219
220         # slice the floats at 0, outputting 1 bit (the LSB of the output byte) per sample
221         self.slicer = gr.binary_slicer_fb()
222
223         # Connect components
224         self.connect(self, self.fmdemod, self.clock_recovery, self.slicer, self)
225
226         if verbose:
227             self._print_verbage()
228          
229         if log:
230             self._setup_logging()
231
232     def samples_per_symbol(self):
233         return self._samples_per_symbol
234
235     def bits_per_symbol(self=None):   # staticmethod that's also callable on an instance
236         return 1
237     bits_per_symbol = staticmethod(bits_per_symbol)      # make it a static method.
238
239     def _print_verbage(self):
240         print "bits per symbol = %d" % self.bits_per_symbol()
241         print "M&M clock recovery omega = %f" % self._omega
242         print "M&M clock recovery gain mu = %f" % self._gain_mu
243         print "M&M clock recovery mu = %f" % self._mu
244         print "M&M clock recovery omega rel. limit = %f" % self._omega_relative_limit
245         print "frequency error = %f" % self._freq_error
246
247
248     def _setup_logging(self):
249         print "Demodulation logging turned on."
250         self.connect(self.fmdemod, gr.file_sink(gr.sizeof_float, "rx_fmdemod.dat"))
251         self.connect(self.clock_recovery, gr.file_sink(gr.sizeof_float, "rx_clock_recovery.dat"))
252         self.connect(self.slicer, gr.file_sink(gr.sizeof_char, "rx_slicer.dat"))
253
254     def add_options(parser):
255         """
256         Adds GMSK demodulation-specific options to the standard parser
257         """
258         parser.add_option("", "--gain-mu", type="float", default=_def_gain_mu,
259                           help="M&M clock recovery gain mu [default=%default] (GMSK/PSK)")
260         parser.add_option("", "--mu", type="float", default=_def_mu,
261                           help="M&M clock recovery mu [default=%default] (GMSK/PSK)")
262         parser.add_option("", "--omega-relative-limit", type="float", default=_def_omega_relative_limit,
263                           help="M&M clock recovery omega relative limit [default=%default] (GMSK/PSK)")
264         parser.add_option("", "--freq-error", type="float", default=_def_freq_error,
265                           help="M&M clock recovery frequency error [default=%default] (GMSK)")
266     add_options=staticmethod(add_options)
267
268     def extract_kwargs_from_options(options):
269         """
270         Given command line options, create dictionary suitable for passing to __init__
271         """
272         return modulation_utils.extract_kwargs_from_options(gmsk_demod.__init__,
273                                                             ('self', 'fg'), options)
274     extract_kwargs_from_options=staticmethod(extract_kwargs_from_options)
275
276
277 #
278 # Add these to the mod/demod registry
279 #
280 modulation_utils.add_type_1_mod('gmsk', gmsk_mod)
281 modulation_utils.add_type_1_demod('gmsk', gmsk_demod)