diff options
author | anastas | 2006-09-14 15:09:03 +0000 |
---|---|---|
committer | anastas | 2006-09-14 15:09:03 +0000 |
commit | b79f439a502172bb1487a49e5d9d7d228c587f48 (patch) | |
tree | 39f9e9e6be69f3e4d630790851266eec6e264355 /gnuradio-examples/python | |
parent | aa0555b49ca61be638bc57b8d823d870aeb3edbb (diff) | |
download | gnuradio-b79f439a502172bb1487a49e5d9d7d228c587f48.tar.gz gnuradio-b79f439a502172bb1487a49e5d9d7d228c587f48.tar.bz2 gnuradio-b79f439a502172bb1487a49e5d9d7d228c587f48.zip |
fixed ticket #65
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3540 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-examples/python')
-rw-r--r-- | gnuradio-examples/python/channel-coding/Makefile.am | 12 | ||||
-rw-r--r-- | gnuradio-examples/python/channel-coding/README | 2 | ||||
-rw-r--r-- | gnuradio-examples/python/channel-coding/fsm_files/Makefile.am | 37 |
3 files changed, 50 insertions, 1 deletions
diff --git a/gnuradio-examples/python/channel-coding/Makefile.am b/gnuradio-examples/python/channel-coding/Makefile.am index aa24e7070..0000ba08b 100644 --- a/gnuradio-examples/python/channel-coding/Makefile.am +++ b/gnuradio-examples/python/channel-coding/Makefile.am @@ -24,8 +24,18 @@ EXTRA_DIST = \ fsm_utils.py \ test_tcm.py \ test_tcm1.py \ + test_tcm2.py \ test_tcm_parallel.py \ test_tcm_combined.py \ - test_sccc_hard.py + test_sccc_hard.py \ + test_sccc_soft.py \ + test_sccc_turbo.py \ + test_viterbi_equalization1.py \ + test_viterbi_equalization.py \ + test_turbo_equalization.py \ + test_turbo_equalization1.py \ + test_turbo_equalization2.py + +SUBDIRS = fsm_files MOSTLYCLEANFILES = *.pyc diff --git a/gnuradio-examples/python/channel-coding/README b/gnuradio-examples/python/channel-coding/README index 7f25b697b..13968304a 100644 --- a/gnuradio-examples/python/channel-coding/README +++ b/gnuradio-examples/python/channel-coding/README @@ -20,6 +20,8 @@ If you just want to see what these programs do, run each of the following: ./test_viterbi_equalization.py 12.0 100 ./test_viterbi_equalization1.py 12.0 100 +./test_turbo_equalization1.py fsm_files/awgn1o2_4.fsm 8.0 100 +./test_turbo_equalization2.py fsm_files/awgn1o2_4.fsm 8.0 100 In your terminal you will see something like this: diff --git a/gnuradio-examples/python/channel-coding/fsm_files/Makefile.am b/gnuradio-examples/python/channel-coding/fsm_files/Makefile.am new file mode 100644 index 000000000..953752a9c --- /dev/null +++ b/gnuradio-examples/python/channel-coding/fsm_files/Makefile.am @@ -0,0 +1,37 @@ +# +# Copyright 2004 Free Software Foundation, Inc. +# +# This file is part of GNU Radio +# +# GNU Radio is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# GNU Radio is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Radio; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# + +EXTRA_DIST = \ + awgn1o2_128.fsm \ + awgn1o2_16.fsm \ + awgn1o2_4.fsm \ + awgn1o2_8.fsm \ + awgn2o3_16.fsm \ + awgn2o3_4.fsm \ + awgn2o3_4_msb.fsm \ + awgn2o3_4_msbG.fsm \ + awgn2o3_8.fsm \ + awgn2o4_4.fsm \ + disconnected.fsm \ + rep3.fsm \ + rep5.fsm \ + simple.fsm + |