Added new blocks written in python for new experimental gsm receiver.
FCCH burst tagger is element of hierarchical block - FCCH detector that adds tags after every detected FCCH burst. The value of each tag is a frequency offset estimate.
SCH detector waits for tags from FCCH detector which are used to find SCH burst position. It is unfinished.
diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt
index 8640d73..2c76806 100644
--- a/python/CMakeLists.txt
+++ b/python/CMakeLists.txt
@@ -31,7 +31,10 @@
 GR_PYTHON_INSTALL(
     FILES
     __init__.py
-    receiver_hier.py DESTINATION ${GR_PYTHON_DIR}/gsm
+    receiver_hier.py
+    fcch_burst_tagger.py
+    sch_detector.py
+    fcch_detector.py DESTINATION ${GR_PYTHON_DIR}/gsm
 )
 
 ########################################################################