summaryrefslogtreecommitdiff
path: root/gnuradio-examples/python/digital/receive_path.py
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2010-02-26 10:11:39 -0500
committerTom Rondeau <trondeau@vt.edu>2010-02-26 10:11:39 -0500
commit598924aa8be0740583d9d32f99269e1e55134b6e (patch)
tree84a36302acb42c0c1b0e4ca9067f524b5f03688f /gnuradio-examples/python/digital/receive_path.py
parent93c51f5c02311f89dc6eb47923b34b13038c805c (diff)
Fixing a few bugs in handling of real samples per symbol.
Diffstat (limited to 'gnuradio-examples/python/digital/receive_path.py')
-rw-r--r--gnuradio-examples/python/digital/receive_path.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-examples/python/digital/receive_path.py b/gnuradio-examples/python/digital/receive_path.py
index 7df945ed00..0024d6941f 100644
--- a/gnuradio-examples/python/digital/receive_path.py
+++ b/gnuradio-examples/python/digital/receive_path.py
@@ -119,7 +119,7 @@ class receive_path(gr.hier_block2):
normal.add_option("-r", "--bitrate", type="eng_float", default=100e3,
help="specify bitrate [default=%default].")
normal.add_option("-v", "--verbose", action="store_true", default=False)
- expert.add_option("-S", "--samples-per-symbol", type="int", default=None,
+ expert.add_option("-S", "--samples-per-symbol", type="float", default=None,
help="set samples/symbol [default=%default]")
expert.add_option("", "--log", action="store_true", default=False,
help="Log all parts of flow graph to files (CAUTION: lots of data)")