diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-09-30 12:30:07 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-09-30 12:30:07 -0400 |
commit | de4405ab0d8f6c423baadc15ab7d9fa11b6898c4 (patch) | |
tree | 1cf035c351ede8ec6726f227168e285bab098ef0 /gr-digital/python | |
parent | 3e8c3125da6234c4d1f8c0eaf869bc86923cb292 (diff) |
digital: modified generic_mod_demod so mod and demods have same options in the same order.
Diffstat (limited to 'gr-digital/python')
-rw-r--r-- | gr-digital/python/generic_mod_demod.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-digital/python/generic_mod_demod.py b/gr-digital/python/generic_mod_demod.py index dc69fc0b56..dec96e455c 100644 --- a/gr-digital/python/generic_mod_demod.py +++ b/gr-digital/python/generic_mod_demod.py @@ -76,8 +76,8 @@ def add_common_options(parser): class generic_mod(gr.hier_block2): def __init__(self, constellation, - differential=_def_differential, samples_per_symbol=_def_samples_per_symbol, + differential=_def_differential, excess_bw=_def_excess_bw, gray_coded=True, verbose=_def_verbose, |