summaryrefslogtreecommitdiff
path: root/gnuradio-examples/python/digital/tx_voice.py
diff options
context:
space:
mode:
authorjblum <jblum@221aa14e-8319-0410-a670-987f0aec2ac5>2009-05-01 20:33:09 +0000
committerjblum <jblum@221aa14e-8319-0410-a670-987f0aec2ac5>2009-05-01 20:33:09 +0000
commitbc105a1ea4de1ba98fcbd7dfeac7b45b2a0ce5c3 (patch)
treec5a67c6eb0ef14bc623c5dba3b5411ac28b66afa /gnuradio-examples/python/digital/tx_voice.py
parenta3ba8cf268816af51c4bb39ea7ecd7e85ea0807b (diff)
Merged developer branch for digital r10900:10941
Creates generic usrp class abstraction for usrp and usrp2. Common command line options for usrp devices. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10942 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-examples/python/digital/tx_voice.py')
-rwxr-xr-xgnuradio-examples/python/digital/tx_voice.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/gnuradio-examples/python/digital/tx_voice.py b/gnuradio-examples/python/digital/tx_voice.py
index c97e2f084a..146f6e7e24 100755
--- a/gnuradio-examples/python/digital/tx_voice.py
+++ b/gnuradio-examples/python/digital/tx_voice.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright 2005,2006,2007 Free Software Foundation, Inc.
+# Copyright 2005,2006,2007,2009 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
@@ -36,7 +36,6 @@ import sys
# from current dir
from transmit_path import transmit_path
-import fusb_options
#import os
#print os.getpid()
@@ -102,8 +101,6 @@ def main():
for mod in mods.values():
mod.add_options(expert_grp)
- fusb_options.add_options(expert_grp)
-
parser.set_defaults(bitrate=50e3) # override default bitrate default
(options, args) = parser.parse_args ()
@@ -142,11 +139,10 @@ def main():
send_pkt(eof=True)
tb.wait() # wait for it to finish
- tb.txpath.set_auto_tr(False)
if __name__ == '__main__':
try:
main()
except KeyboardInterrupt:
- pass \ No newline at end of file
+ pass