Updated license from GPL version 2 or later to GPL version 3 or later.
[debian/gnuradio] / gnuradio-examples / python / digital_voice / cvsd_test.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2007 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 from gnuradio import gr, blks
24 from gnuradio import audio
25 from gnuradio.eng_option import eng_option
26 from optparse import OptionParser
27
28 def main():
29     parser = OptionParser(option_class=eng_option)
30     parser.add_option("-I", "--audio-input", type="string", default="",
31                       help="pcm input device name.  E.g., hw:0,0 or /dev/dsp")
32     parser.add_option("-O", "--audio-output", type="string", default="",
33                       help="pcm output device name.  E.g., hw:0,0 or /dev/dsp")
34     parser.add_option("-r", "--sample-rate", type="eng_float", default="32000",
35                       help="Audio sampling rate [defaul=%default]")
36     parser.add_option("-S", "--resample-rate", type="int", default="8",
37                       help="Resampling rate in CVSD [default=%default]")
38     (options, args) = parser.parse_args ()
39
40     if len(args) != 0:
41         parser.print_help()
42         raise SystemExit, 1
43
44     fg = gr.flow_graph()
45
46     src = audio.source(int(options.sample_rate), options.audio_input)
47     tx = blks.cvsd_encode(fg, options.resample_rate)
48
49     # todo: add noise
50
51     rx = blks.cvsd_decode(fg, options.resample_rate)
52     dst = audio.sink(int(options.sample_rate), options.audio_output)
53     
54     fg.connect(src, tx, rx, dst)    
55     
56     fg.start()
57
58     raw_input ('Press Enter to exit: ')
59     fg.stop()
60
61
62 if __name__ == '__main__':
63     try:
64         main()
65     except KeyboardInterrupt:
66         pass
67