From 79d55f173046d87ae31f04ad1e6dbafe1c9ae5ca Mon Sep 17 00:00:00 2001
From: Achilleas Anastasopoulos <anastas@umich.edu>
Date: Tue, 14 Oct 2014 10:51:31 -0400
Subject: fixed a bug in pccc encoder/decoder, and added fsm files. Also added
 locks in the set_ methods

---
 gr-trellis/python/trellis/fsm_utils.py | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

(limited to 'gr-trellis/python/trellis/fsm_utils.py')

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])
-- 
cgit v1.2.3