diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-07-19 21:30:19 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-07-19 21:30:48 -0400 |
commit | 3f94d49bae62301349f31959c34c690b5c47fc2b (patch) | |
tree | 26bd4ff3f3ea2efc0415887c636d634392f45b38 /gr-digital/python/dbpsk.py | |
parent | f7b9a0c6922c86cd54c1300ab45209d8e2db13df (diff) |
digital: moved gr_binary_slicer_fb to digital_binary_slicer_fb and added QA code. Removed constellation_decoder and everything that dependedon it. Must switch everything to digital_constellation_decoder now. Also moved gmsk to gr-digital. Make check passes.
Diffstat (limited to 'gr-digital/python/dbpsk.py')
-rw-r--r-- | gr-digital/python/dbpsk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-digital/python/dbpsk.py b/gr-digital/python/dbpsk.py index 2e9b756e64..21ca0474b5 100644 --- a/gr-digital/python/dbpsk.py +++ b/gr-digital/python/dbpsk.py @@ -274,7 +274,7 @@ class dbpsk_demod(gr.hier_block2): # find closest constellation point rot = 1 rotated_const = map(lambda pt: pt * rot, psk.constellation[arity]) - self.slicer = gr.constellation_decoder_cb(rotated_const, range(arity)) + self.slicer = digital.constellation_decoder_cb(rotated_const, range(arity)) if self._gray_code: self.symbol_mapper = gr.map_bb(psk.gray_to_binary[arity]) |