aboutsummaryrefslogtreecommitdiffstats
path: root/grc/misc_utils
diff options
context:
space:
mode:
authorRoman Khassraf <roman@khassraf.at>2015-08-03 10:08:18 +0200
committerRoman Khassraf <roman@khassraf.at>2015-08-03 10:08:18 +0200
commitb8f4909d37c2c16c9c5deb09264fccfad973ed7d (patch)
tree4d7ec8d85ed284a593ded7809884ac932bf3a6ac /grc/misc_utils
parentc0cb6998da3c0cad463964fcc6643ff61c6e64b5 (diff)
Moved qa utilities to a separate directory
Diffstat (limited to 'grc/misc_utils')
-rw-r--r--grc/misc_utils/gsm_burst_sink_qa.xml12
-rw-r--r--grc/misc_utils/gsm_burst_source_qa.xml35
-rw-r--r--grc/misc_utils/gsm_message_sink.xml19
-rw-r--r--grc/misc_utils/gsm_message_source.xml32
4 files changed, 0 insertions, 98 deletions
diff --git a/grc/misc_utils/gsm_burst_sink_qa.xml b/grc/misc_utils/gsm_burst_sink_qa.xml
deleted file mode 100644
index c028da3..0000000
--- a/grc/misc_utils/gsm_burst_sink_qa.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0"?>
-<block>
- <name>QA Burst sink</name>
- <key>gsm_burst_sink_qa</key>
- <import>import grgsm</import>
- <make>grgsm.burst_sink_qa()</make>
-
- <sink>
- <name>in</name>
- <type>message</type>
- </sink>
-</block>
diff --git a/grc/misc_utils/gsm_burst_source_qa.xml b/grc/misc_utils/gsm_burst_source_qa.xml
deleted file mode 100644
index bb04cca..0000000
--- a/grc/misc_utils/gsm_burst_source_qa.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<?xml version="1.0"?>
-<block>
- <name>QA Burst source</name>
- <key>gsm_burst_source_qa</key>
- <import>import grgsm</import>
- <make>grgsm.burst_source_qa($framenumbers, $timeslots, $bursts)</make>
-
- <param>
- <name>Frame numbers</name>
- <key>framenumbers</key>
- <value>[]</value>
- <type>int_vector</type>
- <hide>part</hide>
- </param>
-
- <param>
- <name>Timeslots</name>
- <key>timeslots</key>
- <value>[]</value>
- <type>int_vector</type>
- <hide>part</hide>
- </param>
-
- <param>
- <name>Bursts</name>
- <key>bursts</key>
- <value>[[],]</value>
- <type>raw</type>
- </param>
-
- <source>
- <name>out</name>
- <type>message</type>
- </source>
-</block>
diff --git a/grc/misc_utils/gsm_message_sink.xml b/grc/misc_utils/gsm_message_sink.xml
deleted file mode 100644
index e0d6ac0..0000000
--- a/grc/misc_utils/gsm_message_sink.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0"?>
-<block>
- <name>Message Sink</name>
- <key>gsm_message_sink</key>
- <import>import grgsm</import>
- <make>grgsm.message_sink()</make>
-
- <sink>
- <name>in</name>
- <type>message</type>
- </sink>
-
- <doc>
-This block is a message sink for testing purposes.
-
-The data can be retrieved using function get_messages()
-
- </doc>
-</block>
diff --git a/grc/misc_utils/gsm_message_source.xml b/grc/misc_utils/gsm_message_source.xml
deleted file mode 100644
index ab06f65..0000000
--- a/grc/misc_utils/gsm_message_source.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0"?>
-<block>
- <name>Message Source</name>
- <key>gsm_message_source</key>
- <import>import grgsm</import>
- <make>grgsm.message_source($messages)</make>
-
- <param>
- <name>Messages</name>
- <key>messages</key>
- <value>["02 04 01 00 00 00 c9 00 00 1d 3c e5 02 00 01 00 15 06 21 00 01 f0 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b",
-"02 04 01 00 00 00 ca 00 00 1d 3c e9 02 00 02 00 15 06 21 00 01 f0 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b",
-"02 04 01 00 00 00 cb 00 00 1d 3d 0e 01 00 00 00 59 06 1a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff e5 04 00",
-"02 04 01 00 00 00 cb 00 00 1d 3d 12 02 00 00 00 15 06 21 00 01 f0 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b"]</value>
- <type>raw</type>
- <hide>true</hide>
- </param>
-
- <source>
- <name>msgs</name>
- <type>message</type>
- </source>
-
- <doc>
-This block is a basic message source for testing purposes.
-
-It takes a list of strings as input, where each string
-is a whitespace-separated list of hexadecimal values representing the data bytes of a message including the gsmtap header.
-
-Such strings can be obtained using the message printer with option "Print GSMTap header"
- </doc>
-</block>