Imported Upstream version 3.0.4
[debian/gnuradio] / gnuradio-examples / python / usrp / test_digital_loopback_lfsr.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2004 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 """
24 Digital loopback (Tx to Rx) for the USRP Rev1.
25 """
26
27 from gnuradio import gr
28 from gnuradio import usrp
29
30
31 def build_graph ():
32     tx_interp =  32       # tx should be twice rx
33     rx_decim  =  16
34     
35     fg = gr.flow_graph ()
36
37     data_src = gr.lfsr_32k_source_s ()
38
39     # usrp_tx = usrp.sink_s (0, tx_interp, 1, 0x98)
40     usrp_tx = usrp.sink_s (0, tx_interp)
41
42     fg.connect (data_src, usrp_tx)
43
44     usrp_rx = usrp.source_s (0, rx_decim, 1, 0x32103210, usrp.FPGA_MODE_LOOPBACK)
45
46     sink = gr.check_lfsr_32k_s ()
47     fg.connect (usrp_rx, sink)
48
49     # file_sink = gr.file_sink (gr.sizeof_short, "loopback.dat")
50     # fg.connect (usrp_rx, file_sink)
51     
52     return fg
53     
54 def main ():
55     fg = build_graph ()
56     try:
57         fg.run()
58     except KeyboardInterrupt:
59         pass
60
61 if __name__ == '__main__':
62     main ()