diff options
author | Tom Rondeau | 2010-02-25 18:50:24 -0500 |
---|---|---|
committer | Tom Rondeau | 2010-02-25 18:50:24 -0500 |
commit | 85aad96915db5f53897f91257794c85eb67f39d4 (patch) | |
tree | b7ceed4422687cc3aa62187da702f1501556cb45 /gnuradio-examples/python/digital/transmit_path.py | |
parent | 7d5e47e14126e37ad78164df448d0fcc4b04c558 (diff) | |
download | gnuradio-85aad96915db5f53897f91257794c85eb67f39d4.tar.gz gnuradio-85aad96915db5f53897f91257794c85eb67f39d4.tar.bz2 gnuradio-85aad96915db5f53897f91257794c85eb67f39d4.zip |
Fixing pick_bitrate2 for transmit side with all cases tested.
Diffstat (limited to 'gnuradio-examples/python/digital/transmit_path.py')
-rw-r--r-- | gnuradio-examples/python/digital/transmit_path.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-examples/python/digital/transmit_path.py b/gnuradio-examples/python/digital/transmit_path.py index a23f8d191..ba0c434da 100644 --- a/gnuradio-examples/python/digital/transmit_path.py +++ b/gnuradio-examples/python/digital/transmit_path.py @@ -99,7 +99,7 @@ class transmit_path(gr.hier_block2): help="set transmitter digital amplitude: 0 <= AMPL < 1 [default=%default]") normal.add_option("-v", "--verbose", action="store_true", default=False) - expert.add_option("-S", "--samples-per-symbol", type="int", default=2, + expert.add_option("-S", "--samples-per-symbol", type="int", 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 file (CAUTION: lots of data)") |