aboutsummaryrefslogtreecommitdiffstats
path: root/grc
diff options
context:
space:
mode:
Diffstat (limited to 'grc')
-rw-r--r--grc/gsm_block_tree.xml1
-rw-r--r--grc/receiver/CMakeLists.txt1
-rw-r--r--grc/receiver/gsm_wideband_input.xml119
3 files changed, 0 insertions, 121 deletions
diff --git a/grc/gsm_block_tree.xml b/grc/gsm_block_tree.xml
index c2e1ee7..85a89c2 100644
--- a/grc/gsm_block_tree.xml
+++ b/grc/gsm_block_tree.xml
@@ -20,7 +20,6 @@
<block>gsm_fcch_detector</block>
<block>gsm_clock_offset_control</block>
<block>gsm_input</block>
- <block>gsm_wideband_input</block>
</cat>
<cat>
<name>Logical channels demapping</name>
diff --git a/grc/receiver/CMakeLists.txt b/grc/receiver/CMakeLists.txt
index bbc086f..7b51226 100644
--- a/grc/receiver/CMakeLists.txt
+++ b/grc/receiver/CMakeLists.txt
@@ -19,7 +19,6 @@
install(FILES
gsm_input.xml
- gsm_wideband_input.xml
gsm_receiver.xml
gsm_receiver_with_uplink.xml
gsm_fcch_burst_tagger.xml
diff --git a/grc/receiver/gsm_wideband_input.xml b/grc/receiver/gsm_wideband_input.xml
deleted file mode 100644
index 54a2f76..0000000
--- a/grc/receiver/gsm_wideband_input.xml
+++ /dev/null
@@ -1,119 +0,0 @@
-<block>
- <name>GSM Wideband Input Adaptor</name>
- <key>gsm_wideband_input</key>
- <category></category>
- <import>import grgsm</import>
- <make>grgsm.gsm_wideband_input(
- ppm=$ppm,
- osr=$osr,
- fc=$fc,
- samp_rate_in=$samp_rate_in,
- ca=$cell_allocation,
- band=$band,
-)</make>
- <callback>set_ppm($ppm)</callback>
- <callback>set_osr($osr)</callback>
- <callback>set_fc($fc)</callback>
- <callback>set_samp_rate_in($samp_rate_in)</callback>
- <param>
- <name>ppm</name>
- <key>ppm</key>
- <value>ppm</value>
- <type>float</type>
- <hide>part</hide>
- </param>
- <param>
- <name>OSR</name>
- <key>osr</key>
- <value>osr</value>
- <type>int</type>
- <hide>part</hide>
- </param>
- <param>
- <name>fc</name>
- <key>fc</key>
- <value>fc</value>
- <type>float</type>
- <hide>part</hide>
- </param>
- <param>
- <name>Band</name>
- <key>band</key>
- <value>E-GSM</value>
- <type>string</type>
- <hide>part</hide>
- <option>
- <name>P-GSM (1-124)</name>
- <key>P-GSM</key>
- </option>
- <option>
- <name>DCS1800 (512-885)</name>
- <key>DCS1900</key>
- </option>
- <option>
- <name>PCS1900 (512-810)</name>
- <key>PCS1900</key>
- </option>
- <option>
- <name>E-GSM (975-1023)</name>
- <key>E-GSM</key>
- </option>
- <option>
- <name>R-GSM (955-1023)</name>
- <key>R-GSM</key>
- </option>
- <option>
- <name>GSM450 (259-293)</name>
- <key>GSM450</key>
- </option>
- <option>
- <name>GSM480 (306-340)</name>
- <key>GSM480</key>
- </option>
- <option>
- <name>GSM850 (128-251)</name>
- <key>GSM850</key>
- </option>
- </param>
- <param>
- <name>Cell allocation</name>
- <key>cell_allocation</key>
- <value>[]</value>
- <type>float_vector</type>
- <hide>part</hide>
- </param>
- <param>
- <name>samp_rate_in</name>
- <key>samp_rate_in</key>
- <value>samp_rate_in</value>
- <type>float</type>
- <hide>part</hide>
- </param>
- <param>
- <name>Num Streams</name>
- <key>num_streams</key>
- <value>1</value>
- <type>int</type>
- <hide>part</hide>
- </param>
- <check>$num_streams &gt;= 0</check>
- <check>$cell_allocation and all(grgsm.arfcn.is_valid_arfcn(c, $band) for c in $cell_allocation)</check>
- <sink>
- <name>in</name>
- <type>complex</type>
- <vlen>1</vlen>
- </sink>
- <sink>
- <name>ppm_in</name>
- <type>message</type>
- <optional>True</optional>
- </sink>
- <source>
- <name>out</name>
- <type>complex</type>
- <vlen>1</vlen>
- <nports>$num_streams</nports>
- </source>
- <doc>Piotr Krysik
-Adaptor of input stream for the GSM receiver. Contains frequency offset corrector and resampler to correct carrier frequency and sampling frequency offsets. At the end it has LP filter for filtering of a GSM channel.</doc>
-</block>