diff options
author | jcorgan | 2007-11-03 00:59:40 +0000 |
---|---|---|
committer | jcorgan | 2007-11-03 00:59:40 +0000 |
commit | 6ae6d3f59baceee8be11ba3c1ae4b5ed5116aaa8 (patch) | |
tree | fd5e023bdfa3d41d579da6c175fda7a4fff5a933 /gnuradio-examples | |
parent | 6b1dcc7d74acf86d755de4668ad7b136ed3748be (diff) | |
download | gnuradio-6ae6d3f59baceee8be11ba3c1ae4b5ed5116aaa8.tar.gz gnuradio-6ae6d3f59baceee8be11ba3c1ae4b5ed5116aaa8.tar.bz2 gnuradio-6ae6d3f59baceee8be11ba3c1ae4b5ed5116aaa8.zip |
Merged r6794:6798 from jcorgan/t198. Fixes ticket:198.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6799 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-examples')
-rwxr-xr-x | gnuradio-examples/python/digital/tunnel.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnuradio-examples/python/digital/tunnel.py b/gnuradio-examples/python/digital/tunnel.py index 111ed0db4..09bcd75dd 100755 --- a/gnuradio-examples/python/digital/tunnel.py +++ b/gnuradio-examples/python/digital/tunnel.py @@ -94,7 +94,9 @@ class my_top_block(gr.top_block): gr.top_block.__init__(self) self.txpath = transmit_path(mod_class, options) self.rxpath = receive_path(demod_class, rx_callback, options) - + self.connect(self.txpath); + self.connect(self.rxpath); + def send_pkt(self, payload='', eof=False): return self.txpath.send_pkt(payload, eof) |