Changeset 6799

Show
Ignore:
Timestamp:
11/02/07 18:59:40
Author:
jcorgan
Message:

Merged r6794:6798 from jcorgan/t198. Fixes ticket:198.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gnuradio/trunk/gnuradio-examples/python/digital/tunnel.py

    r6466 r6799  
    9595        self.txpath = transmit_path(mod_class, options) 
    9696        self.rxpath = receive_path(demod_class, rx_callback, options) 
    97  
     97        self.connect(self.txpath); 
     98        self.connect(self.rxpath); 
     99         
    98100    def send_pkt(self, payload='', eof=False): 
    99101        return self.txpath.send_pkt(payload, eof)