summaryrefslogtreecommitdiff
path: root/gr-trellis/src/examples/python/test_turbo_equalization.py
diff options
context:
space:
mode:
authorJohnathan Corgan <jcorgan@corganenterprises.com>2012-06-06 09:56:22 -0700
committerJohnathan Corgan <jcorgan@corganenterprises.com>2012-06-06 09:56:22 -0700
commitddbaaabc927b2ecc18ad84a238fa3235001bc79b (patch)
tree24ef6464e7adf3221d51e2528b0a966eb705261f /gr-trellis/src/examples/python/test_turbo_equalization.py
parenta09f727276fc0b0af979d962c44260ea2fdcd554 (diff)
core: removed gr_chunks_to_symbols_XX after move to gr-digital
Diffstat (limited to 'gr-trellis/src/examples/python/test_turbo_equalization.py')
-rwxr-xr-xgr-trellis/src/examples/python/test_turbo_equalization.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-trellis/src/examples/python/test_turbo_equalization.py b/gr-trellis/src/examples/python/test_turbo_equalization.py
index 18bfb022a9..d97f3f2c29 100755
--- a/gr-trellis/src/examples/python/test_turbo_equalization.py
+++ b/gr-trellis/src/examples/python/test_turbo_equalization.py
@@ -59,7 +59,7 @@ def run_test (fo,fi,interleaver,Kb,bitspersymbol,K,dimensionality,tot_constellat
inter = trellis.permutation(interleaver.K(),interleaver.INTER(),1,gr.sizeof_short)
enc_in = trellis.encoder_ss(fi,0) # initial state = 0
# essentially here we implement the combination of modulation and channel as a memoryless modulation (the memory induced by the channel is hidden in the innner FSM)
- mod = gr.chunks_to_symbols_sf(tot_constellation,dimensionality)
+ mod = digital.chunks_to_symbols_sf(tot_constellation,dimensionality)
# CHANNEL
add = gr.add_ff()