diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-06 17:56:46 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-06 17:56:46 -0500 |
commit | a8245890a789cdb70868df57730170f57dc3668e (patch) | |
tree | 80e2973cd1b6be97768c80d8293d1f139ce8b07d /gr-digital/python/qam.py | |
parent | 5c18bac20fcbdee03c332e29a676ea8f1481b5ea (diff) |
digital, blocks: some fixes to build/run after merge.
Diffstat (limited to 'gr-digital/python/qam.py')
-rw-r--r-- | gr-digital/python/qam.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-digital/python/qam.py b/gr-digital/python/qam.py index 5919839186..518be78941 100644 --- a/gr-digital/python/qam.py +++ b/gr-digital/python/qam.py @@ -176,11 +176,11 @@ def qam_constellation(constellation_points=_def_constellation_points, # Should add one so that we can gray-code the quadrant bits too. pre_diff_code = [] if not large_ampls_to_corners: - constellation = digital_swig.constellation_rect(points, pre_diff_code, 4, + constellation = digital.constellation_rect(points, pre_diff_code, 4, side, side, width, width) else: sector_values = large_ampls_to_corners_mapping(side, points, width) - constellation = digital_swig.constellation_expl_rect( + constellation = digital.constellation_expl_rect( points, pre_diff_code, 4, side, side, width, width, sector_values) return constellation |