diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-08-30 17:40:31 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-08-30 17:40:31 -0400 |
commit | 9b89276c58516cc9d3be817a96d68483c60a26f7 (patch) | |
tree | ef58e1d5ad74123cd2b35a492976fc3743b7b35f /gr-digital/python | |
parent | b827a9b538a6df1e74af02041624b77e71dc38ae (diff) |
digital: minor formatting fixes.
Diffstat (limited to 'gr-digital/python')
-rw-r--r-- | gr-digital/python/generic_mod_demod.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-digital/python/generic_mod_demod.py b/gr-digital/python/generic_mod_demod.py index 47026ef855..b1986512f0 100644 --- a/gr-digital/python/generic_mod_demod.py +++ b/gr-digital/python/generic_mod_demod.py @@ -54,7 +54,7 @@ def add_common_options(parser): Sets options common to both modulator and demodulator. """ parser.add_option("-p", "--constellation-points", type="int", default=_def_constellation_points, - help="set the number of constellation points (must be a power of 2 (power of 4 for QAM) [default=%default]") + help="set the number of constellation points (must be a power of 2 for psk, power of 4 for QAM) [default=%default]") parser.add_option("", "--non-differential", action="store_true", dest="differential", default=False, help="do not use differential encoding [default=%default]") @@ -233,7 +233,7 @@ class generic_demod(gr.hier_block2): @type gray_coded: bool @param freq_bw: loop filter lock-in bandwidth @type freq_bw: float - @param timing_bw: timing recoery loop lock-in bandwidth + @param timing_bw: timing recovery loop lock-in bandwidth @type timing_bw: float @param phase_bw: phase recovery loop bandwidth @type phase_bw: float |