diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-10-12 23:02:56 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-10-12 23:02:56 -0400 |
commit | 73ccc57f0f8c25162b8a3410e8a9e59c9e824a45 (patch) | |
tree | 1bc5488f54adc666324cd8607e1151c0af58bf63 /gr-digital/python/psk.py | |
parent | d53109a88522d243bf684ffe1a9aad2801c52f07 (diff) |
digital: changed modulation_utils2 to modulation_utils and update all files using it.
Diffstat (limited to 'gr-digital/python/psk.py')
-rw-r--r-- | gr-digital/python/psk.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-digital/python/psk.py b/gr-digital/python/psk.py index 82781e63b0..58f6787f0c 100644 --- a/gr-digital/python/psk.py +++ b/gr-digital/python/psk.py @@ -27,7 +27,7 @@ from math import pi, log from cmath import exp import digital_swig -import modulation_utils2 +import modulation_utils from utils import mod_codes, gray_code from generic_mod_demod import generic_mod, generic_demod @@ -117,6 +117,6 @@ class psk_demod(generic_demod): # # Add these to the mod/demod registry # -modulation_utils2.add_type_1_mod('psk', psk_mod) -modulation_utils2.add_type_1_demod('psk', psk_demod) -modulation_utils2.add_type_1_constellation('psk', psk_constellation) +modulation_utils.add_type_1_mod('psk', psk_mod) +modulation_utils.add_type_1_demod('psk', psk_demod) +modulation_utils.add_type_1_constellation('psk', psk_constellation) |