diff options
author | Achilleas Anastasopoulos <anastas@umich.edu> | 2014-10-14 10:51:31 -0400 |
---|---|---|
committer | Achilleas Anastasopoulos <anastas@umich.edu> | 2014-10-15 19:01:05 -0400 |
commit | 79d55f173046d87ae31f04ad1e6dbafe1c9ae5ca (patch) | |
tree | c3efe8e25da8d13b99bb5cdf8b4234ef8cf54d07 /gr-trellis/python | |
parent | be8e888f80934a884287f0ec9eb62dd0d2b7f5e5 (diff) |
fixed a bug in pccc encoder/decoder, and added fsm files.
Also added locks in the set_ methods
Diffstat (limited to 'gr-trellis/python')
-rwxr-xr-x | gr-trellis/python/trellis/fsm_utils.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gr-trellis/python/trellis/fsm_utils.py b/gr-trellis/python/trellis/fsm_utils.py index 7ec88cb645..72aa1d3660 100755 --- a/gr-trellis/python/trellis/fsm_utils.py +++ b/gr-trellis/python/trellis/fsm_utils.py @@ -201,6 +201,22 @@ psk2x3 = (3,[-1,-1,-1, \ 1,1,-1, \ 1,1,1]) +psk2x4 = (4,[-1,-1,-1,-1, \ + -1,-1,-1,1, \ + -1,-1,1,-1, \ + -1,-1,1,1, \ + -1,1,-1,-1, \ + -1,1,-1,1, \ + -1,1,1,-1, \ + -1,1,1,1, \ + 1,-1,-1,-1, \ + 1,-1,-1,1, \ + 1,-1,1,-1, \ + 1,-1,1,1, \ + 1,1,-1,-1, \ + 1,1,-1,1, \ + 1,1,1,-1, \ + 1,1,1,1]) orth2 = (2,[1, 0, \ 0, 1]) |