diff options
author | jcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-07-10 00:36:36 +0000 |
---|---|---|
committer | jcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-07-10 00:36:36 +0000 |
commit | e921d54419e95c097cdecf21a2de7c393eb75f18 (patch) | |
tree | ab76982d0212a032efd04cd48e43aa87bbfddcb6 /gnuradio-examples/python/digital/tx_voice.py | |
parent | e573f752e6d9366a2629789a7158cce645a44235 (diff) |
Merged r11401:11405 from jblum/digital into trunk. Restores tunnel.py, rx_voice.py, and tx_voice.py operation after transmit/receive path refactoring.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11406 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-examples/python/digital/tx_voice.py')
-rwxr-xr-x | gnuradio-examples/python/digital/tx_voice.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnuradio-examples/python/digital/tx_voice.py b/gnuradio-examples/python/digital/tx_voice.py index 146f6e7e24..d8692beb40 100755 --- a/gnuradio-examples/python/digital/tx_voice.py +++ b/gnuradio-examples/python/digital/tx_voice.py @@ -35,7 +35,7 @@ import struct import sys # from current dir -from transmit_path import transmit_path +import usrp_transmit_path #import os #print os.getpid() @@ -64,7 +64,7 @@ class my_top_block(gr.top_block): def __init__(self, modulator_class, options): gr.top_block.__init__(self) - self.txpath = transmit_path(modulator_class, options) + self.txpath = usrp_transmit_path.usrp_transmit_path(modulator_class, options) self.audio_rx = audio_rx(options.audio_input) self.connect(self.txpath) self.connect(self.audio_rx) @@ -95,8 +95,7 @@ def main(): help="set megabytes to transmit [default=inf]") parser.add_option("-I", "--audio-input", type="string", default="", help="pcm input device name. E.g., hw:0,0 or /dev/dsp") - - transmit_path.add_options(parser, expert_grp) + usrp_transmit_path.add_options(parser, expert_grp) for mod in mods.values(): mod.add_options(expert_grp) |