Merge commit 'v3.3.0' into upstream
[debian/gnuradio] / gr-atsc / src / python / btl-fsd.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2004,2005,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., 59 Temple Place - Suite 330,
20 # Boston, MA 02111-1307, USA.
21
22
23 from gnuradio import gr
24 from gnuradio import atsc
25 import os
26
27 print os.getpid()
28
29 tb = gr.top_block()
30
31 btl = atsc.bit_timing_loop()
32 fsc = atsc.fs_checker()
33 eq = atsc.equalizer()
34 fsd = atsc.field_sync_demux()
35
36 out_data = gr.file_sink(atsc.sizeof_atsc_soft_data_segment,"/tmp/atsc_pipe_5")
37
38 inp = gr.file_source(gr.sizeof_float,"/tmp/atsc_pipe_3")
39
40 tb.connect(inp,btl)
41 tb.connect((btl,0),(fsc,0),(eq,0),(fsd,0))
42 tb.connect((btl,1),(fsc,1),(eq,1),(fsd,1))
43 tb.connect(fsd,out_data)
44
45 tb.run()
46
47