aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am30
-rw-r--r--tests/agch/Makefile.am25
-rw-r--r--tests/agch/agch_test.c12
-rw-r--r--tests/amr/Makefile.am26
-rw-r--r--tests/amr/amr_test.c71
-rw-r--r--tests/amr/amr_test.err3
-rw-r--r--tests/amr/amr_test.ok9
-rw-r--r--tests/cipher/Makefile.am25
-rw-r--r--tests/cipher/cipher_test.c12
-rw-r--r--tests/csd/Makefile.am25
-rw-r--r--tests/csd/csd_test.c169
-rw-r--r--tests/csd/csd_test.err176
-rw-r--r--tests/handover/Makefile.am25
-rw-r--r--tests/handover/handover_test.c62
-rw-r--r--tests/meas/Makefile.am27
-rw-r--r--tests/meas/meas_test.c210
-rw-r--r--tests/meas/meas_test.err8241
-rw-r--r--tests/meas/meas_test.ok4
-rw-r--r--tests/meas/meas_testcases.h6
-rw-r--r--tests/misc/Makefile.am25
-rw-r--r--tests/misc/misc_test.c62
-rw-r--r--tests/osmo-bts.vty323
-rw-r--r--tests/paging/Makefile.am25
-rw-r--r--tests/paging/paging_test.c182
-rw-r--r--tests/power/Makefile.am32
-rw-r--r--tests/power/bs_power_loop_test.c515
-rw-r--r--tests/power/bs_power_loop_test.err191
-rw-r--r--tests/power/bs_power_loop_test.ok360
-rw-r--r--tests/power/ms_power_loop_test.c433
-rw-r--r--tests/power/ms_power_loop_test.err65
-rw-r--r--tests/power/ms_power_loop_test.ok179
-rw-r--r--tests/power/power_test.c88
-rw-r--r--tests/power/power_test.ok7
-rw-r--r--tests/stubs.c31
-rw-r--r--tests/sysmobts/Makefile.am41
-rw-r--r--tests/sysmobts/sysmobts_test.c7
-rw-r--r--tests/ta_control/Makefile.am23
-rw-r--r--tests/ta_control/ta_control_test.c76
-rw-r--r--tests/ta_control/ta_control_test.ok609
-rw-r--r--tests/testsuite.at36
-rw-r--r--tests/tx_power/Makefile.am22
-rw-r--r--tests/tx_power/tx_power_test.c86
-rw-r--r--tests/tx_power/tx_power_test.err88
-rw-r--r--tests/tx_power/tx_power_test.ok9
44 files changed, 12217 insertions, 456 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 1eb28d6f..8d175be8 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = paging cipher agch misc handover tx_power power meas
+SUBDIRS = paging cipher agch misc handover tx_power power meas ta_control amr csd
if ENABLE_SYSMOBTS
SUBDIRS += sysmobts
@@ -22,12 +22,38 @@ $(srcdir)/package.m4: $(top_srcdir)/configure.ac
echo ' [$(PACKAGE_URL)])'; \
} >'$(srcdir)/package.m4'
-EXTRA_DIST = testsuite.at $(srcdir)/package.m4 $(TESTSUITE)
+EXTRA_DIST = \
+ testsuite.at \
+ $(srcdir)/package.m4 \
+ $(TESTSUITE) \
+ osmo-bts.vty \
+ $(NULL)
TESTSUITE = $(srcdir)/testsuite
DISTCLEANFILES = atconfig
+if ENABLE_EXT_TESTS
+python-tests:
+ $(MAKE) vty-test
+else
+python-tests:
+ echo "Not running python-based tests (determined at configure-time)"
+endif
+
+# Run a specific test with: 'make vty-test VTY_TEST=foo.vty'
+VTY_TEST ?= *.vty
+
+# To update the VTY script from current application behavior,
+# pass -u to vty_script_runner.py by doing:
+# make vty-test U=-u
+vty-test: $(top_builddir)/src/osmo-bts-virtual/osmo-bts-virtual
+ osmo_verify_transcript_vty.py -v \
+ -n OsmoBTS -p 4241 \
+ -r "$(top_builddir)/src/osmo-bts-virtual/osmo-bts-virtual --vty-test -c $(top_srcdir)/doc/examples/virtual/osmo-bts-virtual.cfg" \
+ $(U) $(srcdir)/$(VTY_TEST)
+
check-local: atconfig $(TESTSUITE)
$(SHELL) '$(TESTSUITE)' $(TESTSUITEFLAGS)
+ $(MAKE) $(AM_MAKEFLAGS) python-tests
installcheck-local: atconfig $(TESTSUITE)
$(SHELL) '$(TESTSUITE)' AUTOTEST_PATH='$(bindir)' \
diff --git a/tests/agch/Makefile.am b/tests/agch/Makefile.am
index 0c4fce45..d05fc626 100644
--- a/tests/agch/Makefile.am
+++ b/tests/agch/Makefile.am
@@ -1,7 +1,26 @@
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
-AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(LIBOSMOTRAU_CFLAGS) $(LIBOSMOCODEC_CFLAGS)
-LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOVTY_LIBS) $(LIBOSMOTRAU_LIBS) $(LIBOSMOABIS_LIBS) $(LIBOSMOCODEC_LIBS)
-noinst_PROGRAMS = agch_test
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOVTY_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOVTY_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOABIS_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
+
+check_PROGRAMS = agch_test
EXTRA_DIST = agch_test.ok
agch_test_SOURCES = agch_test.c $(srcdir)/../stubs.c
diff --git a/tests/agch/agch_test.c b/tests/agch/agch_test.c
index e6c56d97..07cf1d90 100644
--- a/tests/agch/agch_test.c
+++ b/tests/agch/agch_test.c
@@ -13,7 +13,7 @@
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
@@ -23,6 +23,7 @@
#include <osmocom/core/application.h>
#include <osmo-bts/bts.h>
+#include <osmo-bts/bts_sm.h>
#include <osmo-bts/logging.h>
#include <osmo-bts/gsm_data.h>
@@ -124,13 +125,13 @@ static void test_agch_queue(void)
for (round = 1; round <= num_rounds; round++) {
for (idx = 0; idx < num_ima_per_round; idx++) {
- msg = msgb_alloc(GSM_MACBLOCK_LEN, __FUNCTION__);
+ msg = msgb_alloc(GSM_MACBLOCK_LEN, __func__);
put_imm_ass(msg, ++count);
bts_agch_enqueue(bts, msg);
imm_ass_count++;
}
for (idx = 0; idx < num_rej_per_round; idx++) {
- msg = msgb_alloc(GSM_MACBLOCK_LEN, __FUNCTION__);
+ msg = msgb_alloc(GSM_MACBLOCK_LEN, __func__);
put_imm_ass_rej(msg, ++count, 10);
bts_agch_enqueue(bts, msg);
imm_ass_rej_count++;
@@ -158,7 +159,7 @@ static void test_agch_queue(void)
if (is_agch)
multiframes++;
- rc = bts_ccch_copy_msg(bts, out_buf, &g_time, is_agch);
+ rc = bts_ccch_copy_msg(bts, out_buf, &g_time, (is_agch) ? CCCH_MSGT_AGCH : CCCH_MSGT_PCH);
ima = (struct gsm48_imm_ass *)out_buf;
switch (ima->msg_type) {
case GSM48_MT_RR_IMM_ASS:
@@ -225,7 +226,8 @@ int main(int argc, char **argv)
osmo_init_logging2(tall_bts_ctx, &bts_log_info);
- bts = gsm_bts_alloc(tall_bts_ctx, 0);
+ g_bts_sm = gsm_bts_sm_alloc(tall_bts_ctx);
+ bts = gsm_bts_alloc(g_bts_sm, 0);
if (bts_init(bts) < 0) {
fprintf(stderr, "unable to open bts\n");
exit(1);
diff --git a/tests/amr/Makefile.am b/tests/amr/Makefile.am
new file mode 100644
index 00000000..a857d179
--- /dev/null
+++ b/tests/amr/Makefile.am
@@ -0,0 +1,26 @@
+AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOABIS_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
+
+check_PROGRAMS = amr_test
+EXTRA_DIST = amr_test.ok amr_test.err
+
+amr_test_SOURCES = amr_test.c
+amr_test_LDADD = $(top_builddir)/src/common/libbts.a \
+ $(LDADD)
diff --git a/tests/amr/amr_test.c b/tests/amr/amr_test.c
new file mode 100644
index 00000000..07e8bf2c
--- /dev/null
+++ b/tests/amr/amr_test.c
@@ -0,0 +1,71 @@
+/* (C) 2021 by sysmocom s.f.m.c. GmbH
+ * All Rights Reserved
+ *
+ * Author: Philipp Maier
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#include <osmo-bts/logging.h>
+#include <osmo-bts/bts.h>
+#include <osmo-bts/amr.h>
+
+#include <osmocom/core/application.h>
+#include <osmocom/core/utils.h>
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <errno.h>
+
+static void test_amr_parse_mr_conf(void)
+{
+ uint8_t mrc_enc[] = { 0x20, 0xa5, 0x0d, 0x46, 0x52, 0x54 };
+ struct amr_multirate_conf mrc = { 0 };
+ unsigned int i;
+
+ printf("amr_parse_mr_conf() <- %s\n", osmo_hexdump(&mrc_enc[0], sizeof(mrc_enc)));
+ OSMO_ASSERT(amr_parse_mr_conf(&mrc, &mrc_enc[0], sizeof(mrc_enc)) > 0);
+ printf("amr_parse_mr_conf() -> num_modes=%u\n", mrc.num_modes);
+ for (i = 0; i < mrc.num_modes; i++) {
+ printf(" Mode[%u] = %u/%u/%u\n",
+ i, mrc.mode[i].mode,
+ mrc.mode[i].threshold,
+ mrc.mode[i].hysteresis);
+ }
+
+ mrc_enc[1] = 0xff; /* all codec modes active */
+ printf("amr_parse_mr_conf() <- %s\n", osmo_hexdump(&mrc_enc[0], sizeof(mrc_enc)));
+ OSMO_ASSERT(amr_parse_mr_conf(&mrc, &mrc_enc[0], sizeof(mrc_enc)) == -EINVAL);
+
+ mrc_enc[0] = 0xff; /* unknown version */
+ printf("amr_parse_mr_conf() <- %s\n", osmo_hexdump(&mrc_enc[0], sizeof(mrc_enc)));
+ OSMO_ASSERT(amr_parse_mr_conf(&mrc, &mrc_enc[0], sizeof(mrc_enc)) == -EINVAL);
+
+ printf("amr_parse_mr_conf() <- %s\n", osmo_hexdump(&mrc_enc[0], 1)); /* short read */
+ OSMO_ASSERT(amr_parse_mr_conf(&mrc, &mrc_enc[0], 1) == -EINVAL);
+}
+
+int main(int argc, char **argv)
+{
+ osmo_init_logging2(NULL, &bts_log_info);
+ log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_NONE);
+ log_set_print_category_hex(osmo_stderr_target, 0);
+ log_set_print_category(osmo_stderr_target, 1);
+ log_set_print_level(osmo_stderr_target, 1);
+ log_set_use_color(osmo_stderr_target, 0);
+
+ test_amr_parse_mr_conf();
+ return EXIT_SUCCESS;
+}
diff --git a/tests/amr/amr_test.err b/tests/amr/amr_test.err
new file mode 100644
index 00000000..0b7bdaf4
--- /dev/null
+++ b/tests/amr/amr_test.err
@@ -0,0 +1,3 @@
+DRSL ERROR AMR Multirate with 8 modes len=6 not possible
+DRSL ERROR AMR Multirate Version 7 unknown
+DRSL ERROR AMR Multirate IE is too short (1)
diff --git a/tests/amr/amr_test.ok b/tests/amr/amr_test.ok
new file mode 100644
index 00000000..921e8b9e
--- /dev/null
+++ b/tests/amr/amr_test.ok
@@ -0,0 +1,9 @@
+amr_parse_mr_conf() <- 20 a5 0d 46 52 54
+amr_parse_mr_conf() -> num_modes=4
+ Mode[0] = 0/13/4
+ Mode[1] = 2/25/4
+ Mode[2] = 5/37/4
+ Mode[3] = 7/0/0
+amr_parse_mr_conf() <- 20 ff 0d 46 52 54
+amr_parse_mr_conf() <- ff ff 0d 46 52 54
+amr_parse_mr_conf() <- ff
diff --git a/tests/cipher/Makefile.am b/tests/cipher/Makefile.am
index 3c23718e..c33b05ef 100644
--- a/tests/cipher/Makefile.am
+++ b/tests/cipher/Makefile.am
@@ -1,7 +1,26 @@
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
-AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(LIBOSMOTRAU_CFLAGS) $(LIBOSMOCODEC_CFLAGS)
-LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOVTY_LIBS) $(LIBOSMOTRAU_LIBS) $(LIBOSMOABIS_LIBS) $(LIBOSMOCODEC_LIBS)
-noinst_PROGRAMS = cipher_test
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOVTY_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOVTY_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOABIS_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
+
+check_PROGRAMS = cipher_test
EXTRA_DIST = cipher_test.ok
cipher_test_SOURCES = cipher_test.c $(srcdir)/../stubs.c
diff --git a/tests/cipher/cipher_test.c b/tests/cipher/cipher_test.c
index 9d78a880..8ac4018c 100644
--- a/tests/cipher/cipher_test.c
+++ b/tests/cipher/cipher_test.c
@@ -10,7 +10,7 @@
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
@@ -18,6 +18,7 @@
*/
#include <osmo-bts/bts.h>
+#include <osmo-bts/bts_sm.h>
#include <osmo-bts/logging.h>
#include <osmo-bts/paging.h>
#include <osmo-bts/gsm_data.h>
@@ -50,14 +51,14 @@ static void test_cipher_parsing(void)
ASSERT_TRUE(bts_supports_cipher(bts, i) == 0);
}
- /* checking default A5/1 to A5/3 support */
- bts->support.ciphers = CIPHER_A5(1) | CIPHER_A5(2) | CIPHER_A5(3);
+ /* checking default A5/1 to A5/4 support */
+ bts->support.ciphers = CIPHER_A5(1) | CIPHER_A5(2) | CIPHER_A5(3) | CIPHER_A5(4);
ASSERT_TRUE(bts_supports_cipher(bts, 0x0) == -ENOTSUP);
ASSERT_TRUE(bts_supports_cipher(bts, 0x1) == 1); /* A5/0 */
ASSERT_TRUE(bts_supports_cipher(bts, 0x2) == 1); /* A5/1 */
ASSERT_TRUE(bts_supports_cipher(bts, 0x3) == 1); /* A5/2 */
ASSERT_TRUE(bts_supports_cipher(bts, 0x4) == 1); /* A5/3 */
- ASSERT_TRUE(bts_supports_cipher(bts, 0x5) == 0); /* A5/4 */
+ ASSERT_TRUE(bts_supports_cipher(bts, 0x5) == 1); /* A5/4 */
ASSERT_TRUE(bts_supports_cipher(bts, 0x6) == 0); /* A5/5 */
ASSERT_TRUE(bts_supports_cipher(bts, 0x7) == 0); /* A5/6 */
ASSERT_TRUE(bts_supports_cipher(bts, 0x8) == 0); /* A5/7 */
@@ -71,7 +72,8 @@ int main(int argc, char **argv)
osmo_init_logging2(tall_bts_ctx, &bts_log_info);
- bts = gsm_bts_alloc(tall_bts_ctx, 0);
+ g_bts_sm = gsm_bts_sm_alloc(tall_bts_ctx);
+ bts = gsm_bts_alloc(g_bts_sm, 0);
if (bts_init(bts) < 0) {
fprintf(stderr, "unable to open bts\n");
exit(1);
diff --git a/tests/csd/Makefile.am b/tests/csd/Makefile.am
new file mode 100644
index 00000000..2041dd7d
--- /dev/null
+++ b/tests/csd/Makefile.am
@@ -0,0 +1,25 @@
+AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMOABIS_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
+
+check_PROGRAMS = csd_test
+EXTRA_DIST = csd_test.err
+
+csd_test_SOURCES = csd_test.c
+csd_test_LDADD = $(top_builddir)/src/common/libbts.a $(LDADD)
diff --git a/tests/csd/csd_test.c b/tests/csd/csd_test.c
new file mode 100644
index 00000000..0ad611f3
--- /dev/null
+++ b/tests/csd/csd_test.c
@@ -0,0 +1,169 @@
+/*
+ * (C) 2023 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
+ * Author: Vadim Yanitskiy <vyanitskiy@sysmocom.de>
+ *
+ * All Rights Reserved
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#include <stdint.h>
+#include <errno.h>
+
+#include <osmocom/core/bits.h>
+#include <osmocom/core/utils.h>
+#include <osmocom/gsm/gsm_utils.h>
+#include <osmocom/gsm/protocol/gsm_04_08.h>
+#include <osmocom/isdn/v110.h>
+
+#include <osmo-bts/csd_v110.h>
+#include <osmo-bts/lchan.h>
+
+#define BBUF_MAX 290
+
+struct test_case {
+ const char *name;
+ enum gsm_chan_t lchan_type;
+ enum gsm48_chan_mode tch_mode;
+ enum lchan_csd_mode csd_mode;
+};
+
+static const struct test_case tests[] = {
+ {
+ .name = "TCH/F14.4",
+ .lchan_type = GSM_LCHAN_TCH_F,
+ .tch_mode = GSM48_CMODE_DATA_14k5,
+ .csd_mode = LCHAN_CSD_M_T_14400,
+ },
+ {
+ .name = "TCH/F9.6",
+ .lchan_type = GSM_LCHAN_TCH_F,
+ .tch_mode = GSM48_CMODE_DATA_12k0,
+ .csd_mode = LCHAN_CSD_M_T_9600,
+ },
+ {
+ .name = "TCH/F9.6 NT",
+ .lchan_type = GSM_LCHAN_TCH_F,
+ .tch_mode = GSM48_CMODE_DATA_12k0,
+ .csd_mode = LCHAN_CSD_M_NT,
+ },
+ {
+ .name = "TCH/F4.8",
+ .lchan_type = GSM_LCHAN_TCH_F,
+ .tch_mode = GSM48_CMODE_DATA_6k0,
+ .csd_mode = LCHAN_CSD_M_T_4800,
+ },
+ {
+ .name = "TCH/F4.8 NT",
+ .lchan_type = GSM_LCHAN_TCH_F,
+ .tch_mode = GSM48_CMODE_DATA_6k0,
+ .csd_mode = LCHAN_CSD_M_NT,
+ },
+ {
+ .name = "TCH/H4.8",
+ .lchan_type = GSM_LCHAN_TCH_H,
+ .tch_mode = GSM48_CMODE_DATA_6k0,
+ .csd_mode = LCHAN_CSD_M_T_4800,
+ },
+ {
+ .name = "TCH/F2.4",
+ .lchan_type = GSM_LCHAN_TCH_F,
+ .tch_mode = GSM48_CMODE_DATA_3k6,
+ .csd_mode = LCHAN_CSD_M_T_2400,
+ },
+ {
+ .name = "TCH/H2.4",
+ .lchan_type = GSM_LCHAN_TCH_H,
+ .tch_mode = GSM48_CMODE_DATA_3k6,
+ .csd_mode = LCHAN_CSD_M_T_600,
+ },
+};
+
+static void exec_test_case(const struct test_case *tc)
+{
+ const struct csd_v110_frame_desc *desc;
+ uint8_t rtp[RFC4040_RTP_PLEN] = { 0 };
+ ubit_t data_enc[BBUF_MAX];
+ ubit_t data_dec[BBUF_MAX];
+ int rc;
+
+ /* obtain a V.110 frame description for the given channel type/rate */
+ OSMO_ASSERT(tc->tch_mode < ARRAY_SIZE(csd_v110_lchan_desc));
+ if (tc->lchan_type == GSM_LCHAN_TCH_F)
+ desc = &csd_v110_lchan_desc[tc->tch_mode].fr;
+ else
+ desc = &csd_v110_lchan_desc[tc->tch_mode].hr;
+
+ /* total number of bits carried by a radio interface block */
+ const unsigned int bit_num = desc->num_bits * desc->num_blocks;
+ if (bit_num == 0) {
+ fprintf(stderr, "[i] Skipping '%s' (not implemented)\n", tc->name);
+ return;
+ }
+
+ fprintf(stderr, "[i] Testing '%s' (bitnum=%u)\n", tc->name, bit_num);
+
+ struct gsm_lchan lchan = {
+ .type = tc->lchan_type,
+ .tch_mode = tc->tch_mode,
+ .csd_mode = tc->csd_mode,
+ };
+
+ /* populate the data_enc[] buffer with some bits */
+ OSMO_ASSERT(bit_num <= BBUF_MAX);
+ for (unsigned int i = 0; i < bit_num; i++)
+ data_enc[i] = i & 0x01;
+
+ /* encode an RTP frame and print it */
+ rc = csd_v110_rtp_encode(&lchan, &rtp[0], &data_enc[0], bit_num);
+ fprintf(stderr, "[i] csd_v110_rtp_encode() returns %d\n", rc);
+ if (rc != RFC4040_RTP_PLEN)
+ return;
+ /* print the encoded RTP frame (16 bytes per row) */
+ for (unsigned int i = 0; i < sizeof(rtp) / 16; i++)
+ fprintf(stderr, " %s\n", osmo_hexdump(&rtp[i * 16], 16));
+
+ /* decode the encoded RTP frame */
+ rc = csd_v110_rtp_decode(&lchan, &data_dec[0], &rtp[0], sizeof(rtp));
+ fprintf(stderr, "[i] csd_v110_rtp_decode() returns %d\n", rc);
+ if (rc != bit_num)
+ return;
+ /* compare data_dec[] vs data_enc[] */
+ for (unsigned int i = 0; i < bit_num; i++) {
+ if (data_dec[i] == data_enc[i])
+ continue;
+ fprintf(stderr, "[!] Data mismatch @ %03u: D%u vs E%u\n",
+ i, data_dec[i], data_enc[i]);
+ }
+
+ fprintf(stderr, "[i] Testing '%s' (IDLE)\n", tc->name);
+
+ /* encode an idle RTP frame and print it */
+ rc = csd_v110_rtp_encode(&lchan, &rtp[0], &data_enc[0], 0);
+ fprintf(stderr, "[i] csd_v110_rtp_encode() returns %d\n", rc);
+ if (rc != RFC4040_RTP_PLEN)
+ return;
+ /* print the encoded RTP frame (16 bytes per row) */
+ for (unsigned int i = 0; i < sizeof(rtp) / 16; i++)
+ fprintf(stderr, " %s\n", osmo_hexdump(&rtp[i * 16], 16));
+}
+
+int main(int argc, char **argv)
+{
+ for (unsigned int i = 0; i < ARRAY_SIZE(tests); i++)
+ exec_test_case(&tests[i]);
+
+ return 0;
+}
diff --git a/tests/csd/csd_test.err b/tests/csd/csd_test.err
new file mode 100644
index 00000000..cf19aff9
--- /dev/null
+++ b/tests/csd/csd_test.err
@@ -0,0 +1,176 @@
+[i] Skipping 'TCH/F14.4' (not implemented)
+[i] Testing 'TCH/F9.6' (bitnum=240)
+[i] csd_v110_rtp_encode() returns 160
+ 3f 3f 3f 3f bf bf bf bf ff 7f 7f 7f bf bf bf bf
+ ff 7f 7f 7f bf ff 7f 7f bf bf bf bf ff 7f 7f 7f
+ bf bf bf bf ff 7f 7f 7f 3f 3f 3f 3f bf bf bf bf
+ ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f bf ff 7f 7f
+ bf bf bf bf ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f
+ 3f 3f 3f 3f bf bf bf bf ff 7f 7f 7f bf bf bf bf
+ ff 7f 7f 7f bf ff 7f 7f bf bf bf bf ff 7f 7f 7f
+ bf bf bf bf ff 7f 7f 7f 3f 3f 3f 3f bf bf bf bf
+ ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f bf ff 7f 7f
+ bf bf bf bf ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f
+[i] csd_v110_rtp_decode() returns 240
+[i] Testing 'TCH/F9.6' (IDLE)
+[i] csd_v110_rtp_encode() returns 160
+ 3f 3f 3f 3f ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff 3f 3f 3f 3f ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ 3f 3f 3f 3f ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff 3f 3f 3f 3f ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+[i] Testing 'TCH/F9.6 NT' (bitnum=240)
+[i] csd_v110_rtp_encode() returns 160
+ 3f 3f 3f 3f bf bf bf bf ff 7f 7f 7f bf bf bf bf
+ ff 7f 7f 7f bf 3f 7f 7f bf bf bf bf ff 7f 7f 7f
+ bf bf bf bf ff 7f 7f 7f 3f 3f 3f 3f bf bf bf bf
+ ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f bf 7f 7f 7f
+ bf bf bf bf ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f
+ 3f 3f 3f 3f bf bf bf bf ff 7f 7f 7f bf bf bf bf
+ ff 7f 7f 7f bf bf 7f 7f bf bf bf bf ff 7f 7f 7f
+ bf bf bf bf ff 7f 7f 7f 3f 3f 3f 3f bf bf bf bf
+ ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f bf ff 7f 7f
+ bf bf bf bf ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f
+[i] csd_v110_rtp_decode() returns 240
+[i] Testing 'TCH/F9.6 NT' (IDLE)
+[i] csd_v110_rtp_encode() returns 160
+ 3f 3f 3f 3f ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff 3f 3f 3f 3f ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ 3f 3f 3f 3f ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff 3f 3f 3f 3f ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+[i] Testing 'TCH/F4.8' (bitnum=120)
+[i] csd_v110_rtp_encode() returns 160
+ 7f 7f 7f 7f 7f 7f 7f 7f ff 7f ff 7f ff 7f ff 7f
+ ff ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff 7f
+ ff ff 7f ff 7f ff 7f ff ff 7f ff ff 7f ff 7f ff
+ ff 7f ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff
+ ff 7f ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff
+ 7f 7f 7f 7f 7f 7f 7f 7f ff 7f ff 7f ff 7f ff 7f
+ ff ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff 7f
+ ff ff 7f ff 7f ff 7f ff ff 7f ff ff 7f ff 7f ff
+ ff 7f ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff
+ ff 7f ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff
+[i] csd_v110_rtp_decode() returns 120
+[i] Testing 'TCH/F4.8' (IDLE)
+[i] csd_v110_rtp_encode() returns 160
+ 7f 7f 7f 7f 7f 7f 7f 7f ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ 7f 7f 7f 7f 7f 7f 7f 7f ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+[i] Testing 'TCH/F4.8 NT' (bitnum=120)
+[i] csd_v110_rtp_encode() returns 160
+ 7f 7f 7f 7f 7f 7f 7f 7f ff 7f ff 7f ff 7f ff 7f
+ ff ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff 7f
+ ff ff 7f ff 7f ff 7f ff ff 7f 7f 7f 7f ff 7f ff
+ ff 7f ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff
+ ff 7f ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff
+ 7f 7f 7f 7f 7f 7f 7f 7f ff 7f ff 7f ff 7f ff 7f
+ ff ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff 7f
+ ff ff 7f ff 7f ff 7f ff ff 7f 7f ff 7f ff 7f ff
+ ff 7f ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff
+ ff 7f ff 7f ff 7f ff 7f ff ff 7f ff 7f ff 7f ff
+[i] csd_v110_rtp_decode() returns 120
+[i] Testing 'TCH/F4.8 NT' (IDLE)
+[i] csd_v110_rtp_encode() returns 160
+ 7f 7f 7f 7f 7f 7f 7f 7f ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ 7f 7f 7f 7f 7f 7f 7f 7f ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+[i] Testing 'TCH/H4.8' (bitnum=240)
+[i] csd_v110_rtp_encode() returns 160
+ 3f 3f 3f 3f bf bf bf bf ff 7f 7f 7f bf bf bf bf
+ ff 7f 7f 7f bf ff 7f 7f bf bf bf bf ff 7f 7f 7f
+ bf bf bf bf ff 7f 7f 7f 3f 3f 3f 3f bf bf bf bf
+ ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f bf ff 7f 7f
+ bf bf bf bf ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f
+ 3f 3f 3f 3f bf bf bf bf ff 7f 7f 7f bf bf bf bf
+ ff 7f 7f 7f bf ff 7f 7f bf bf bf bf ff 7f 7f 7f
+ bf bf bf bf ff 7f 7f 7f 3f 3f 3f 3f bf bf bf bf
+ ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f bf ff 7f 7f
+ bf bf bf bf ff 7f 7f 7f bf bf bf bf ff 7f 7f 7f
+[i] csd_v110_rtp_decode() returns 240
+[i] Testing 'TCH/H4.8' (IDLE)
+[i] csd_v110_rtp_encode() returns 160
+ 3f 3f 3f 3f ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff 3f 3f 3f 3f ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ 3f 3f 3f 3f ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff 3f 3f 3f 3f ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+[i] Testing 'TCH/F2.4' (bitnum=72)
+[i] csd_v110_rtp_encode() returns 160
+ 7f 7f 7f 7f 7f 7f 7f 7f ff 7f 7f ff ff 7f 7f ff
+ ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff
+ ff 7f 7f ff ff 7f 7f ff ff ff ff 7f 7f ff 7f ff
+ ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff
+ ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff
+ 7f 7f 7f 7f 7f 7f 7f 7f ff 7f 7f ff ff 7f 7f ff
+ ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff
+ ff 7f 7f ff ff 7f 7f ff ff ff ff 7f 7f ff 7f ff
+ ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff
+ ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff ff 7f 7f ff
+[i] csd_v110_rtp_decode() returns 72
+[i] Testing 'TCH/F2.4' (IDLE)
+[i] csd_v110_rtp_encode() returns 160
+ 7f 7f 7f 7f 7f 7f 7f 7f ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ 7f 7f 7f 7f 7f 7f 7f 7f ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+[i] Testing 'TCH/H2.4' (bitnum=144)
+[i] csd_v110_rtp_encode() returns 160
+ 3f 3f 3f 3f bf 7f bf 7f bf 7f bf 7f bf 7f bf 7f
+ bf 7f bf 7f ff 3f 7f 7f bf 7f bf 7f bf 7f bf 7f
+ bf 7f bf 7f bf 7f bf 7f 3f 3f 3f 3f bf 7f bf 7f
+ bf 7f bf 7f bf 7f bf 7f bf 7f bf 7f ff 3f 7f 7f
+ bf 7f bf 7f bf 7f bf 7f bf 7f bf 7f bf 7f bf 7f
+ 3f 3f 3f 3f bf 7f bf 7f bf 7f bf 7f bf 7f bf 7f
+ bf 7f bf 7f ff 3f 7f 7f bf 7f bf 7f bf 7f bf 7f
+ bf 7f bf 7f bf 7f bf 7f 3f 3f 3f 3f bf 7f bf 7f
+ bf 7f bf 7f bf 7f bf 7f bf 7f bf 7f ff 3f 7f 7f
+ bf 7f bf 7f bf 7f bf 7f bf 7f bf 7f bf 7f bf 7f
+[i] csd_v110_rtp_decode() returns 144
+[i] Testing 'TCH/H2.4' (IDLE)
+[i] csd_v110_rtp_encode() returns 160
+ 3f 3f 3f 3f ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff 3f 3f 3f 3f ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ 3f 3f 3f 3f ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff 3f 3f 3f 3f ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
+ ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
diff --git a/tests/handover/Makefile.am b/tests/handover/Makefile.am
index 966ea469..789696e3 100644
--- a/tests/handover/Makefile.am
+++ b/tests/handover/Makefile.am
@@ -1,8 +1,25 @@
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
-AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOCODEC_CFLAGS) $(LIBOSMOTRAU_CFLAGS) $(LIBOSMOABIS_CFLAGS)
-LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOCODEC_LIBS) $(LIBOSMOTRAU_LIBS) $(LIBOSMOABIS_LIBS)
-noinst_PROGRAMS = handover_test
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOABIS_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
+
+check_PROGRAMS = handover_test
EXTRA_DIST = handover_test.ok
-handover_test_SOURCES = handover_test.c
+handover_test_SOURCES = handover_test.c $(srcdir)/../stubs.c
handover_test_LDADD = $(top_builddir)/src/common/libbts.a $(LDADD)
diff --git a/tests/handover/handover_test.c b/tests/handover/handover_test.c
index c9799af7..f1235f53 100644
--- a/tests/handover/handover_test.c
+++ b/tests/handover/handover_test.c
@@ -28,6 +28,7 @@
#include <osmo-bts/logging.h>
#include <osmo-bts/abis.h>
#include <osmo-bts/bts.h>
+#include <osmo-bts/bts_sm.h>
#include <osmo-bts/vty.h>
#include <osmo-bts/bts_model.h>
#include <osmo-bts/pcu_if.h>
@@ -58,6 +59,7 @@ int main(int argc, char **argv)
{
void *tall_bts_ctx;
struct e1inp_line *line;
+ struct e1inp_ts *sign_ts;
struct gsm_lchan *lchan;
struct osmo_phsap_prim nl1sap;
struct msgb *msg;
@@ -70,7 +72,12 @@ int main(int argc, char **argv)
osmo_init_logging2(tall_bts_ctx, &bts_log_info);
osmo_stderr_target->categories[DHO].loglevel = LOGL_DEBUG;
- bts = gsm_bts_alloc(tall_bts_ctx, 0);
+ g_bts_sm = gsm_bts_sm_alloc(tall_bts_ctx);
+ if (!g_bts_sm) {
+ fprintf(stderr, "Failed to create BTS Site Manager structure\n");
+ exit(1);
+ }
+ bts = gsm_bts_alloc(g_bts_sm, 0);
if (!bts) {
fprintf(stderr, "Failed to create BTS structure\n");
exit(1);
@@ -85,35 +92,31 @@ int main(int argc, char **argv)
fprintf(stderr, "Failed to alloc TRX structure\n");
exit(1);
}
- if (bts_trx_init(trx) < 0) {
- fprintf(stderr, "unable to init TRX\n");
- exit(1);
- }
libosmo_abis_init(NULL);
line = e1inp_line_create(0, "ipa");
OSMO_ASSERT(line);
-
- e1inp_ts_config_sign(&line->ts[E1INP_SIGN_RSL-1], line);
- trx->rsl_link = e1inp_sign_link_create(&line->ts[E1INP_SIGN_RSL-1], E1INP_SIGN_RSL, NULL, 0, 0);
- OSMO_ASSERT(trx->rsl_link);
- trx->rsl_link->trx = trx;
+ sign_ts = e1inp_line_ipa_rsl_ts(line, 0);
+ e1inp_ts_config_sign(sign_ts, line);
+ trx->bb_transc.rsl.link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_RSL, NULL, 0, 0);
+ OSMO_ASSERT(trx->bb_transc.rsl.link);
+ trx->bb_transc.rsl.link->trx = trx;
fprintf(stderr, "test 1: without timeout\n");
/* create two lchans for handover */
lchan = &trx->ts[1].lchan[0];
lchan->type = GSM_LCHAN_SDCCH;
- l1sap_chan_act(lchan->ts->trx, 0x09, NULL);
+ l1sap_chan_act(lchan->ts->trx, 0x09);
lchan = &trx->ts[2].lchan[0];
lchan->type = GSM_LCHAN_TCH_F;
lchan->ho.active = HANDOVER_ENABLED;
lchan->ho.ref = 23;
- l1sap_chan_act(lchan->ts->trx, 0x0a, NULL);
- OSMO_ASSERT(msgb_dequeue(&trx->rsl_link->tx_list));
- OSMO_ASSERT(msgb_dequeue(&trx->rsl_link->tx_list));
- OSMO_ASSERT(!msgb_dequeue(&trx->rsl_link->tx_list));
+ l1sap_chan_act(lchan->ts->trx, 0x0a);
+ OSMO_ASSERT(msgb_dequeue(&trx->bb_transc.rsl.link->tx_list));
+ OSMO_ASSERT(msgb_dequeue(&trx->bb_transc.rsl.link->tx_list));
+ OSMO_ASSERT(!msgb_dequeue(&trx->bb_transc.rsl.link->tx_list));
/* send access burst with wrong ref */
memset(&nl1sap, 0, sizeof(nl1sap));
@@ -126,7 +129,7 @@ int main(int argc, char **argv)
/* expect no action */
OSMO_ASSERT(modify_count == 0);
- OSMO_ASSERT(!msgb_dequeue(&trx->rsl_link->tx_list));
+ OSMO_ASSERT(!msgb_dequeue(&trx->bb_transc.rsl.link->tx_list));
/* send access burst with correct ref */
nl1sap.u.rach_ind.ra = 23;
@@ -137,10 +140,10 @@ int main(int argc, char **argv)
expect_phys_info(&trx->ts[2].lchan[0].lapdm_ch.lapdm_dcch);
/* expect exactly one HO.DET */
- OSMO_ASSERT(msg = msgb_dequeue(&trx->rsl_link->tx_list));
+ OSMO_ASSERT(msg = msgb_dequeue(&trx->bb_transc.rsl.link->tx_list));
rslh = msgb_l2(msg);
OSMO_ASSERT(rslh->c.msg_type == RSL_MT_HANDO_DET);
- OSMO_ASSERT(!msgb_dequeue(&trx->rsl_link->tx_list));
+ OSMO_ASSERT(!msgb_dequeue(&trx->bb_transc.rsl.link->tx_list));
/* expect T3105 running */
OSMO_ASSERT(osmo_timer_pending(&trx->ts[2].lchan[0].ho.t3105))
@@ -168,10 +171,10 @@ int main(int argc, char **argv)
expect_phys_info(&trx->ts[2].lchan[0].lapdm_ch.lapdm_dcch);
/* expect exactly one HO.DET */
- OSMO_ASSERT(msg = msgb_dequeue(&trx->rsl_link->tx_list));
+ OSMO_ASSERT(msg = msgb_dequeue(&trx->bb_transc.rsl.link->tx_list));
rslh = msgb_l2(msg);
OSMO_ASSERT(rslh->c.msg_type == RSL_MT_HANDO_DET);
- OSMO_ASSERT(!msgb_dequeue(&trx->rsl_link->tx_list));
+ OSMO_ASSERT(!msgb_dequeue(&trx->bb_transc.rsl.link->tx_list));
for (i = 0; i < bts->ny1 - 1; i++) {
/* expect T3105 running */
@@ -193,10 +196,10 @@ int main(int argc, char **argv)
OSMO_ASSERT(!osmo_timer_pending(&trx->ts[2].lchan[0].ho.t3105))
/* expect exactly one CONN.FAIL */
- OSMO_ASSERT(msg = msgb_dequeue(&trx->rsl_link->tx_list));
+ OSMO_ASSERT(msg = msgb_dequeue(&trx->bb_transc.rsl.link->tx_list));
rslh = msgb_l2(msg);
OSMO_ASSERT(rslh->c.msg_type == RSL_MT_CONN_FAIL);
- OSMO_ASSERT(!msgb_dequeue(&trx->rsl_link->tx_list));
+ OSMO_ASSERT(!msgb_dequeue(&trx->bb_transc.rsl.link->tx_list));
#if 0
while (!quit) {
@@ -268,18 +271,3 @@ done:
msgb_free(msg);
return rc;
}
-
-int bts_model_check_oml(struct gsm_bts *bts, uint8_t msg_type, struct tlv_parsed *old_attr, struct tlv_parsed *new_attr, void *obj) { return 0; }
-int bts_model_apply_oml(struct gsm_bts *bts, struct msgb *msg, struct tlv_parsed *new_attr, int obj_kind, void *obj) { return 0; }
-int bts_model_opstart(struct gsm_bts *bts, struct gsm_abis_mo *mo, void *obj) { return 0; }
-int bts_model_chg_adm_state(struct gsm_bts *bts, struct gsm_abis_mo *mo, void *obj, uint8_t adm_state) { return 0; }
-int bts_model_init(struct gsm_bts *bts) { return 0; }
-int bts_model_trx_init(struct gsm_bts_trx *trx) { return 0; }
-int bts_model_trx_deact_rf(struct gsm_bts_trx *trx) { return 0; }
-int bts_model_trx_close(struct gsm_bts_trx *trx) { return 0; }
-void trx_get_hlayer1(void) {}
-int bts_model_adjst_ms_pwr(struct gsm_lchan *lchan) { return 0; }
-int bts_model_ts_disconnect(struct gsm_bts_trx_ts *ts) { return 0; }
-void bts_model_ts_connect(struct gsm_bts_trx_ts *ts, enum gsm_phys_chan_config as_pchan) { return; }
-int bts_model_lchan_deactivate(struct gsm_lchan *lchan) { return 0; }
-int bts_model_lchan_deactivate_sacch(struct gsm_lchan *lchan) { return 0; }
diff --git a/tests/meas/Makefile.am b/tests/meas/Makefile.am
index d8fa1182..cb014f26 100644
--- a/tests/meas/Makefile.am
+++ b/tests/meas/Makefile.am
@@ -1,9 +1,26 @@
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
-AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOCODEC_CFLAGS) $(LIBOSMOTRAU_CFLAGS) $(LIBOSMOABIS_CFLAGS)
-LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOCODEC_LIBS) $(LIBOSMOTRAU_LIBS) $(LIBOSMOABIS_LIBS)
-noinst_PROGRAMS = meas_test
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMOABIS_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
+
+check_PROGRAMS = meas_test
noinst_HEADERS = sysmobts_fr_samples.h meas_testcases.h
-EXTRA_DIST = meas_test.ok
+EXTRA_DIST = meas_test.ok meas_test.err
-meas_test_SOURCES = meas_test.c
+meas_test_SOURCES = meas_test.c $(srcdir)/../stubs.c
meas_test_LDADD = $(top_builddir)/src/common/libbts.a $(LDADD)
diff --git a/tests/meas/meas_test.c b/tests/meas/meas_test.c
index b2bf80e2..6936ed0e 100644
--- a/tests/meas/meas_test.c
+++ b/tests/meas/meas_test.c
@@ -8,6 +8,7 @@
#include <osmo-bts/gsm_data.h>
#include <osmo-bts/logging.h>
#include <osmo-bts/bts.h>
+#include <osmo-bts/bts_sm.h>
#include <osmo-bts/measurement.h>
#include <osmo-bts/rsl.h>
@@ -84,11 +85,12 @@ static void test_meas_compute(const struct meas_testcase *mtc)
lchan = &trx->ts[mtc->ts].lchan[0];
lchan->ts->pchan = mtc->pchan;
+ lchan->tch_mode = GSM48_CMODE_SPEECH_V1;
reset_lchan_meas(lchan);
/* feed uplink measurements into the code */
for (i = 0; i < mtc->ulm_count; i++) {
- lchan_new_ul_meas(lchan, (struct bts_ul_meas *) &mtc->ulm[i], fn);
+ lchan_new_ul_meas(lchan, &mtc->ulm[i], fn);
fn += 1;
}
@@ -306,7 +308,7 @@ static void test_is_meas_complete(void)
* received. The process must still go on when measurement indications (blocks)
* are lost or otherwise spaced out. Even the complete absence of the
* measurement indications from the SACCH which are used to detect the interval
- * end must not keep the interval from beeing processed. */
+ * end must not keep the interval from being processed. */
void test_lchan_meas_process_measurement(bool no_sacch, bool dropouts)
{
struct gsm_lchan *lchan = &trx->ts[2].lchan[0];
@@ -328,7 +330,7 @@ void test_lchan_meas_process_measurement(bool no_sacch, bool dropouts)
ulm.ber10k = 0;
ulm.ta_offs_256bits = 256;
- ulm.c_i = 0;
+ ulm.ci_cb = 0;
ulm.is_sub = 0;
ulm.inv_rssi = 90;
@@ -372,73 +374,27 @@ void test_lchan_meas_process_measurement(bool no_sacch, bool dropouts)
}
}
-static bool test_ts45008_83_is_sub_is_sacch(uint32_t fn)
-{
- if (fn % 104 == 12)
- return true;
- if (fn % 104 == 25)
- return true;
- if (fn % 104 == 38)
- return true;
- if (fn % 104 == 51)
- return true;
- if (fn % 104 == 64)
- return true;
- if (fn % 104 == 77)
- return true;
- if (fn % 104 == 90)
- return true;
- if (fn % 104 == 103)
- return true;
-
- return false;
-}
-
-static bool test_ts45008_83_is_sub_is_sub(uint32_t fn, uint8_t ss)
+static bool test_ts45008_83_is_sub_is_sub(const struct gsm_lchan *lchan, uint32_t fn)
{
fn = fn % 104;
- if (fn >= 52 && fn <= 59)
- return true;
-
- if (ss == 0) {
- if (fn == 0)
- return true;
- if (fn == 2)
- return true;
- if (fn == 4)
- return true;
- if (fn == 6)
- return true;
- if (fn == 52)
- return true;
- if (fn == 54)
- return true;
- if (fn == 56)
- return true;
- if (fn == 58)
- return true;
- } else if (ss == 1) {
- if (fn == 14)
+ switch (lchan->type) {
+ case GSM_LCHAN_TCH_F:
+ /* block {52, 53, 54, 55, 56, 57, 58, 59} */
+ return fn == 52;
+ case GSM_LCHAN_TCH_H:
+ if (fn == 0) /* H0 block { 0, 2, 4, 6} */
return true;
- if (fn == 16)
+ if (fn == 52) /* H0 block {52, 54, 56, 58} */
return true;
- if (fn == 18)
+ if (fn == 14) /* H1 block {14, 16, 18, 20} */
return true;
- if (fn == 20)
+ if (fn == 66) /* H1 block {66, 68, 70, 72} */
return true;
- if (fn == 66)
- return true;
- if (fn == 68)
- return true;
- if (fn == 70)
- return true;
- if (fn == 72)
- return true;
- } else
- OSMO_ASSERT(false);
-
- return false;
+ return false;
+ default:
+ return false;
+ }
}
static void test_ts45008_83_is_sub_single(uint8_t ts, uint8_t ss, bool fr)
@@ -463,29 +419,17 @@ static void test_ts45008_83_is_sub_single(uint8_t ts, uint8_t ss, bool fr)
lchan->tch_mode = GSM48_CMODE_SPEECH_V1;
}
- printf(" TS=%u ", ts);
- printf("SS=%u", ss);
+ printf(" TS=%u SS=%u\n", ts, ss);
/* Walk trough the first 100 intervals and check for unexpected
* results (false positive and false negative) */
for (i = 0; i < 104 * 100; i++) {
- rc = ts45008_83_is_sub(lchan, i, false);
- if (rc) {
- if (!test_ts45008_83_is_sub_is_sacch(i)
- && !test_ts45008_83_is_sub_is_sub(i, ss)) {
- printf("==> Unexpected SUB frame at fn=%u", i);
- OSMO_ASSERT(false);
- }
- } else {
- if (test_ts45008_83_is_sub_is_sacch(i)
- && test_ts45008_83_is_sub_is_sub(i, ss)) {
- printf("==> Unexpected non-SUB frame at fn=%u",
- i);
- OSMO_ASSERT(false);
- }
+ rc = ts45008_83_is_sub(lchan, i);
+ if (rc != test_ts45008_83_is_sub_is_sub(lchan, i)) {
+ printf(" ==> ts45008_83_is_sub(fn=%u) yields %s, expected %s\n",
+ i, rc ? "true" : "false", !rc ? "true" : "false");
}
}
- printf("\n");
}
static void test_ts45008_83_is_sub(void)
@@ -512,9 +456,20 @@ int main(int argc, char **argv)
msgb_talloc_ctx_init(tall_bts_ctx, 0);
osmo_init_logging2(tall_bts_ctx, &bts_log_info);
- osmo_stderr_target->categories[DMEAS].loglevel = LOGL_DEBUG;
-
- bts = gsm_bts_alloc(tall_bts_ctx, 0);
+ log_set_log_level(osmo_stderr_target, LOGL_DEBUG);
+ log_set_print_category_hex(osmo_stderr_target, 0);
+ log_set_print_category(osmo_stderr_target, 0);
+ log_set_print_level(osmo_stderr_target, 1);
+ log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_NONE);
+ log_set_use_color(osmo_stderr_target, 0);
+ log_parse_category_mask(osmo_stderr_target, "DMEAS,1:");
+
+ g_bts_sm = gsm_bts_sm_alloc(tall_bts_ctx);
+ if (!g_bts_sm) {
+ fprintf(stderr, "Failed to create BTS Site Manager structure\n");
+ exit(1);
+ }
+ bts = gsm_bts_alloc(g_bts_sm, 0);
if (!bts) {
fprintf(stderr, "Failed to create BTS structure\n");
exit(1);
@@ -529,10 +484,6 @@ int main(int argc, char **argv)
fprintf(stderr, "Failed to alloc TRX structure\n");
exit(1);
}
- if (bts_trx_init(trx) < 0) {
- fprintf(stderr, "unable to init TRX\n");
- exit(1);
- }
printf("\n");
printf("***********************\n");
@@ -588,88 +539,3 @@ int main(int argc, char **argv)
return 0;
}
-
-/* Stubs */
-void bts_model_abis_close(struct gsm_bts *bts)
-{
-}
-
-int bts_model_oml_estab(struct gsm_bts *bts)
-{
- return 0;
-}
-
-int bts_model_l1sap_down(struct gsm_bts_trx *trx, struct osmo_phsap_prim *l1sap)
-{
- return 0;
-}
-
-int bts_model_check_oml(struct gsm_bts *bts, uint8_t msg_type, struct tlv_parsed *old_attr, struct tlv_parsed *new_attr,
- void *obj)
-{
- return 0;
-}
-
-int bts_model_apply_oml(struct gsm_bts *bts, struct msgb *msg, struct tlv_parsed *new_attr, int obj_kind, void *obj)
-{
- return 0;
-}
-
-int bts_model_opstart(struct gsm_bts *bts, struct gsm_abis_mo *mo, void *obj)
-{
- return 0;
-}
-
-int bts_model_chg_adm_state(struct gsm_bts *bts, struct gsm_abis_mo *mo, void *obj, uint8_t adm_state)
-{
- return 0;
-}
-
-int bts_model_init(struct gsm_bts *bts)
-{
- return 0;
-}
-
-int bts_model_trx_init(struct gsm_bts_trx *trx)
-{
- return 0;
-}
-
-int bts_model_trx_deact_rf(struct gsm_bts_trx *trx)
-{
- return 0;
-}
-
-int bts_model_trx_close(struct gsm_bts_trx *trx)
-{
- return 0;
-}
-
-void trx_get_hlayer1(void)
-{
-}
-
-int bts_model_adjst_ms_pwr(struct gsm_lchan *lchan)
-{
- return 0;
-}
-
-int bts_model_ts_disconnect(struct gsm_bts_trx_ts *ts)
-{
- return 0;
-}
-
-void bts_model_ts_connect(struct gsm_bts_trx_ts *ts, enum gsm_phys_chan_config as_pchan)
-{
- return;
-}
-
-int bts_model_lchan_deactivate(struct gsm_lchan *lchan)
-{
- return 0;
-}
-
-int bts_model_lchan_deactivate_sacch(struct gsm_lchan *lchan)
-{
- return 0;
-}
diff --git a/tests/meas/meas_test.err b/tests/meas/meas_test.err
new file mode 100644
index 00000000..f5176f11
--- /dev/null
+++ b/tests/meas/meas_test.err
@@ -0,0 +1,8241 @@
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010958/08/12/44/50 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011062/08/12/46/02 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011166/08/12/48/02 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011270/08/12/50/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011374/08/12/01/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011478/08/12/03/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011491/08/25/16/19 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011582/08/12/05/10 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011595/08/25/18/23 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011686/08/12/07/10 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011699/08/25/20/23 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011790/08/12/09/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011803/08/25/22/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011894/08/12/11/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011907/08/25/24/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011998/09/12/13/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 012011/09/25/26/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 012102/09/12/15/18 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 012115/09/25/28/31 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 012206/09/12/17/18 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 012219/09/25/30/31 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 012310/09/12/19/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 012323/09/25/32/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 012414/09/12/21/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 012427/09/25/34/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 012518/09/12/23/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 012531/09/25/36/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 012622/09/12/25/26 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 012635/09/25/38/39 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005888/04/12/23/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005992/04/12/25/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006096/04/12/27/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006200/04/12/29/04 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006213/04/25/42/17 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006304/04/12/31/04 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006317/04/25/44/17 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006408/04/12/33/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006421/04/25/46/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006512/04/12/35/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006525/04/25/48/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006616/04/12/37/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006629/04/25/50/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006720/05/12/39/12 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006733/05/25/01/25 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006824/05/12/41/12 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006837/05/25/03/25 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006928/05/12/43/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006941/05/25/05/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007032/05/12/45/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007045/05/25/07/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007136/05/12/47/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007149/05/25/09/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007240/05/12/49/20 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007253/05/25/11/33 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007344/05/12/00/20 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007357/05/25/13/33 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007448/05/12/02/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007461/05/25/15/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007552/05/12/04/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007565/05/25/17/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007656/05/12/06/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007669/05/25/19/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007760/05/12/08/28 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007773/05/25/21/41 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007864/05/12/10/28 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007877/05/25/23/41 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007968/06/12/12/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007981/06/25/25/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008072/06/12/14/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008085/06/25/27/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008176/06/12/16/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008189/06/25/29/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008280/06/12/18/36 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008293/06/25/31/49 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008384/06/12/20/36 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008397/06/25/33/49 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008488/06/12/22/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008501/06/25/35/01 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008592/06/12/24/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008605/06/25/37/01 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008696/06/12/26/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008709/06/25/39/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008800/06/12/28/44 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008813/06/25/41/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008904/06/12/30/44 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008917/06/25/43/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009008/06/12/32/48 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009021/06/25/45/09 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009112/06/12/34/48 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009125/06/25/47/09 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009216/06/12/36/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009229/06/25/49/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009320/07/12/38/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009333/07/25/00/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009424/07/12/40/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009437/07/25/02/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009528/07/12/42/04 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009541/07/25/04/17 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009632/07/12/44/04 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009645/07/25/06/17 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008618/06/12/50/14 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008722/06/12/01/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008826/06/12/03/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008930/06/12/05/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008943/06/25/18/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009034/06/12/07/22 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009047/06/25/20/35 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009138/06/12/09/22 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009151/06/25/22/35 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009242/06/12/11/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009255/06/25/24/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009346/07/12/13/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009359/07/25/26/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009450/07/12/15/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009463/07/25/28/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009554/07/12/17/30 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009567/07/25/30/43 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009658/07/12/19/30 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009671/07/25/32/43 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009762/07/12/21/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009775/07/25/34/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009866/07/12/23/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009879/07/25/36/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009970/07/12/25/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009983/07/25/38/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010074/07/12/27/38 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010087/07/25/40/51 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010178/07/12/29/38 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010191/07/25/42/51 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010282/07/12/31/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010295/07/25/44/03 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010386/07/12/33/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010399/07/25/46/03 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010490/07/12/35/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010503/07/25/48/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010594/07/12/37/46 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010607/07/25/50/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010698/08/12/39/46 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010711/08/25/01/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010802/08/12/41/50 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010815/08/25/03/11 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010906/08/12/43/50 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010919/08/25/05/11 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011010/08/12/45/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011023/08/25/07/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011114/08/12/47/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011127/08/25/09/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011218/08/12/49/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011231/08/25/11/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011322/08/12/00/06 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011335/08/25/13/19 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011426/08/12/02/06 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011439/08/25/15/19 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011530/08/12/04/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011543/08/25/17/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011634/08/12/06/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011647/08/25/19/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011738/08/12/08/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011751/08/25/21/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011842/08/12/10/14 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011855/08/25/23/27 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011946/09/12/12/14 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011959/09/25/25/27 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 012050/09/12/14/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012063/09/25/27/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 012154/09/12/16/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012167/09/25/29/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 24 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(96.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008982/06/12/06/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009086/06/12/08/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009190/06/12/10/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009294/07/12/12/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009398/07/12/14/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009411/07/25/27/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009502/07/12/16/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009515/07/25/29/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009606/07/12/18/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009619/07/25/31/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009710/07/12/20/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009723/07/25/33/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009814/07/12/22/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009827/07/25/35/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009918/07/12/24/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009931/07/25/37/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010022/07/12/26/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010035/07/25/39/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010126/07/12/28/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010139/07/25/41/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010230/07/12/30/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010243/07/25/43/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010334/07/12/32/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010347/07/25/45/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010438/07/12/34/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010451/07/25/47/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010542/07/12/36/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010555/07/25/49/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010646/08/12/38/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010659/08/25/00/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010750/08/12/40/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010763/08/25/02/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010854/08/12/42/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010867/08/25/04/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010958/08/12/44/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010971/08/25/06/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011062/08/12/46/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 011075/08/25/08/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011166/08/12/48/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 011179/08/25/10/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011270/08/12/50/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 011283/08/25/12/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011374/08/12/01/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 011387/08/25/14/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011478/08/12/03/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=1) 011491/08/25/16/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 011582/08/12/05/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010022/07/12/26/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010035/07/25/39/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010126/07/12/28/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010139/07/25/41/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010230/07/12/30/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010243/07/25/43/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010334/07/12/32/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010347/07/25/45/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010438/07/12/34/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010451/07/25/47/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010542/07/12/36/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010555/07/25/49/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010646/08/12/38/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010659/08/25/00/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010750/08/12/40/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010763/08/25/02/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010854/08/12/42/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010867/08/25/04/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010958/08/12/44/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010971/08/25/06/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011062/08/12/46/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 011075/08/25/08/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011166/08/12/48/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 011179/08/25/10/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011270/08/12/50/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 011283/08/25/12/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011374/08/12/01/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 011387/08/25/14/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011478/08/12/03/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 011491/08/25/16/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011582/08/12/05/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 011595/08/25/18/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011686/08/12/07/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 011699/08/25/20/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011790/08/12/09/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 011803/08/25/22/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011894/08/12/11/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 011907/08/25/24/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 011998/09/12/13/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 012011/09/25/26/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=0) 012102/09/12/15/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=3,ss=1) 012115/09/25/28/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=3,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=3,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=3,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=3,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=3,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007760/05/12/08/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007864/05/12/10/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007968/06/12/12/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008072/06/12/14/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008176/06/12/16/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008189/06/25/29/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008280/06/12/18/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008293/06/25/31/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008384/06/12/20/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008397/06/25/33/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008488/06/12/22/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008501/06/25/35/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008592/06/12/24/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008605/06/25/37/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008696/06/12/26/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008709/06/25/39/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008800/06/12/28/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008813/06/25/41/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008904/06/12/30/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008917/06/25/43/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009008/06/12/32/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009021/06/25/45/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009112/06/12/34/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009125/06/25/47/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009216/06/12/36/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009229/06/25/49/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009320/07/12/38/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009333/07/25/00/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009424/07/12/40/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009437/07/25/02/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009528/07/12/42/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009541/07/25/04/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009632/07/12/44/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009645/07/25/06/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009736/07/12/46/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009749/07/25/08/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009840/07/12/48/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009853/07/25/10/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009944/07/12/50/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009957/07/25/12/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010048/07/12/01/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010061/07/25/14/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010152/07/12/03/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010165/07/25/16/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010256/07/12/05/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010269/07/25/18/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010360/07/12/07/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010373/07/25/20/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010464/07/12/09/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010477/07/25/22/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010568/07/12/11/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010581/07/25/24/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010672/08/12/13/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010685/08/25/26/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010776/08/12/15/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010789/08/25/28/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010880/08/12/17/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010893/08/25/30/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010984/08/12/19/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010997/08/25/32/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=4,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=4,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=4,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=4,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=4,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005264/03/12/11/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005368/04/12/13/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005472/04/12/15/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005576/04/12/17/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005680/04/12/19/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005693/04/25/32/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005784/04/12/21/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005797/04/25/34/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005888/04/12/23/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005901/04/25/36/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005992/04/12/25/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006005/04/25/38/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006096/04/12/27/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006109/04/25/40/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006200/04/12/29/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006213/04/25/42/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006304/04/12/31/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006317/04/25/44/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006408/04/12/33/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006421/04/25/46/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006512/04/12/35/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006525/04/25/48/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006616/04/12/37/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006629/04/25/50/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006720/05/12/39/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006733/05/25/01/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006824/05/12/41/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006837/05/25/03/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006928/05/12/43/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006941/05/25/05/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007032/05/12/45/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007045/05/25/07/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007136/05/12/47/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007149/05/25/09/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007240/05/12/49/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007253/05/25/11/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007344/05/12/00/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007357/05/25/13/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007448/05/12/02/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007461/05/25/15/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007552/05/12/04/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007565/05/25/17/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007656/05/12/06/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007669/05/25/19/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007760/05/12/08/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007773/05/25/21/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007864/05/12/10/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007877/05/25/23/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007968/06/12/12/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007981/06/25/25/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008072/06/12/14/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008085/06/25/27/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008176/06/12/16/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008189/06/25/29/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008280/06/12/18/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008293/06/25/31/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008384/06/12/20/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008397/06/25/33/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008488/06/12/22/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008501/06/25/35/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=5,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=5,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=5,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=5,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=5,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008098/06/12/40/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008202/06/12/42/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008306/06/12/44/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008410/06/12/46/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008423/06/25/08/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008514/06/12/48/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008527/06/25/10/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008618/06/12/50/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008631/06/25/12/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008722/06/12/01/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008735/06/25/14/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008826/06/12/03/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008839/06/25/16/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008930/06/12/05/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008943/06/25/18/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009034/06/12/07/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009047/06/25/20/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009138/06/12/09/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009151/06/25/22/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009242/06/12/11/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009255/06/25/24/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009346/07/12/13/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009359/07/25/26/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009450/07/12/15/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009463/07/25/28/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009554/07/12/17/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009567/07/25/30/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009658/07/12/19/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009671/07/25/32/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009762/07/12/21/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009775/07/25/34/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009866/07/12/23/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009879/07/25/36/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009970/07/12/25/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009983/07/25/38/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010074/07/12/27/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010087/07/25/40/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010178/07/12/29/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010191/07/25/42/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010282/07/12/31/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010295/07/25/44/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010386/07/12/33/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010399/07/25/46/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010490/07/12/35/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010503/07/25/48/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010594/07/12/37/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010607/07/25/50/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010698/08/12/39/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010711/08/25/01/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010802/08/12/41/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010815/08/25/03/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010906/08/12/43/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010919/08/25/05/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011010/08/12/45/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 011023/08/25/07/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011114/08/12/47/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 011127/08/25/09/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011218/08/12/49/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 011231/08/25/11/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011322/08/12/00/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 011335/08/25/13/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011426/08/12/02/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 011439/08/25/15/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=0) 011530/08/12/04/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=6,ss=1) 011543/08/25/17/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=6,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=6,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=6,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=6,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=6,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011738/08/12/08/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011842/08/12/10/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 011946/09/12/12/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012050/09/12/14/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 012063/09/25/27/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012154/09/12/16/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 012167/09/25/29/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012258/09/12/18/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 012271/09/25/31/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012362/09/12/20/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 012375/09/25/33/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012466/09/12/22/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 012479/09/25/35/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012570/09/12/24/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 012583/09/25/37/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012674/09/12/26/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 012687/09/25/39/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012778/09/12/28/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 012791/09/25/41/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012882/09/12/30/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 012895/09/25/43/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 012986/09/12/32/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 012999/09/25/45/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 013090/09/12/34/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 013103/09/25/47/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 013194/09/12/36/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 013207/09/25/49/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 013298/10/12/38/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 013311/10/25/00/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 013402/10/12/40/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 013415/10/25/02/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 013506/10/12/42/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 013519/10/25/04/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 013610/10/12/44/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 013623/10/25/06/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 013714/10/12/46/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 013727/10/25/08/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 013818/10/12/48/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 013831/10/25/10/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 013922/10/12/50/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 013935/10/25/12/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 014026/10/12/01/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 014039/10/25/14/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 014130/10/12/03/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 014143/10/25/16/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 014234/10/12/05/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 014247/10/25/18/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 014338/10/12/07/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 014351/10/25/20/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 014442/10/12/09/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 014455/10/25/22/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 014546/10/12/11/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 014559/10/25/24/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 014650/11/12/13/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 014663/11/25/26/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 014754/11/12/15/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 014767/11/25/28/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 014858/11/12/17/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 014871/11/25/30/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 014962/11/12/19/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 014975/11/25/32/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 015066/11/12/21/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 015079/11/25/34/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=0) 015170/11/12/23/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=0) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=0) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=0) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=0) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=7,ss=1) 015183/11/25/36/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received 1 UL measurements, expected 13
+DEBUG (bts=0,trx=1,ts=7,ss=1) Replaced 12 measurements with dummy values, from which 12 were SUB measurements
+DEBUG (bts=0,trx=1,ts=7,ss=1) Received UL measurements contain 0 SUB measurements, expected 13
+ERROR (bts=0,trx=1,ts=7,ss=1) Incorrect number of SUB measurements detected! (12 vs exp 13)
+INFO (bts=0,trx=1,ts=7,ss=1) Computed TA256( 0), BER-FULL(92.30%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=7,ss=1) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(12), num_ul_meas(13)
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=0, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000001/00/01/01/01 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000002/00/02/02/02 adding a FULL measurement (ber10k=0, ta_offs=-256, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000025/00/25/25/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received 3 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=1,ss=0) Replaced 22 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=1,ss=0) Computed TA256( 0), BER-FULL(88.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=1,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000001/00/01/01/01 adding a FULL measurement (ber10k=0, ta_offs=258, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000002/00/02/02/02 adding a FULL measurement (ber10k=0, ta_offs=254, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000003/00/03/03/03 adding a FULL measurement (ber10k=0, ta_offs=258, ci_cB=10, rssi=-90), num_ul_meas=4, fn_mod=3
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000004/00/04/04/04 adding a SUB measurement (ber10k=0, ta_offs=254, ci_cB=10, rssi=-90), num_ul_meas=5, fn_mod=4
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000005/00/05/05/05 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=10, rssi=-90), num_ul_meas=6, fn_mod=5
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000006/00/06/06/06 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=10, rssi=-90), num_ul_meas=7, fn_mod=6
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000007/00/07/07/07 adding a FULL measurement (ber10k=0, ta_offs=258, ci_cB=10, rssi=-90), num_ul_meas=8, fn_mod=7
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000008/00/08/08/08 adding a SUB measurement (ber10k=0, ta_offs=254, ci_cB=10, rssi=-90), num_ul_meas=9, fn_mod=8
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000009/00/09/09/09 adding a FULL measurement (ber10k=0, ta_offs=258, ci_cB=10, rssi=-90), num_ul_meas=10, fn_mod=9
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000010/00/10/10/10 adding a FULL measurement (ber10k=0, ta_offs=254, ci_cB=10, rssi=-90), num_ul_meas=11, fn_mod=10
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000011/00/11/11/11 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=10, rssi=-90), num_ul_meas=12, fn_mod=11
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000012/00/12/12/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=10, rssi=-90), num_ul_meas=13, fn_mod=12
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000013/00/13/13/13 adding a FULL measurement (ber10k=0, ta_offs=258, ci_cB=10, rssi=-90), num_ul_meas=14, fn_mod=13
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000014/00/14/14/14 adding a FULL measurement (ber10k=0, ta_offs=254, ci_cB=10, rssi=-90), num_ul_meas=15, fn_mod=14
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000015/00/15/15/15 adding a FULL measurement (ber10k=0, ta_offs=258, ci_cB=10, rssi=-90), num_ul_meas=16, fn_mod=15
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000016/00/16/16/16 adding a FULL measurement (ber10k=0, ta_offs=254, ci_cB=10, rssi=-90), num_ul_meas=17, fn_mod=16
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000017/00/17/17/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=10, rssi=-90), num_ul_meas=18, fn_mod=17
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000018/00/18/18/18 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=10, rssi=-90), num_ul_meas=19, fn_mod=18
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000019/00/19/19/19 adding a FULL measurement (ber10k=0, ta_offs=258, ci_cB=10, rssi=-90), num_ul_meas=20, fn_mod=19
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000020/00/20/20/20 adding a FULL measurement (ber10k=0, ta_offs=254, ci_cB=10, rssi=-90), num_ul_meas=21, fn_mod=20
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000021/00/21/21/21 adding a FULL measurement (ber10k=0, ta_offs=258, ci_cB=10, rssi=-90), num_ul_meas=22, fn_mod=21
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000022/00/22/22/22 adding a FULL measurement (ber10k=0, ta_offs=254, ci_cB=10, rssi=-90), num_ul_meas=23, fn_mod=22
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000023/00/23/23/23 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=10, rssi=-90), num_ul_meas=24, fn_mod=23
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000024/00/24/24/24 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=10, rssi=-90), num_ul_meas=25, fn_mod=24
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000025/00/25/25/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received 25 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=1,ss=0) Replaced 0 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received UL measurements contain 3 SUB measurements, expected 2
+ERROR (bts=0,trx=1,ts=1,ss=0) Incorrect number of SUB measurements detected! (3 vs exp 2)
+INFO (bts=0,trx=1,ts=1,ss=0) Computed TA256( 256), BER-FULL( 0.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 10 cB)
+INFO (bts=0,trx=1,ts=1,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(0), RXQUAL_SUB(0), num_meas_sub(3), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=0, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000001/00/01/01/01 adding a FULL measurement (ber10k=0, ta_offs=0, ci_cB=10, rssi=-80), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000002/00/02/02/02 adding a FULL measurement (ber10k=0, ta_offs=0, ci_cB=10, rssi=-80), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000003/00/03/03/03 adding a FULL measurement (ber10k=0, ta_offs=0, ci_cB=10, rssi=-100), num_ul_meas=4, fn_mod=3
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=0, ci_cB=10, rssi=-100), num_ul_meas=5, fn_mod=4
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000025/00/25/25/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received 5 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=1,ss=0) Replaced 20 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=1,ss=0) Computed TA256( 0), BER-FULL(80.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=1,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000025/00/25/25/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received 0 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=1,ss=0) Replaced 25 measurements with dummy values, from which 2 were SUB measurements
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received UL measurements contain 0 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=1,ss=0) Computed TA256( 0), BER-FULL(100.00%), RSSI-FULL(-109dBm), C/I-FULL( 0 cB), BER-SUB(100.00%), RSSI-SUB(-109dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=1,ss=0) UL MEAS RXLEV_FULL(1), RXLEV_SUB(1), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000001/00/01/01/01 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000002/00/02/02/02 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000003/00/03/03/03 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=4, fn_mod=3
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=5, fn_mod=4
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000005/00/05/05/05 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=6, fn_mod=5
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000006/00/06/06/06 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=7, fn_mod=6
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000007/00/07/07/07 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=8, fn_mod=7
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000008/00/08/08/08 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=9, fn_mod=8
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000009/00/09/09/09 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=10, fn_mod=9
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000010/00/10/10/10 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=11, fn_mod=10
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000011/00/11/11/11 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=12, fn_mod=11
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000012/00/12/12/12 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=13, fn_mod=12
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000013/00/13/13/13 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=14, fn_mod=13
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000014/00/14/14/14 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=15, fn_mod=14
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000015/00/15/15/15 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=16, fn_mod=15
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000016/00/16/16/16 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=17, fn_mod=16
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000017/00/17/17/17 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=18, fn_mod=17
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000018/00/18/18/18 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=19, fn_mod=18
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000019/00/19/19/19 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=20, fn_mod=19
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000020/00/20/20/20 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=21, fn_mod=20
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000021/00/21/21/21 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=22, fn_mod=21
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000022/00/22/22/22 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=23, fn_mod=22
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000023/00/23/23/23 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=24, fn_mod=23
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000024/00/24/24/24 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=25, fn_mod=24
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000025/00/25/25/25 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=26, fn_mod=25
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000025/00/25/25/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received 26 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received 1 excess UL measurements
+DEBUG (bts=0,trx=1,ts=1,ss=0) Replaced 0 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received UL measurements contain 3 SUB measurements, expected 2
+ERROR (bts=0,trx=1,ts=1,ss=0) Incorrect number of SUB measurements detected! (3 vs exp 2)
+INFO (bts=0,trx=1,ts=1,ss=0) Computed TA256( 16384), BER-FULL( 0.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 10 cB)
+INFO (bts=0,trx=1,ts=1,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(0), RXQUAL_SUB(0), num_meas_sub(3), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000001/00/01/01/01 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000002/00/02/02/02 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000003/00/03/03/03 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=4, fn_mod=3
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=5, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000005/00/05/05/05 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=6, fn_mod=5
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000006/00/06/06/06 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=7, fn_mod=6
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000007/00/07/07/07 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=8, fn_mod=7
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000008/00/08/08/08 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=9, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000009/00/09/09/09 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=10, fn_mod=9
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000010/00/10/10/10 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=11, fn_mod=10
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000011/00/11/11/11 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=12, fn_mod=11
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000012/00/12/12/12 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=13, fn_mod=12
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000013/00/13/13/13 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=14, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000014/00/14/14/14 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=15, fn_mod=14
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000015/00/15/15/15 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=16, fn_mod=15
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000016/00/16/16/16 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=17, fn_mod=16
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000017/00/17/17/17 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=18, fn_mod=17
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000018/00/18/18/18 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=19, fn_mod=18
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000019/00/19/19/19 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=20, fn_mod=19
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000020/00/20/20/20 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=21, fn_mod=20
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000021/00/21/21/21 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=22, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000022/00/22/22/22 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=23, fn_mod=22
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000023/00/23/23/23 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=24, fn_mod=23
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000024/00/24/24/24 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=25, fn_mod=24
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 25 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 0 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 3 SUB measurements, expected 2
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (3 vs exp 2)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 16384), BER-FULL( 0.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 10 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(0), RXQUAL_SUB(0), num_meas_sub(3), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000001/00/01/01/01 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000002/00/02/02/02 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000003/00/03/03/03 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=4, fn_mod=3
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=5, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000005/00/05/05/05 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=6, fn_mod=5
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000006/00/06/06/06 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=7, fn_mod=6
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000007/00/07/07/07 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=8, fn_mod=7
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000008/00/08/08/08 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=9, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000009/00/09/09/09 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=10, fn_mod=9
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000010/00/10/10/10 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=11, fn_mod=10
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000011/00/11/11/11 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=12, fn_mod=11
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000012/00/12/12/12 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=13, fn_mod=12
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000013/00/13/13/13 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=14, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000014/00/14/14/14 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=15, fn_mod=14
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000015/00/15/15/15 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=16, fn_mod=15
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 16 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 9 measurements with dummy values, from which 1 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 1 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 16384), BER-FULL(36.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB(50.00%), RSSI-SUB(- 90dBm), C/I-SUB( 10 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000001/00/01/01/01 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000002/00/02/02/02 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000003/00/03/03/03 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=4, fn_mod=3
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=5, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000005/00/05/05/05 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=6, fn_mod=5
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000006/00/06/06/06 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=7, fn_mod=6
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000007/00/07/07/07 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=8, fn_mod=7
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000008/00/08/08/08 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=9, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000009/00/09/09/09 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=10, fn_mod=9
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000010/00/10/10/10 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=11, fn_mod=10
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000011/00/11/11/11 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=12, fn_mod=11
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000012/00/12/12/12 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=13, fn_mod=12
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000013/00/13/13/13 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=14, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000014/00/14/14/14 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=15, fn_mod=14
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000015/00/15/15/15 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=16, fn_mod=15
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 16 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 9 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 3 SUB measurements, expected 2
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (3 vs exp 2)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 16384), BER-FULL(36.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 10 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(7), RXQUAL_SUB(0), num_meas_sub(3), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000001/00/01/01/01 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000002/00/02/02/02 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000003/00/03/03/03 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=4, fn_mod=3
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=5, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000005/00/05/05/05 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=6, fn_mod=5
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000006/00/06/06/06 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=7, fn_mod=6
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000007/00/07/07/07 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=8, fn_mod=7
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000008/00/08/08/08 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=9, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000009/00/09/09/09 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=10, fn_mod=9
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000010/00/10/10/10 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=11, fn_mod=10
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000011/00/11/11/11 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=12, fn_mod=11
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000012/00/12/12/12 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=13, fn_mod=12
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000013/00/13/13/13 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=14, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000014/00/14/14/14 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=15, fn_mod=14
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000015/00/15/15/15 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=16, fn_mod=15
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000016/00/16/16/16 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=17, fn_mod=16
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000017/00/17/17/17 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=18, fn_mod=17
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000018/00/18/18/18 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=19, fn_mod=18
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000019/00/19/19/19 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=20, fn_mod=19
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000020/00/20/20/20 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=21, fn_mod=20
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000021/00/21/21/21 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=22, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000022/00/22/22/22 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=23, fn_mod=22
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000023/00/23/23/23 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=24, fn_mod=23
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000024/00/24/24/24 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=25, fn_mod=24
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 25 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 0 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 5 SUB measurements, expected 3
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (5 vs exp 3)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 16384), BER-FULL( 0.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 10 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(0), RXQUAL_SUB(0), num_meas_sub(5), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000001/00/01/01/01 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000002/00/02/02/02 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000003/00/03/03/03 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=4, fn_mod=3
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000004/00/04/04/04 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=5, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000005/00/05/05/05 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=6, fn_mod=5
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000006/00/06/06/06 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=7, fn_mod=6
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000007/00/07/07/07 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=8, fn_mod=7
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000008/00/08/08/08 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=9, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000009/00/09/09/09 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=10, fn_mod=9
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000010/00/10/10/10 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=11, fn_mod=10
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000011/00/11/11/11 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=12, fn_mod=11
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000012/00/12/12/12 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=13, fn_mod=12
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000013/00/13/13/13 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=14, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 14 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 11 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 3 SUB measurements, expected 3
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 16384), BER-FULL(44.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 10 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(7), RXQUAL_SUB(0), num_meas_sub(3), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000001/00/01/01/01 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000002/00/02/02/02 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000003/00/03/03/03 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=4, fn_mod=3
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=5, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000005/00/05/05/05 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=6, fn_mod=5
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000006/00/06/06/06 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=7, fn_mod=6
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000007/00/07/07/07 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=8, fn_mod=7
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000008/00/08/08/08 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=9, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000009/00/09/09/09 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=10, fn_mod=9
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000010/00/10/10/10 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=11, fn_mod=10
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000011/00/11/11/11 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=12, fn_mod=11
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000012/00/12/12/12 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=13, fn_mod=12
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000013/00/13/13/13 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=14, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000014/00/14/14/14 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=15, fn_mod=14
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000015/00/15/15/15 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=16, fn_mod=15
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 16 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 9 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 5 SUB measurements, expected 3
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (5 vs exp 3)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 16384), BER-FULL(36.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 10 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(7), RXQUAL_SUB(0), num_meas_sub(5), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000001/00/01/01/01 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000002/00/02/02/02 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000003/00/03/03/03 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=4, fn_mod=3
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=5, fn_mod=4
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000005/00/05/05/05 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=6, fn_mod=5
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000006/00/06/06/06 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=7, fn_mod=6
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000007/00/07/07/07 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=8, fn_mod=7
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000008/00/08/08/08 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=9, fn_mod=8
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000009/00/09/09/09 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=10, fn_mod=9
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000010/00/10/10/10 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=11, fn_mod=10
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000011/00/11/11/11 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=12, fn_mod=11
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000012/00/12/12/12 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=13, fn_mod=12
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000013/00/13/13/13 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=14, fn_mod=13
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000014/00/14/14/14 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=15, fn_mod=14
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000015/00/15/15/15 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=16, fn_mod=15
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000016/00/16/16/16 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=17, fn_mod=16
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000017/00/17/17/17 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=18, fn_mod=17
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000018/00/18/18/18 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=19, fn_mod=18
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000019/00/19/19/19 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=20, fn_mod=19
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000020/00/20/20/20 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=21, fn_mod=20
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000021/00/21/21/21 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=22, fn_mod=21
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000022/00/22/22/22 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=23, fn_mod=22
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000023/00/23/23/23 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=24, fn_mod=23
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000024/00/24/24/24 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=25, fn_mod=24
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000025/00/25/25/25 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=26, fn_mod=25
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000026/00/00/26/26 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=27, fn_mod=26
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000027/00/01/27/27 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=28, fn_mod=27
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000028/00/02/28/28 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=29, fn_mod=28
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000029/00/03/29/29 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=30, fn_mod=29
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000030/00/04/30/30 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=31, fn_mod=30
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000031/00/05/31/31 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=32, fn_mod=31
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000032/00/06/32/32 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=33, fn_mod=32
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000033/00/07/33/33 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=34, fn_mod=33
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000034/00/08/34/34 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=35, fn_mod=34
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000035/00/09/35/35 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=36, fn_mod=35
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000036/00/10/36/36 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=37, fn_mod=36
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000037/00/11/37/37 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=38, fn_mod=37
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000038/00/12/38/38 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=39, fn_mod=38
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000039/00/13/39/39 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=40, fn_mod=39
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000040/00/14/40/40 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=41, fn_mod=40
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000041/00/15/41/41 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=42, fn_mod=41
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000042/00/16/42/42 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=43, fn_mod=42
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000043/00/17/43/43 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=44, fn_mod=43
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000044/00/18/44/44 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=45, fn_mod=44
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000045/00/19/45/45 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=46, fn_mod=45
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000046/00/20/46/46 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=47, fn_mod=46
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000047/00/21/47/47 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=48, fn_mod=47
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000048/00/22/48/48 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=49, fn_mod=48
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000049/00/23/49/49 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=50, fn_mod=49
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000050/00/24/50/50 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=51, fn_mod=50
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000051/00/25/00/51 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=52, fn_mod=51
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000052/00/00/01/00 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=53, fn_mod=52
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000053/00/01/02/01 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=54, fn_mod=53
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000054/00/02/03/02 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=55, fn_mod=54
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000055/00/03/04/03 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=56, fn_mod=55
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000056/00/04/05/04 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=57, fn_mod=56
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000057/00/05/06/05 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=58, fn_mod=57
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000058/00/06/07/06 adding a FULL measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=59, fn_mod=58
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000025/00/25/25/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received 59 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received 34 excess UL measurements
+DEBUG (bts=0,trx=1,ts=1,ss=0) Replaced 0 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=1,ss=0) Received UL measurements contain 3 SUB measurements, expected 2
+ERROR (bts=0,trx=1,ts=1,ss=0) Incorrect number of SUB measurements detected! (3 vs exp 2)
+INFO (bts=0,trx=1,ts=1,ss=0) Computed TA256( 16384), BER-FULL( 0.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 10 cB)
+INFO (bts=0,trx=1,ts=1,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(0), RXQUAL_SUB(0), num_meas_sub(3), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000000/00/00/00/00 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000001/00/01/01/01 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000002/00/02/02/02 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000088/00/10/37/36 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) Calculating measurement results for physical channel: CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) Received 3 UL measurements, expected 3
+DEBUG (bts=0,trx=1,ts=0,ss=0) Replaced 0 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=0,ss=0) Received UL measurements contain 3 SUB measurements, expected 3
+INFO (bts=0,trx=1,ts=0,ss=0) Computed TA256( 16384), BER-FULL( 0.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 10 cB)
+INFO (bts=0,trx=1,ts=0,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(0), RXQUAL_SUB(0), num_meas_sub(3), num_ul_meas(3)
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000000/00/00/00/00 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000001/00/01/01/01 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=2, fn_mod=1
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000002/00/02/02/02 adding a SUB measurement (ber10k=0, ta_offs=16384, ci_cB=10, rssi=-90), num_ul_meas=3, fn_mod=2
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000066/00/14/15/14 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) Calculating measurement results for physical channel: SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) Received 3 UL measurements, expected 3
+DEBUG (bts=0,trx=1,ts=0,ss=0) Replaced 0 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=0,ss=0) Received UL measurements contain 3 SUB measurements, expected 3
+INFO (bts=0,trx=1,ts=0,ss=0) Computed TA256( 16384), BER-FULL( 0.00%), RSSI-FULL(- 90dBm), C/I-FULL( 10 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 10 cB)
+INFO (bts=0,trx=1,ts=0,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(0), RXQUAL_SUB(0), num_meas_sub(3), num_ul_meas(3)
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000012/00/12/12/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000116/00/12/14/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000220/00/12/16/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000324/00/12/18/16 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000428/00/12/20/16 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000532/00/12/22/20 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000636/00/12/24/20 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000740/00/12/26/20 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000844/00/12/28/24 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000948/00/12/30/24 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001052/00/12/32/28 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001156/00/12/34/28 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001260/00/12/36/28 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001364/01/12/38/32 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001468/01/12/40/32 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001572/01/12/42/36 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001676/01/12/44/36 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001780/01/12/46/36 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001884/01/12/48/40 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001988/01/12/50/40 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002092/01/12/01/44 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002196/01/12/03/44 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002300/01/12/05/44 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002404/01/12/07/48 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002508/01/12/09/48 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002612/01/12/11/00 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002716/02/12/13/00 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002820/02/12/15/04 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002924/02/12/17/04 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003028/02/12/19/04 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003132/02/12/21/08 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003236/02/12/23/08 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003340/02/12/25/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003444/02/12/27/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003548/02/12/29/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003652/02/12/31/16 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003756/02/12/33/16 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003860/02/12/35/20 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003964/02/12/37/20 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004068/03/12/39/20 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004172/03/12/41/24 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004276/03/12/43/24 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004380/03/12/45/28 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004484/03/12/47/28 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004588/03/12/49/28 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004692/03/12/00/32 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004796/03/12/02/32 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004900/03/12/04/36 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005004/03/12/06/36 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005108/03/12/08/36 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005212/03/12/10/40 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005316/04/12/12/40 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005420/04/12/14/44 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005524/04/12/16/44 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005628/04/12/18/44 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005732/04/12/20/48 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005836/04/12/22/48 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005940/04/12/24/00 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006044/04/12/26/00 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006148/04/12/28/04 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006252/04/12/30/04 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006356/04/12/32/04 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006460/04/12/34/08 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006564/04/12/36/08 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006668/05/12/38/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006772/05/12/40/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006876/05/12/42/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006980/05/12/44/16 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007084/05/12/46/16 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007188/05/12/48/20 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007292/05/12/50/20 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007396/05/12/01/20 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007500/05/12/03/24 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007604/05/12/05/24 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007708/05/12/07/28 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007812/05/12/09/28 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007916/05/12/11/28 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008020/06/12/13/32 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008124/06/12/15/32 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008228/06/12/17/36 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008332/06/12/19/36 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008436/06/12/21/36 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008540/06/12/23/40 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008644/06/12/25/40 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008748/06/12/27/44 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008852/06/12/29/44 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008956/06/12/31/44 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009060/06/12/33/48 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009164/06/12/35/48 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009268/06/12/37/00 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009372/07/12/39/00 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009476/07/12/41/04 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009580/07/12/43/04 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009684/07/12/45/04 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009788/07/12/47/08 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009892/07/12/49/08 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009996/07/12/00/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 010100/07/12/02/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 010204/07/12/04/12 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 010308/07/12/06/16 meas period end fn_mod:90, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000025/00/25/25/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000129/00/25/27/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000233/00/25/29/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000337/00/25/31/29 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000441/00/25/33/29 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000545/00/25/35/33 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000649/00/25/37/33 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000753/00/25/39/33 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000857/00/25/41/37 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000961/00/25/43/37 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001065/00/25/45/41 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001169/00/25/47/41 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001273/00/25/49/41 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001377/01/25/00/45 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001481/01/25/02/45 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001585/01/25/04/49 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001689/01/25/06/49 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001793/01/25/08/01 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001897/01/25/10/01 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002001/01/25/12/01 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002105/01/25/14/05 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002209/01/25/16/05 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002313/01/25/18/09 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002417/01/25/20/09 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002521/01/25/22/09 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002625/01/25/24/13 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002729/02/25/26/13 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002833/02/25/28/17 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002937/02/25/30/17 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003041/02/25/32/17 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003145/02/25/34/21 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003249/02/25/36/21 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003353/02/25/38/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003457/02/25/40/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003561/02/25/42/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003665/02/25/44/29 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003769/02/25/46/29 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003873/02/25/48/33 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003977/02/25/50/33 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004081/03/25/01/33 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004185/03/25/03/37 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004289/03/25/05/37 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004393/03/25/07/41 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004497/03/25/09/41 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004601/03/25/11/41 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004705/03/25/13/45 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004809/03/25/15/45 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004913/03/25/17/49 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005017/03/25/19/49 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005121/03/25/21/01 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005225/03/25/23/01 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005329/04/25/25/01 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005433/04/25/27/05 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005537/04/25/29/05 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005641/04/25/31/09 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005745/04/25/33/09 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005849/04/25/35/09 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005953/04/25/37/13 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006057/04/25/39/13 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006161/04/25/41/17 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006265/04/25/43/17 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006369/04/25/45/17 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006473/04/25/47/21 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006577/04/25/49/21 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006681/05/25/00/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006785/05/25/02/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006889/05/25/04/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006993/05/25/06/29 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007097/05/25/08/29 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007201/05/25/10/33 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007305/05/25/12/33 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007409/05/25/14/33 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007513/05/25/16/37 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007617/05/25/18/37 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007721/05/25/20/41 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007825/05/25/22/41 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007929/05/25/24/41 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008033/06/25/26/45 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008137/06/25/28/45 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008241/06/25/30/49 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008345/06/25/32/49 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008449/06/25/34/01 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008553/06/25/36/01 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008657/06/25/38/01 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008761/06/25/40/05 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008865/06/25/42/05 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008969/06/25/44/09 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009073/06/25/46/09 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009177/06/25/48/09 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009281/06/25/50/13 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009385/07/25/01/13 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009489/07/25/03/17 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009593/07/25/05/17 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009697/07/25/07/17 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009801/07/25/09/21 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009905/07/25/11/21 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 010009/07/25/13/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 010113/07/25/15/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 010217/07/25/17/25 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=1,ss=0) 010321/07/25/19/29 meas period end fn_mod:103, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000142/00/12/40/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000246/00/12/42/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000350/00/12/44/42 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000454/00/12/46/42 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000558/00/12/48/46 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000662/00/12/50/46 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000766/00/12/01/46 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000870/00/12/03/50 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000974/00/12/05/50 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001078/00/12/07/02 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001182/00/12/09/02 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001286/00/12/11/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001390/01/12/13/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001494/01/12/15/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001598/01/12/17/10 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001702/01/12/19/10 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001806/01/12/21/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001910/01/12/23/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002014/01/12/25/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002118/01/12/27/18 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002222/01/12/29/18 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002326/01/12/31/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002430/01/12/33/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002534/01/12/35/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002638/01/12/37/26 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002742/02/12/39/26 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002846/02/12/41/30 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002950/02/12/43/30 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003054/02/12/45/30 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003158/02/12/47/34 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003262/02/12/49/34 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003366/02/12/00/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003470/02/12/02/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003574/02/12/04/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003678/02/12/06/42 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003782/02/12/08/42 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003886/02/12/10/46 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003990/03/12/12/46 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004094/03/12/14/46 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004198/03/12/16/50 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004302/03/12/18/50 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004406/03/12/20/02 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004510/03/12/22/02 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004614/03/12/24/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004718/03/12/26/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004822/03/12/28/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004926/03/12/30/10 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005030/03/12/32/10 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005134/03/12/34/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005238/03/12/36/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005342/04/12/38/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005446/04/12/40/18 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005550/04/12/42/18 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005654/04/12/44/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005758/04/12/46/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005862/04/12/48/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005966/04/12/50/26 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006070/04/12/01/26 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006174/04/12/03/30 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006278/04/12/05/30 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006382/04/12/07/30 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006486/04/12/09/34 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006590/04/12/11/34 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006694/05/12/13/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006798/05/12/15/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006902/05/12/17/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007006/05/12/19/42 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007110/05/12/21/42 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007214/05/12/23/46 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007318/05/12/25/46 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007422/05/12/27/46 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007526/05/12/29/50 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007630/05/12/31/50 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007734/05/12/33/02 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007838/05/12/35/02 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007942/05/12/37/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008046/06/12/39/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008150/06/12/41/06 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008254/06/12/43/10 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008358/06/12/45/10 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008462/06/12/47/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008566/06/12/49/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008670/06/12/00/14 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008774/06/12/02/18 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008878/06/12/04/18 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008982/06/12/06/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009086/06/12/08/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009190/06/12/10/22 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009294/07/12/12/26 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009398/07/12/14/26 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009502/07/12/16/30 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009606/07/12/18/30 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009710/07/12/20/30 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009814/07/12/22/34 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009918/07/12/24/34 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010022/07/12/26/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010126/07/12/28/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010230/07/12/30/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010334/07/12/32/42 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000051/00/25/00/51 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000155/00/25/02/51 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000259/00/25/04/03 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000363/00/25/06/03 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000467/00/25/08/03 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000571/00/25/10/07 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000675/00/25/12/07 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000779/00/25/14/11 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000883/00/25/16/11 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000987/00/25/18/11 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001091/00/25/20/15 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001195/00/25/22/15 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001299/00/25/24/19 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001403/01/25/26/19 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001507/01/25/28/19 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001611/01/25/30/23 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001715/01/25/32/23 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001819/01/25/34/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001923/01/25/36/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002027/01/25/38/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002131/01/25/40/31 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002235/01/25/42/31 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002339/01/25/44/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002443/01/25/46/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002547/01/25/48/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002651/01/25/50/39 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002755/02/25/01/39 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002859/02/25/03/43 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002963/02/25/05/43 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003067/02/25/07/43 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003171/02/25/09/47 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003275/02/25/11/47 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003379/02/25/13/51 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003483/02/25/15/51 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003587/02/25/17/03 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003691/02/25/19/03 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003795/02/25/21/03 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003899/02/25/23/07 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004003/03/25/25/07 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004107/03/25/27/11 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004211/03/25/29/11 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004315/03/25/31/11 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004419/03/25/33/15 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004523/03/25/35/15 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004627/03/25/37/19 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004731/03/25/39/19 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004835/03/25/41/19 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004939/03/25/43/23 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005043/03/25/45/23 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005147/03/25/47/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005251/03/25/49/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005355/04/25/00/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005459/04/25/02/31 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005563/04/25/04/31 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005667/04/25/06/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005771/04/25/08/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005875/04/25/10/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005979/04/25/12/39 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006083/04/25/14/39 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006187/04/25/16/43 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006291/04/25/18/43 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006395/04/25/20/43 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006499/04/25/22/47 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006603/04/25/24/47 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006707/05/25/26/51 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006811/05/25/28/51 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006915/05/25/30/03 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007019/05/25/32/03 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007123/05/25/34/03 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007227/05/25/36/07 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007331/05/25/38/07 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007435/05/25/40/11 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007539/05/25/42/11 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007643/05/25/44/11 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007747/05/25/46/15 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007851/05/25/48/15 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007955/05/25/50/19 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008059/06/25/01/19 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008163/06/25/03/19 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008267/06/25/05/23 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008371/06/25/07/23 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008475/06/25/09/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008579/06/25/11/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008683/06/25/13/27 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008787/06/25/15/31 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008891/06/25/17/31 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008995/06/25/19/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009099/06/25/21/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009203/06/25/23/35 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009307/07/25/25/39 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009411/07/25/27/39 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009515/07/25/29/43 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009619/07/25/31/43 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009723/07/25/33/43 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009827/07/25/35/47 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009931/07/25/37/47 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010035/07/25/39/51 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010139/07/25/41/51 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010243/07/25/43/03 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010347/07/25/45/03 meas period end fn_mod:25, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000064/00/12/13/12 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000168/00/12/15/12 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000272/00/12/17/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000376/00/12/19/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000480/00/12/21/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000584/00/12/23/20 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000688/00/12/25/20 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000792/00/12/27/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000896/00/12/29/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001000/00/12/31/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001104/00/12/33/28 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001208/00/12/35/28 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001312/00/12/37/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001416/01/12/39/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001520/01/12/41/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001624/01/12/43/36 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001728/01/12/45/36 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001832/01/12/47/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001936/01/12/49/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002040/01/12/00/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002144/01/12/02/44 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002248/01/12/04/44 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002352/01/12/06/48 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002456/01/12/08/48 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002560/01/12/10/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002664/02/12/12/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002768/02/12/14/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002872/02/12/16/04 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002976/02/12/18/04 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003080/02/12/20/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003184/02/12/22/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003288/02/12/24/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003392/02/12/26/12 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003496/02/12/28/12 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003600/02/12/30/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003704/02/12/32/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003808/02/12/34/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003912/02/12/36/20 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004016/03/12/38/20 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004120/03/12/40/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004224/03/12/42/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004328/03/12/44/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004432/03/12/46/28 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004536/03/12/48/28 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004640/03/12/50/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004744/03/12/01/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004848/03/12/03/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004952/03/12/05/36 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005056/03/12/07/36 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005160/03/12/09/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005264/03/12/11/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005368/04/12/13/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005472/04/12/15/44 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005576/04/12/17/44 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005680/04/12/19/48 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005784/04/12/21/48 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005888/04/12/23/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005992/04/12/25/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006096/04/12/27/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006200/04/12/29/04 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006304/04/12/31/04 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006408/04/12/33/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006512/04/12/35/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006616/04/12/37/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006720/05/12/39/12 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006824/05/12/41/12 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006928/05/12/43/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007032/05/12/45/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007136/05/12/47/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007240/05/12/49/20 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007344/05/12/00/20 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007448/05/12/02/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007552/05/12/04/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007656/05/12/06/24 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007760/05/12/08/28 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007864/05/12/10/28 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007968/06/12/12/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008072/06/12/14/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008176/06/12/16/32 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008280/06/12/18/36 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008384/06/12/20/36 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008488/06/12/22/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008592/06/12/24/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008696/06/12/26/40 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008800/06/12/28/44 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008904/06/12/30/44 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009008/06/12/32/48 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009112/06/12/34/48 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009216/06/12/36/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009320/07/12/38/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009424/07/12/40/00 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009528/07/12/42/04 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009632/07/12/44/04 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009736/07/12/46/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009840/07/12/48/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009944/07/12/50/08 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010048/07/12/01/12 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010152/07/12/03/12 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010256/07/12/05/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010360/07/12/07/16 meas period end fn_mod:38, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000077/00/25/26/25 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000181/00/25/28/25 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000285/00/25/30/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000389/00/25/32/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000493/00/25/34/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000597/00/25/36/33 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000701/00/25/38/33 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000805/00/25/40/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000909/00/25/42/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001013/00/25/44/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001117/00/25/46/41 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001221/00/25/48/41 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001325/00/25/50/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001429/01/25/01/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001533/01/25/03/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001637/01/25/05/49 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001741/01/25/07/49 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001845/01/25/09/01 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001949/01/25/11/01 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002053/01/25/13/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002157/01/25/15/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002261/01/25/17/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002365/01/25/19/09 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002469/01/25/21/09 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002573/01/25/23/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002677/02/25/25/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002781/02/25/27/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002885/02/25/29/17 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002989/02/25/31/17 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003093/02/25/33/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003197/02/25/35/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003301/02/25/37/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003405/02/25/39/25 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003509/02/25/41/25 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003613/02/25/43/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003717/02/25/45/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003821/02/25/47/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003925/02/25/49/33 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004029/03/25/00/33 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004133/03/25/02/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004237/03/25/04/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004341/03/25/06/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004445/03/25/08/41 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004549/03/25/10/41 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004653/03/25/12/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004757/03/25/14/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004861/03/25/16/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004965/03/25/18/49 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005069/03/25/20/49 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005173/03/25/22/01 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005277/03/25/24/01 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005381/04/25/26/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005485/04/25/28/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005589/04/25/30/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005693/04/25/32/09 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005797/04/25/34/09 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005901/04/25/36/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006005/04/25/38/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006109/04/25/40/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006213/04/25/42/17 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006317/04/25/44/17 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006421/04/25/46/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006525/04/25/48/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006629/04/25/50/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006733/05/25/01/25 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006837/05/25/03/25 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006941/05/25/05/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007045/05/25/07/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007149/05/25/09/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007253/05/25/11/33 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007357/05/25/13/33 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007461/05/25/15/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007565/05/25/17/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007669/05/25/19/37 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007773/05/25/21/41 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007877/05/25/23/41 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007981/06/25/25/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008085/06/25/27/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008189/06/25/29/45 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008293/06/25/31/49 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008397/06/25/33/49 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008501/06/25/35/01 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008605/06/25/37/01 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008709/06/25/39/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008813/06/25/41/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008917/06/25/43/05 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009021/06/25/45/09 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009125/06/25/47/09 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009229/06/25/49/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009333/07/25/00/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009437/07/25/02/13 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009541/07/25/04/17 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009645/07/25/06/17 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009749/07/25/08/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009853/07/25/10/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009957/07/25/12/21 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 010061/07/25/14/25 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 010165/07/25/16/25 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 010269/07/25/18/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=5,ss=0) 010373/07/25/20/29 meas period end fn_mod:51, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000090/00/12/39/38 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000194/00/12/41/38 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000298/00/12/43/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000402/00/12/45/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000506/00/12/47/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000610/00/12/49/46 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000714/00/12/00/46 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000818/00/12/02/50 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000922/00/12/04/50 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001026/00/12/06/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001130/00/12/08/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001234/00/12/10/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001338/01/12/12/06 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001442/01/12/14/06 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001546/01/12/16/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001650/01/12/18/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001754/01/12/20/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001858/01/12/22/14 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001962/01/12/24/14 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002066/01/12/26/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002170/01/12/28/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002274/01/12/30/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002378/01/12/32/22 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002482/01/12/34/22 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002586/01/12/36/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002690/02/12/38/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002794/02/12/40/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002898/02/12/42/30 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003002/02/12/44/30 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003106/02/12/46/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003210/02/12/48/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003314/02/12/50/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003418/02/12/01/38 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003522/02/12/03/38 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003626/02/12/05/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003730/02/12/07/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003834/02/12/09/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003938/02/12/11/46 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004042/03/12/13/46 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004146/03/12/15/50 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004250/03/12/17/50 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004354/03/12/19/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004458/03/12/21/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004562/03/12/23/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004666/03/12/25/06 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004770/03/12/27/06 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004874/03/12/29/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004978/03/12/31/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005082/03/12/33/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005186/03/12/35/14 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005290/03/12/37/14 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005394/04/12/39/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005498/04/12/41/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005602/04/12/43/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005706/04/12/45/22 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005810/04/12/47/22 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005914/04/12/49/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006018/04/12/00/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006122/04/12/02/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006226/04/12/04/30 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006330/04/12/06/30 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006434/04/12/08/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006538/04/12/10/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006642/05/12/12/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006746/05/12/14/38 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006850/05/12/16/38 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006954/05/12/18/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007058/05/12/20/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007162/05/12/22/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007266/05/12/24/46 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007370/05/12/26/46 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007474/05/12/28/50 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007578/05/12/30/50 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007682/05/12/32/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007786/05/12/34/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007890/05/12/36/02 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007994/06/12/38/06 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008098/06/12/40/06 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008202/06/12/42/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008306/06/12/44/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008410/06/12/46/10 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008514/06/12/48/14 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008618/06/12/50/14 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008722/06/12/01/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008826/06/12/03/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008930/06/12/05/18 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009034/06/12/07/22 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009138/06/12/09/22 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009242/06/12/11/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009346/07/12/13/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009450/07/12/15/26 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009554/07/12/17/30 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009658/07/12/19/30 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009762/07/12/21/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009866/07/12/23/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009970/07/12/25/34 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010074/07/12/27/38 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010178/07/12/29/38 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010282/07/12/31/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010386/07/12/33/42 meas period end fn_mod:64, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000103/00/25/01/51 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000207/00/25/03/51 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000311/00/25/05/03 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000415/00/25/07/03 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000519/00/25/09/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000623/00/25/11/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000727/00/25/13/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000831/00/25/15/11 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000935/00/25/17/11 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001039/00/25/19/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001143/00/25/21/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001247/00/25/23/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001351/01/25/25/19 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001455/01/25/27/19 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001559/01/25/29/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001663/01/25/31/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001767/01/25/33/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001871/01/25/35/27 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001975/01/25/37/27 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002079/01/25/39/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002183/01/25/41/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002287/01/25/43/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002391/01/25/45/35 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002495/01/25/47/35 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002599/01/25/49/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002703/02/25/00/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002807/02/25/02/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002911/02/25/04/43 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003015/02/25/06/43 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003119/02/25/08/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003223/02/25/10/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003327/02/25/12/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003431/02/25/14/51 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003535/02/25/16/51 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003639/02/25/18/03 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003743/02/25/20/03 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003847/02/25/22/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003951/02/25/24/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004055/03/25/26/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004159/03/25/28/11 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004263/03/25/30/11 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004367/03/25/32/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004471/03/25/34/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004575/03/25/36/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004679/03/25/38/19 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004783/03/25/40/19 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004887/03/25/42/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004991/03/25/44/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005095/03/25/46/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005199/03/25/48/27 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005303/03/25/50/27 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005407/04/25/01/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005511/04/25/03/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005615/04/25/05/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005719/04/25/07/35 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005823/04/25/09/35 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005927/04/25/11/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006031/04/25/13/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006135/04/25/15/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006239/04/25/17/43 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006343/04/25/19/43 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006447/04/25/21/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006551/04/25/23/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006655/05/25/25/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006759/05/25/27/51 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006863/05/25/29/51 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006967/05/25/31/03 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007071/05/25/33/03 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007175/05/25/35/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007279/05/25/37/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007383/05/25/39/07 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007487/05/25/41/11 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007591/05/25/43/11 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007695/05/25/45/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007799/05/25/47/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007903/05/25/49/15 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008007/06/25/00/19 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008111/06/25/02/19 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008215/06/25/04/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008319/06/25/06/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008423/06/25/08/23 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008527/06/25/10/27 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008631/06/25/12/27 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008735/06/25/14/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008839/06/25/16/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008943/06/25/18/31 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009047/06/25/20/35 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009151/06/25/22/35 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009255/06/25/24/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009359/07/25/26/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009463/07/25/28/39 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009567/07/25/30/43 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009671/07/25/32/43 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009775/07/25/34/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009879/07/25/36/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009983/07/25/38/47 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010087/07/25/40/51 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010191/07/25/42/51 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010295/07/25/44/03 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010399/07/25/46/03 meas period end fn_mod:77, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000012/00/12/12/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000116/00/12/14/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000220/00/12/16/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000324/00/12/18/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000428/00/12/20/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000532/00/12/22/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000636/00/12/24/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000740/00/12/26/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000844/00/12/28/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000948/00/12/30/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001052/00/12/32/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001156/00/12/34/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001260/00/12/36/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001364/01/12/38/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001468/01/12/40/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001572/01/12/42/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001676/01/12/44/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001780/01/12/46/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001884/01/12/48/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001988/01/12/50/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002092/01/12/01/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002196/01/12/03/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002300/01/12/05/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002404/01/12/07/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002508/01/12/09/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002612/01/12/11/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002716/02/12/13/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002820/02/12/15/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002924/02/12/17/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003028/02/12/19/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003132/02/12/21/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003236/02/12/23/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003340/02/12/25/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003444/02/12/27/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003548/02/12/29/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003652/02/12/31/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003756/02/12/33/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003860/02/12/35/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003964/02/12/37/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004068/03/12/39/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004172/03/12/41/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004276/03/12/43/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004380/03/12/45/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004484/03/12/47/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004588/03/12/49/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004692/03/12/00/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004796/03/12/02/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004900/03/12/04/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005004/03/12/06/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005108/03/12/08/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005212/03/12/10/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005316/04/12/12/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005420/04/12/14/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005524/04/12/16/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005628/04/12/18/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005732/04/12/20/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005836/04/12/22/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005940/04/12/24/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006044/04/12/26/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006148/04/12/28/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006252/04/12/30/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006356/04/12/32/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006460/04/12/34/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006564/04/12/36/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006668/05/12/38/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006772/05/12/40/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006876/05/12/42/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006980/05/12/44/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007084/05/12/46/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007188/05/12/48/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007292/05/12/50/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007396/05/12/01/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007500/05/12/03/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007604/05/12/05/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007708/05/12/07/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007812/05/12/09/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007916/05/12/11/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008020/06/12/13/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008124/06/12/15/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008228/06/12/17/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008332/06/12/19/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008436/06/12/21/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008540/06/12/23/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008644/06/12/25/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008748/06/12/27/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008852/06/12/29/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008956/06/12/31/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009060/06/12/33/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009164/06/12/35/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009268/06/12/37/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009372/07/12/39/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009476/07/12/41/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009580/07/12/43/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009684/07/12/45/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009788/07/12/47/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009892/07/12/49/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009996/07/12/00/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 010100/07/12/02/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 010204/07/12/04/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 010308/07/12/06/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000012/00/12/12/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000116/00/12/14/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000220/00/12/16/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000324/00/12/18/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000428/00/12/20/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000532/00/12/22/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000636/00/12/24/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000740/00/12/26/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000844/00/12/28/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 000948/00/12/30/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001052/00/12/32/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001156/00/12/34/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001260/00/12/36/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001364/01/12/38/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001468/01/12/40/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001572/01/12/42/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001676/01/12/44/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001780/01/12/46/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001884/01/12/48/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 001988/01/12/50/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002092/01/12/01/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002196/01/12/03/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002300/01/12/05/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002404/01/12/07/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002508/01/12/09/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002612/01/12/11/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002716/02/12/13/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002820/02/12/15/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 002924/02/12/17/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003028/02/12/19/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003132/02/12/21/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003236/02/12/23/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003340/02/12/25/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003444/02/12/27/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003548/02/12/29/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003652/02/12/31/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003756/02/12/33/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003860/02/12/35/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 003964/02/12/37/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004068/03/12/39/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004172/03/12/41/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004276/03/12/43/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004380/03/12/45/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004484/03/12/47/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004588/03/12/49/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004692/03/12/00/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004796/03/12/02/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 004900/03/12/04/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005004/03/12/06/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005108/03/12/08/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005212/03/12/10/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005316/04/12/12/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005420/04/12/14/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005524/04/12/16/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005628/04/12/18/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005732/04/12/20/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005836/04/12/22/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 005940/04/12/24/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006044/04/12/26/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006148/04/12/28/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006252/04/12/30/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006356/04/12/32/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006460/04/12/34/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006564/04/12/36/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006668/05/12/38/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006772/05/12/40/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006876/05/12/42/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 006980/05/12/44/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007084/05/12/46/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007188/05/12/48/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007292/05/12/50/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007396/05/12/01/20 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007500/05/12/03/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007604/05/12/05/24 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007708/05/12/07/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007812/05/12/09/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 007916/05/12/11/28 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008020/06/12/13/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008124/06/12/15/32 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008228/06/12/17/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008332/06/12/19/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008436/06/12/21/36 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008540/06/12/23/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008644/06/12/25/40 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008748/06/12/27/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008852/06/12/29/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 008956/06/12/31/44 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009060/06/12/33/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009164/06/12/35/48 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009268/06/12/37/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009372/07/12/39/00 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009476/07/12/41/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009580/07/12/43/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009684/07/12/45/04 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009788/07/12/47/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009892/07/12/49/08 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 009996/07/12/00/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 010100/07/12/02/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 010204/07/12/04/12 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=0) 010308/07/12/06/16 meas period end fn_mod:90, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000025/00/25/25/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000129/00/25/27/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000233/00/25/29/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000337/00/25/31/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000441/00/25/33/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000545/00/25/35/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000649/00/25/37/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000753/00/25/39/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000857/00/25/41/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000961/00/25/43/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001065/00/25/45/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001169/00/25/47/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001273/00/25/49/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001377/01/25/00/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001481/01/25/02/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001585/01/25/04/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001689/01/25/06/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001793/01/25/08/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001897/01/25/10/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002001/01/25/12/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002105/01/25/14/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002209/01/25/16/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002313/01/25/18/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002417/01/25/20/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002521/01/25/22/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002625/01/25/24/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002729/02/25/26/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002833/02/25/28/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002937/02/25/30/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003041/02/25/32/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003145/02/25/34/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003249/02/25/36/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003353/02/25/38/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003457/02/25/40/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003561/02/25/42/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003665/02/25/44/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003769/02/25/46/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003873/02/25/48/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003977/02/25/50/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004081/03/25/01/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004185/03/25/03/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004289/03/25/05/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004393/03/25/07/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004497/03/25/09/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004601/03/25/11/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004705/03/25/13/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004809/03/25/15/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004913/03/25/17/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005017/03/25/19/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005121/03/25/21/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005225/03/25/23/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005329/04/25/25/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005433/04/25/27/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005537/04/25/29/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005641/04/25/31/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005745/04/25/33/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005849/04/25/35/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005953/04/25/37/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006057/04/25/39/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006161/04/25/41/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006265/04/25/43/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006369/04/25/45/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006473/04/25/47/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006577/04/25/49/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006681/05/25/00/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006785/05/25/02/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006889/05/25/04/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006993/05/25/06/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007097/05/25/08/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007201/05/25/10/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007305/05/25/12/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007409/05/25/14/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007513/05/25/16/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007617/05/25/18/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007721/05/25/20/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007825/05/25/22/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007929/05/25/24/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008033/06/25/26/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008137/06/25/28/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008241/06/25/30/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008345/06/25/32/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008449/06/25/34/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008553/06/25/36/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008657/06/25/38/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008761/06/25/40/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008865/06/25/42/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008969/06/25/44/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009073/06/25/46/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009177/06/25/48/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009281/06/25/50/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009385/07/25/01/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009489/07/25/03/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009593/07/25/05/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009697/07/25/07/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009801/07/25/09/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009905/07/25/11/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 010009/07/25/13/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 010113/07/25/15/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 010217/07/25/17/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=1) 010321/07/25/19/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 000025/00/25/25/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 000129/00/25/27/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 000233/00/25/29/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 000337/00/25/31/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 000441/00/25/33/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 000545/00/25/35/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 000649/00/25/37/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 000753/00/25/39/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 000857/00/25/41/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 000961/00/25/43/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 001065/00/25/45/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 001169/00/25/47/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 001273/00/25/49/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 001377/01/25/00/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 001481/01/25/02/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 001585/01/25/04/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 001689/01/25/06/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 001793/01/25/08/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 001897/01/25/10/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 002001/01/25/12/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 002105/01/25/14/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 002209/01/25/16/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 002313/01/25/18/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 002417/01/25/20/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 002521/01/25/22/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 002625/01/25/24/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 002729/02/25/26/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 002833/02/25/28/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 002937/02/25/30/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 003041/02/25/32/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 003145/02/25/34/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 003249/02/25/36/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 003353/02/25/38/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 003457/02/25/40/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 003561/02/25/42/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 003665/02/25/44/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 003769/02/25/46/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 003873/02/25/48/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 003977/02/25/50/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 004081/03/25/01/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 004185/03/25/03/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 004289/03/25/05/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 004393/03/25/07/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 004497/03/25/09/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 004601/03/25/11/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 004705/03/25/13/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 004809/03/25/15/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 004913/03/25/17/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 005017/03/25/19/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 005121/03/25/21/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 005225/03/25/23/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 005329/04/25/25/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 005433/04/25/27/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 005537/04/25/29/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 005641/04/25/31/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 005745/04/25/33/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 005849/04/25/35/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 005953/04/25/37/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 006057/04/25/39/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 006161/04/25/41/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 006265/04/25/43/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 006369/04/25/45/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 006473/04/25/47/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 006577/04/25/49/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 006681/05/25/00/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 006785/05/25/02/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 006889/05/25/04/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 006993/05/25/06/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 007097/05/25/08/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 007201/05/25/10/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 007305/05/25/12/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 007409/05/25/14/33 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 007513/05/25/16/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 007617/05/25/18/37 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 007721/05/25/20/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 007825/05/25/22/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 007929/05/25/24/41 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 008033/06/25/26/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 008137/06/25/28/45 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 008241/06/25/30/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 008345/06/25/32/49 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 008449/06/25/34/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 008553/06/25/36/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 008657/06/25/38/01 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 008761/06/25/40/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 008865/06/25/42/05 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 008969/06/25/44/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 009073/06/25/46/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 009177/06/25/48/09 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 009281/06/25/50/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 009385/07/25/01/13 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 009489/07/25/03/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 009593/07/25/05/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 009697/07/25/07/17 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 009801/07/25/09/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 009905/07/25/11/21 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 010009/07/25/13/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 010113/07/25/15/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 010217/07/25/17/25 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=1,ss=1) 010321/07/25/19/29 meas period end fn_mod:103, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000142/00/12/40/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000246/00/12/42/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000350/00/12/44/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000454/00/12/46/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000558/00/12/48/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000662/00/12/50/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000766/00/12/01/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000870/00/12/03/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000974/00/12/05/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001078/00/12/07/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001182/00/12/09/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001286/00/12/11/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001390/01/12/13/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001494/01/12/15/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001598/01/12/17/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001702/01/12/19/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001806/01/12/21/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 001910/01/12/23/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002014/01/12/25/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002118/01/12/27/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002222/01/12/29/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002326/01/12/31/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002430/01/12/33/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002534/01/12/35/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002638/01/12/37/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002742/02/12/39/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002846/02/12/41/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 002950/02/12/43/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003054/02/12/45/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003158/02/12/47/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003262/02/12/49/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003366/02/12/00/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003470/02/12/02/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003574/02/12/04/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003678/02/12/06/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003782/02/12/08/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003886/02/12/10/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 003990/03/12/12/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004094/03/12/14/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004198/03/12/16/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004302/03/12/18/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004406/03/12/20/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004510/03/12/22/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004614/03/12/24/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004718/03/12/26/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004822/03/12/28/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 004926/03/12/30/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005030/03/12/32/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005134/03/12/34/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005238/03/12/36/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005342/04/12/38/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005446/04/12/40/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005550/04/12/42/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005654/04/12/44/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005758/04/12/46/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005862/04/12/48/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 005966/04/12/50/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006070/04/12/01/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006174/04/12/03/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006278/04/12/05/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006382/04/12/07/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006486/04/12/09/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006590/04/12/11/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006694/05/12/13/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006798/05/12/15/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 006902/05/12/17/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007006/05/12/19/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007110/05/12/21/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007214/05/12/23/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007318/05/12/25/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007422/05/12/27/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007526/05/12/29/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007630/05/12/31/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007734/05/12/33/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007838/05/12/35/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 007942/05/12/37/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008046/06/12/39/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008150/06/12/41/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008254/06/12/43/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008358/06/12/45/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008462/06/12/47/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008566/06/12/49/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008670/06/12/00/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008774/06/12/02/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008878/06/12/04/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 008982/06/12/06/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009086/06/12/08/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009190/06/12/10/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009294/07/12/12/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009398/07/12/14/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009502/07/12/16/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009606/07/12/18/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009710/07/12/20/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009814/07/12/22/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 009918/07/12/24/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010022/07/12/26/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010126/07/12/28/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010230/07/12/30/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=0) 010334/07/12/32/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000038/00/12/38/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000142/00/12/40/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000246/00/12/42/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000350/00/12/44/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000454/00/12/46/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000558/00/12/48/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000662/00/12/50/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000766/00/12/01/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000870/00/12/03/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 000974/00/12/05/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001078/00/12/07/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001182/00/12/09/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001286/00/12/11/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001390/01/12/13/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001494/01/12/15/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001598/01/12/17/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001702/01/12/19/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001806/01/12/21/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 001910/01/12/23/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002014/01/12/25/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002118/01/12/27/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002222/01/12/29/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002326/01/12/31/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002430/01/12/33/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002534/01/12/35/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002638/01/12/37/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002742/02/12/39/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002846/02/12/41/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 002950/02/12/43/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003054/02/12/45/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003158/02/12/47/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003262/02/12/49/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003366/02/12/00/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003470/02/12/02/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003574/02/12/04/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003678/02/12/06/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003782/02/12/08/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003886/02/12/10/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 003990/03/12/12/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004094/03/12/14/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004198/03/12/16/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004302/03/12/18/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004406/03/12/20/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004510/03/12/22/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004614/03/12/24/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004718/03/12/26/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004822/03/12/28/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 004926/03/12/30/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005030/03/12/32/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005134/03/12/34/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005238/03/12/36/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005342/04/12/38/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005446/04/12/40/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005550/04/12/42/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005654/04/12/44/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005758/04/12/46/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005862/04/12/48/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 005966/04/12/50/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006070/04/12/01/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006174/04/12/03/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006278/04/12/05/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006382/04/12/07/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006486/04/12/09/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006590/04/12/11/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006694/05/12/13/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006798/05/12/15/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 006902/05/12/17/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007006/05/12/19/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007110/05/12/21/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007214/05/12/23/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007318/05/12/25/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007422/05/12/27/46 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007526/05/12/29/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007630/05/12/31/50 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007734/05/12/33/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007838/05/12/35/02 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 007942/05/12/37/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008046/06/12/39/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008150/06/12/41/06 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008254/06/12/43/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008358/06/12/45/10 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008462/06/12/47/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008566/06/12/49/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008670/06/12/00/14 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008774/06/12/02/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008878/06/12/04/18 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 008982/06/12/06/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009086/06/12/08/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009190/06/12/10/22 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009294/07/12/12/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009398/07/12/14/26 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009502/07/12/16/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009606/07/12/18/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009710/07/12/20/30 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009814/07/12/22/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 009918/07/12/24/34 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010022/07/12/26/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010126/07/12/28/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010230/07/12/30/38 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=0) 010334/07/12/32/42 meas period end fn_mod:12, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 000051/00/25/00/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 000155/00/25/02/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 000259/00/25/04/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 000363/00/25/06/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 000467/00/25/08/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 000571/00/25/10/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 000675/00/25/12/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 000779/00/25/14/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 000883/00/25/16/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 000987/00/25/18/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 001091/00/25/20/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 001195/00/25/22/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 001299/00/25/24/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 001403/01/25/26/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 001507/01/25/28/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 001611/01/25/30/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 001715/01/25/32/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 001819/01/25/34/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 001923/01/25/36/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 002027/01/25/38/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 002131/01/25/40/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 002235/01/25/42/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 002339/01/25/44/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 002443/01/25/46/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 002547/01/25/48/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 002651/01/25/50/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 002755/02/25/01/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 002859/02/25/03/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 002963/02/25/05/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 003067/02/25/07/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 003171/02/25/09/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 003275/02/25/11/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 003379/02/25/13/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 003483/02/25/15/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 003587/02/25/17/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 003691/02/25/19/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 003795/02/25/21/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 003899/02/25/23/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 004003/03/25/25/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 004107/03/25/27/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 004211/03/25/29/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 004315/03/25/31/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 004419/03/25/33/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 004523/03/25/35/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 004627/03/25/37/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 004731/03/25/39/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 004835/03/25/41/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 004939/03/25/43/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 005043/03/25/45/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 005147/03/25/47/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 005251/03/25/49/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 005355/04/25/00/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 005459/04/25/02/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 005563/04/25/04/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 005667/04/25/06/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 005771/04/25/08/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 005875/04/25/10/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 005979/04/25/12/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 006083/04/25/14/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 006187/04/25/16/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 006291/04/25/18/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 006395/04/25/20/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 006499/04/25/22/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 006603/04/25/24/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 006707/05/25/26/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 006811/05/25/28/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 006915/05/25/30/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 007019/05/25/32/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 007123/05/25/34/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 007227/05/25/36/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 007331/05/25/38/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 007435/05/25/40/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 007539/05/25/42/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 007643/05/25/44/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 007747/05/25/46/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 007851/05/25/48/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 007955/05/25/50/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 008059/06/25/01/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 008163/06/25/03/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 008267/06/25/05/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 008371/06/25/07/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 008475/06/25/09/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 008579/06/25/11/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 008683/06/25/13/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 008787/06/25/15/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 008891/06/25/17/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 008995/06/25/19/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009099/06/25/21/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009203/06/25/23/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009307/07/25/25/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009411/07/25/27/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009515/07/25/29/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009619/07/25/31/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009723/07/25/33/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009827/07/25/35/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 009931/07/25/37/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010035/07/25/39/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010139/07/25/41/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010243/07/25/43/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=2,ss=1) 010347/07/25/45/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 000051/00/25/00/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 000155/00/25/02/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 000259/00/25/04/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 000363/00/25/06/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 000467/00/25/08/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 000571/00/25/10/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 000675/00/25/12/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 000779/00/25/14/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 000883/00/25/16/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 000987/00/25/18/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 001091/00/25/20/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 001195/00/25/22/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 001299/00/25/24/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 001403/01/25/26/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 001507/01/25/28/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 001611/01/25/30/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 001715/01/25/32/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 001819/01/25/34/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 001923/01/25/36/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 002027/01/25/38/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 002131/01/25/40/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 002235/01/25/42/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 002339/01/25/44/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 002443/01/25/46/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 002547/01/25/48/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 002651/01/25/50/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 002755/02/25/01/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 002859/02/25/03/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 002963/02/25/05/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 003067/02/25/07/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 003171/02/25/09/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 003275/02/25/11/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 003379/02/25/13/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 003483/02/25/15/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 003587/02/25/17/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 003691/02/25/19/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 003795/02/25/21/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 003899/02/25/23/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 004003/03/25/25/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 004107/03/25/27/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 004211/03/25/29/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 004315/03/25/31/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 004419/03/25/33/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 004523/03/25/35/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 004627/03/25/37/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 004731/03/25/39/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 004835/03/25/41/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 004939/03/25/43/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 005043/03/25/45/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 005147/03/25/47/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 005251/03/25/49/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 005355/04/25/00/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 005459/04/25/02/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 005563/04/25/04/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 005667/04/25/06/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 005771/04/25/08/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 005875/04/25/10/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 005979/04/25/12/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 006083/04/25/14/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 006187/04/25/16/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 006291/04/25/18/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 006395/04/25/20/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 006499/04/25/22/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 006603/04/25/24/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 006707/05/25/26/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 006811/05/25/28/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 006915/05/25/30/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 007019/05/25/32/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 007123/05/25/34/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 007227/05/25/36/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 007331/05/25/38/07 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 007435/05/25/40/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 007539/05/25/42/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 007643/05/25/44/11 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 007747/05/25/46/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 007851/05/25/48/15 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 007955/05/25/50/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 008059/06/25/01/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 008163/06/25/03/19 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 008267/06/25/05/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 008371/06/25/07/23 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 008475/06/25/09/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 008579/06/25/11/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 008683/06/25/13/27 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 008787/06/25/15/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 008891/06/25/17/31 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 008995/06/25/19/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 009099/06/25/21/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 009203/06/25/23/35 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 009307/07/25/25/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 009411/07/25/27/39 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 009515/07/25/29/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 009619/07/25/31/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 009723/07/25/33/43 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 009827/07/25/35/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 009931/07/25/37/47 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010035/07/25/39/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010139/07/25/41/51 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010243/07/25/43/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=3,ss=1) 010347/07/25/45/03 meas period end fn_mod:25, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000064/00/12/13/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000168/00/12/15/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000272/00/12/17/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000376/00/12/19/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000480/00/12/21/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000584/00/12/23/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000688/00/12/25/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000792/00/12/27/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 000896/00/12/29/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001000/00/12/31/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001104/00/12/33/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001208/00/12/35/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001312/00/12/37/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001416/01/12/39/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001520/01/12/41/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001624/01/12/43/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001728/01/12/45/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001832/01/12/47/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 001936/01/12/49/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002040/01/12/00/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002144/01/12/02/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002248/01/12/04/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002352/01/12/06/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002456/01/12/08/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002560/01/12/10/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002664/02/12/12/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002768/02/12/14/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002872/02/12/16/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 002976/02/12/18/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003080/02/12/20/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003184/02/12/22/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003288/02/12/24/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003392/02/12/26/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003496/02/12/28/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003600/02/12/30/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003704/02/12/32/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003808/02/12/34/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 003912/02/12/36/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004016/03/12/38/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004120/03/12/40/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004224/03/12/42/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004328/03/12/44/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004432/03/12/46/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004536/03/12/48/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004640/03/12/50/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004744/03/12/01/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004848/03/12/03/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 004952/03/12/05/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005056/03/12/07/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005160/03/12/09/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005264/03/12/11/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005368/04/12/13/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005472/04/12/15/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005576/04/12/17/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005680/04/12/19/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005784/04/12/21/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005888/04/12/23/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 005992/04/12/25/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006096/04/12/27/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006200/04/12/29/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006304/04/12/31/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006408/04/12/33/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006512/04/12/35/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006616/04/12/37/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006720/05/12/39/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006824/05/12/41/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 006928/05/12/43/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007032/05/12/45/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007136/05/12/47/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007240/05/12/49/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007344/05/12/00/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007448/05/12/02/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007552/05/12/04/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007656/05/12/06/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007760/05/12/08/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007864/05/12/10/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 007968/06/12/12/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008072/06/12/14/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008176/06/12/16/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008280/06/12/18/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008384/06/12/20/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008488/06/12/22/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008592/06/12/24/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008696/06/12/26/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008800/06/12/28/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 008904/06/12/30/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009008/06/12/32/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009112/06/12/34/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009216/06/12/36/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009320/07/12/38/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009424/07/12/40/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009528/07/12/42/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009632/07/12/44/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009736/07/12/46/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009840/07/12/48/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 009944/07/12/50/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010048/07/12/01/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010152/07/12/03/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010256/07/12/05/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=0) 010360/07/12/07/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000064/00/12/13/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000168/00/12/15/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000272/00/12/17/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000376/00/12/19/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000480/00/12/21/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000584/00/12/23/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000688/00/12/25/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000792/00/12/27/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 000896/00/12/29/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001000/00/12/31/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001104/00/12/33/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001208/00/12/35/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001312/00/12/37/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001416/01/12/39/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001520/01/12/41/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001624/01/12/43/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001728/01/12/45/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001832/01/12/47/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 001936/01/12/49/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002040/01/12/00/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002144/01/12/02/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002248/01/12/04/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002352/01/12/06/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002456/01/12/08/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002560/01/12/10/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002664/02/12/12/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002768/02/12/14/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002872/02/12/16/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 002976/02/12/18/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003080/02/12/20/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003184/02/12/22/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003288/02/12/24/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003392/02/12/26/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003496/02/12/28/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003600/02/12/30/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003704/02/12/32/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003808/02/12/34/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 003912/02/12/36/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004016/03/12/38/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004120/03/12/40/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004224/03/12/42/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004328/03/12/44/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004432/03/12/46/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004536/03/12/48/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004640/03/12/50/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004744/03/12/01/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004848/03/12/03/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 004952/03/12/05/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005056/03/12/07/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005160/03/12/09/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005264/03/12/11/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005368/04/12/13/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005472/04/12/15/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005576/04/12/17/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005680/04/12/19/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005784/04/12/21/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005888/04/12/23/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 005992/04/12/25/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006096/04/12/27/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006200/04/12/29/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006304/04/12/31/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006408/04/12/33/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006512/04/12/35/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006616/04/12/37/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006720/05/12/39/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006824/05/12/41/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 006928/05/12/43/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007032/05/12/45/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007136/05/12/47/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007240/05/12/49/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007344/05/12/00/20 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007448/05/12/02/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007552/05/12/04/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007656/05/12/06/24 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007760/05/12/08/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007864/05/12/10/28 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 007968/06/12/12/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008072/06/12/14/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008176/06/12/16/32 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008280/06/12/18/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008384/06/12/20/36 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008488/06/12/22/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008592/06/12/24/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008696/06/12/26/40 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008800/06/12/28/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 008904/06/12/30/44 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009008/06/12/32/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009112/06/12/34/48 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009216/06/12/36/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009320/07/12/38/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009424/07/12/40/00 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009528/07/12/42/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009632/07/12/44/04 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009736/07/12/46/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009840/07/12/48/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 009944/07/12/50/08 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 010048/07/12/01/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 010152/07/12/03/12 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 010256/07/12/05/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=0) 010360/07/12/07/16 meas period end fn_mod:38, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 000077/00/25/26/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 000181/00/25/28/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 000285/00/25/30/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 000389/00/25/32/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 000493/00/25/34/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 000597/00/25/36/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 000701/00/25/38/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 000805/00/25/40/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 000909/00/25/42/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 001013/00/25/44/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 001117/00/25/46/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 001221/00/25/48/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 001325/00/25/50/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 001429/01/25/01/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 001533/01/25/03/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 001637/01/25/05/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 001741/01/25/07/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 001845/01/25/09/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 001949/01/25/11/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 002053/01/25/13/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 002157/01/25/15/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 002261/01/25/17/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 002365/01/25/19/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 002469/01/25/21/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 002573/01/25/23/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 002677/02/25/25/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 002781/02/25/27/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 002885/02/25/29/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 002989/02/25/31/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 003093/02/25/33/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 003197/02/25/35/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 003301/02/25/37/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 003405/02/25/39/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 003509/02/25/41/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 003613/02/25/43/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 003717/02/25/45/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 003821/02/25/47/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 003925/02/25/49/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 004029/03/25/00/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 004133/03/25/02/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 004237/03/25/04/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 004341/03/25/06/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 004445/03/25/08/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 004549/03/25/10/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 004653/03/25/12/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 004757/03/25/14/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 004861/03/25/16/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 004965/03/25/18/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 005069/03/25/20/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 005173/03/25/22/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 005277/03/25/24/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 005381/04/25/26/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 005485/04/25/28/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 005589/04/25/30/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 005693/04/25/32/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 005797/04/25/34/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 005901/04/25/36/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 006005/04/25/38/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 006109/04/25/40/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 006213/04/25/42/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 006317/04/25/44/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 006421/04/25/46/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 006525/04/25/48/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 006629/04/25/50/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 006733/05/25/01/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 006837/05/25/03/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 006941/05/25/05/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 007045/05/25/07/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 007149/05/25/09/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 007253/05/25/11/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 007357/05/25/13/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 007461/05/25/15/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 007565/05/25/17/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 007669/05/25/19/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 007773/05/25/21/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 007877/05/25/23/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 007981/06/25/25/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008085/06/25/27/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008189/06/25/29/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008293/06/25/31/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008397/06/25/33/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008501/06/25/35/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008605/06/25/37/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008709/06/25/39/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008813/06/25/41/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 008917/06/25/43/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009021/06/25/45/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009125/06/25/47/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009229/06/25/49/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009333/07/25/00/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009437/07/25/02/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009541/07/25/04/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009645/07/25/06/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009749/07/25/08/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009853/07/25/10/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 009957/07/25/12/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010061/07/25/14/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010165/07/25/16/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010269/07/25/18/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=4,ss=1) 010373/07/25/20/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 000077/00/25/26/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 000181/00/25/28/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 000285/00/25/30/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 000389/00/25/32/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 000493/00/25/34/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 000597/00/25/36/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 000701/00/25/38/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 000805/00/25/40/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 000909/00/25/42/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 001013/00/25/44/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 001117/00/25/46/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 001221/00/25/48/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 001325/00/25/50/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 001429/01/25/01/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 001533/01/25/03/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 001637/01/25/05/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 001741/01/25/07/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 001845/01/25/09/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 001949/01/25/11/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 002053/01/25/13/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 002157/01/25/15/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 002261/01/25/17/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 002365/01/25/19/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 002469/01/25/21/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 002573/01/25/23/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 002677/02/25/25/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 002781/02/25/27/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 002885/02/25/29/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 002989/02/25/31/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 003093/02/25/33/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 003197/02/25/35/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 003301/02/25/37/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 003405/02/25/39/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 003509/02/25/41/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 003613/02/25/43/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 003717/02/25/45/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 003821/02/25/47/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 003925/02/25/49/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 004029/03/25/00/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 004133/03/25/02/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 004237/03/25/04/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 004341/03/25/06/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 004445/03/25/08/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 004549/03/25/10/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 004653/03/25/12/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 004757/03/25/14/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 004861/03/25/16/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 004965/03/25/18/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005069/03/25/20/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005173/03/25/22/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005277/03/25/24/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005381/04/25/26/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005485/04/25/28/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005589/04/25/30/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005693/04/25/32/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005797/04/25/34/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 005901/04/25/36/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006005/04/25/38/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006109/04/25/40/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006213/04/25/42/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006317/04/25/44/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006421/04/25/46/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006525/04/25/48/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006629/04/25/50/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006733/05/25/01/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006837/05/25/03/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 006941/05/25/05/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007045/05/25/07/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007149/05/25/09/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007253/05/25/11/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007357/05/25/13/33 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007461/05/25/15/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007565/05/25/17/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007669/05/25/19/37 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007773/05/25/21/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007877/05/25/23/41 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 007981/06/25/25/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008085/06/25/27/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008189/06/25/29/45 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008293/06/25/31/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008397/06/25/33/49 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008501/06/25/35/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008605/06/25/37/01 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008709/06/25/39/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008813/06/25/41/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 008917/06/25/43/05 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 009021/06/25/45/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 009125/06/25/47/09 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 009229/06/25/49/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 009333/07/25/00/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 009437/07/25/02/13 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 009541/07/25/04/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 009645/07/25/06/17 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 009749/07/25/08/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 009853/07/25/10/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 009957/07/25/12/21 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 010061/07/25/14/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 010165/07/25/16/25 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 010269/07/25/18/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=5,ss=1) 010373/07/25/20/29 meas period end fn_mod:51, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000090/00/12/39/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000194/00/12/41/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000298/00/12/43/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000402/00/12/45/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000506/00/12/47/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000610/00/12/49/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000714/00/12/00/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000818/00/12/02/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 000922/00/12/04/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001026/00/12/06/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001130/00/12/08/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001234/00/12/10/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001338/01/12/12/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001442/01/12/14/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001546/01/12/16/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001650/01/12/18/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001754/01/12/20/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001858/01/12/22/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 001962/01/12/24/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002066/01/12/26/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002170/01/12/28/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002274/01/12/30/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002378/01/12/32/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002482/01/12/34/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002586/01/12/36/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002690/02/12/38/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002794/02/12/40/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 002898/02/12/42/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003002/02/12/44/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003106/02/12/46/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003210/02/12/48/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003314/02/12/50/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003418/02/12/01/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003522/02/12/03/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003626/02/12/05/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003730/02/12/07/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003834/02/12/09/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 003938/02/12/11/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004042/03/12/13/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004146/03/12/15/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004250/03/12/17/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004354/03/12/19/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004458/03/12/21/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004562/03/12/23/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004666/03/12/25/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004770/03/12/27/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004874/03/12/29/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 004978/03/12/31/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005082/03/12/33/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005186/03/12/35/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005290/03/12/37/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005394/04/12/39/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005498/04/12/41/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005602/04/12/43/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005706/04/12/45/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005810/04/12/47/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 005914/04/12/49/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006018/04/12/00/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006122/04/12/02/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006226/04/12/04/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006330/04/12/06/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006434/04/12/08/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006538/04/12/10/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006642/05/12/12/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006746/05/12/14/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006850/05/12/16/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 006954/05/12/18/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007058/05/12/20/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007162/05/12/22/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007266/05/12/24/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007370/05/12/26/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007474/05/12/28/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007578/05/12/30/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007682/05/12/32/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007786/05/12/34/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007890/05/12/36/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 007994/06/12/38/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008098/06/12/40/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008202/06/12/42/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008306/06/12/44/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008410/06/12/46/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008514/06/12/48/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008618/06/12/50/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008722/06/12/01/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008826/06/12/03/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 008930/06/12/05/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009034/06/12/07/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009138/06/12/09/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009242/06/12/11/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009346/07/12/13/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009450/07/12/15/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009554/07/12/17/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009658/07/12/19/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009762/07/12/21/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009866/07/12/23/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 009970/07/12/25/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010074/07/12/27/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010178/07/12/29/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010282/07/12/31/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=0) 010386/07/12/33/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000090/00/12/39/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000194/00/12/41/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000298/00/12/43/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000402/00/12/45/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000506/00/12/47/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000610/00/12/49/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000714/00/12/00/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000818/00/12/02/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 000922/00/12/04/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001026/00/12/06/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001130/00/12/08/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001234/00/12/10/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001338/01/12/12/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001442/01/12/14/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001546/01/12/16/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001650/01/12/18/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001754/01/12/20/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001858/01/12/22/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 001962/01/12/24/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002066/01/12/26/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002170/01/12/28/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002274/01/12/30/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002378/01/12/32/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002482/01/12/34/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002586/01/12/36/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002690/02/12/38/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002794/02/12/40/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 002898/02/12/42/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003002/02/12/44/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003106/02/12/46/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003210/02/12/48/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003314/02/12/50/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003418/02/12/01/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003522/02/12/03/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003626/02/12/05/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003730/02/12/07/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003834/02/12/09/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 003938/02/12/11/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004042/03/12/13/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004146/03/12/15/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004250/03/12/17/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004354/03/12/19/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004458/03/12/21/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004562/03/12/23/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004666/03/12/25/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004770/03/12/27/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004874/03/12/29/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 004978/03/12/31/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005082/03/12/33/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005186/03/12/35/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005290/03/12/37/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005394/04/12/39/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005498/04/12/41/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005602/04/12/43/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005706/04/12/45/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005810/04/12/47/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 005914/04/12/49/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006018/04/12/00/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006122/04/12/02/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006226/04/12/04/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006330/04/12/06/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006434/04/12/08/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006538/04/12/10/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006642/05/12/12/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006746/05/12/14/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006850/05/12/16/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 006954/05/12/18/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007058/05/12/20/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007162/05/12/22/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007266/05/12/24/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007370/05/12/26/46 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007474/05/12/28/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007578/05/12/30/50 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007682/05/12/32/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007786/05/12/34/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007890/05/12/36/02 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 007994/06/12/38/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008098/06/12/40/06 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008202/06/12/42/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008306/06/12/44/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008410/06/12/46/10 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008514/06/12/48/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008618/06/12/50/14 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008722/06/12/01/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008826/06/12/03/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 008930/06/12/05/18 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009034/06/12/07/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009138/06/12/09/22 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009242/06/12/11/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009346/07/12/13/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009450/07/12/15/26 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009554/07/12/17/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009658/07/12/19/30 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009762/07/12/21/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009866/07/12/23/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 009970/07/12/25/34 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010074/07/12/27/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010178/07/12/29/38 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010282/07/12/31/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=0) 010386/07/12/33/42 meas period end fn_mod:64, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 000103/00/25/01/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 000207/00/25/03/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 000311/00/25/05/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 000415/00/25/07/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 000519/00/25/09/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 000623/00/25/11/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 000727/00/25/13/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 000831/00/25/15/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 000935/00/25/17/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 001039/00/25/19/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 001143/00/25/21/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 001247/00/25/23/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 001351/01/25/25/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 001455/01/25/27/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 001559/01/25/29/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 001663/01/25/31/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 001767/01/25/33/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 001871/01/25/35/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 001975/01/25/37/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 002079/01/25/39/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 002183/01/25/41/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 002287/01/25/43/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 002391/01/25/45/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 002495/01/25/47/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 002599/01/25/49/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 002703/02/25/00/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 002807/02/25/02/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 002911/02/25/04/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 003015/02/25/06/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 003119/02/25/08/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 003223/02/25/10/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 003327/02/25/12/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 003431/02/25/14/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 003535/02/25/16/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 003639/02/25/18/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 003743/02/25/20/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 003847/02/25/22/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 003951/02/25/24/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 004055/03/25/26/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 004159/03/25/28/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 004263/03/25/30/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 004367/03/25/32/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 004471/03/25/34/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 004575/03/25/36/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 004679/03/25/38/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 004783/03/25/40/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 004887/03/25/42/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 004991/03/25/44/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 005095/03/25/46/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 005199/03/25/48/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 005303/03/25/50/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 005407/04/25/01/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 005511/04/25/03/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 005615/04/25/05/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 005719/04/25/07/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 005823/04/25/09/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 005927/04/25/11/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 006031/04/25/13/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 006135/04/25/15/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 006239/04/25/17/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 006343/04/25/19/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 006447/04/25/21/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 006551/04/25/23/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 006655/05/25/25/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 006759/05/25/27/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 006863/05/25/29/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 006967/05/25/31/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 007071/05/25/33/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 007175/05/25/35/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 007279/05/25/37/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 007383/05/25/39/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 007487/05/25/41/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 007591/05/25/43/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 007695/05/25/45/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 007799/05/25/47/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 007903/05/25/49/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008007/06/25/00/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008111/06/25/02/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008215/06/25/04/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008319/06/25/06/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008423/06/25/08/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008527/06/25/10/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008631/06/25/12/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008735/06/25/14/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008839/06/25/16/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 008943/06/25/18/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009047/06/25/20/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009151/06/25/22/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009255/06/25/24/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009359/07/25/26/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009463/07/25/28/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009567/07/25/30/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009671/07/25/32/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009775/07/25/34/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009879/07/25/36/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 009983/07/25/38/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010087/07/25/40/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010191/07/25/42/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010295/07/25/44/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=6,ss=1) 010399/07/25/46/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 000103/00/25/01/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 000207/00/25/03/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 000311/00/25/05/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 000415/00/25/07/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 000519/00/25/09/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 000623/00/25/11/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 000727/00/25/13/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 000831/00/25/15/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 000935/00/25/17/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 001039/00/25/19/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 001143/00/25/21/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 001247/00/25/23/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 001351/01/25/25/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 001455/01/25/27/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 001559/01/25/29/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 001663/01/25/31/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 001767/01/25/33/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 001871/01/25/35/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 001975/01/25/37/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 002079/01/25/39/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 002183/01/25/41/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 002287/01/25/43/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 002391/01/25/45/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 002495/01/25/47/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 002599/01/25/49/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 002703/02/25/00/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 002807/02/25/02/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 002911/02/25/04/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 003015/02/25/06/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 003119/02/25/08/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 003223/02/25/10/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 003327/02/25/12/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 003431/02/25/14/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 003535/02/25/16/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 003639/02/25/18/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 003743/02/25/20/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 003847/02/25/22/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 003951/02/25/24/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 004055/03/25/26/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 004159/03/25/28/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 004263/03/25/30/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 004367/03/25/32/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 004471/03/25/34/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 004575/03/25/36/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 004679/03/25/38/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 004783/03/25/40/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 004887/03/25/42/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 004991/03/25/44/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 005095/03/25/46/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 005199/03/25/48/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 005303/03/25/50/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 005407/04/25/01/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 005511/04/25/03/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 005615/04/25/05/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 005719/04/25/07/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 005823/04/25/09/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 005927/04/25/11/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 006031/04/25/13/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 006135/04/25/15/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 006239/04/25/17/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 006343/04/25/19/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 006447/04/25/21/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 006551/04/25/23/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 006655/05/25/25/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 006759/05/25/27/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 006863/05/25/29/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 006967/05/25/31/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 007071/05/25/33/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 007175/05/25/35/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 007279/05/25/37/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 007383/05/25/39/07 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 007487/05/25/41/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 007591/05/25/43/11 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 007695/05/25/45/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 007799/05/25/47/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 007903/05/25/49/15 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 008007/06/25/00/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 008111/06/25/02/19 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 008215/06/25/04/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 008319/06/25/06/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 008423/06/25/08/23 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 008527/06/25/10/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 008631/06/25/12/27 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 008735/06/25/14/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 008839/06/25/16/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 008943/06/25/18/31 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 009047/06/25/20/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 009151/06/25/22/35 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 009255/06/25/24/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 009359/07/25/26/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 009463/07/25/28/39 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 009567/07/25/30/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 009671/07/25/32/43 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 009775/07/25/34/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 009879/07/25/36/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 009983/07/25/38/47 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 010087/07/25/40/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 010191/07/25/42/51 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 010295/07/25/44/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=7,ss=1) 010399/07/25/46/03 meas period end fn_mod:77, status:1, pchan:TCH/H
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000066/00/14/15/14 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000168/00/12/15/12 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000270/00/10/15/14 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000372/00/08/15/12 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000474/00/06/15/10 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000576/00/04/15/12 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000678/00/02/15/10 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000780/00/00/15/12 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000882/00/24/15/10 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000984/00/22/15/08 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001086/00/20/15/10 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001188/00/18/15/08 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001290/00/16/15/10 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001392/01/14/15/08 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001494/01/12/15/06 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001596/01/10/15/08 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001698/01/08/15/06 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001800/01/06/15/08 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001902/01/04/15/06 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002004/01/02/15/04 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002106/01/00/15/06 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002208/01/24/15/04 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002310/01/22/15/06 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002412/01/20/15/04 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002514/01/18/15/02 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002616/01/16/15/04 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002718/02/14/15/02 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002820/02/12/15/04 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002922/02/10/15/02 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003024/02/08/15/00 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003126/02/06/15/02 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003228/02/04/15/00 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003330/02/02/15/02 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003432/02/00/15/00 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003534/02/24/15/50 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003636/02/22/15/00 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003738/02/20/15/50 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003840/02/18/15/00 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003942/02/16/15/50 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004044/03/14/15/48 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004146/03/12/15/50 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004248/03/10/15/48 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004350/03/08/15/46 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004452/03/06/15/48 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004554/03/04/15/46 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004656/03/02/15/48 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004758/03/00/15/46 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004860/03/24/15/44 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004962/03/22/15/46 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005064/03/20/15/44 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005166/03/18/15/46 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005268/03/16/15/44 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005370/04/14/15/42 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005472/04/12/15/44 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005574/04/10/15/42 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005676/04/08/15/44 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005778/04/06/15/42 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005880/04/04/15/40 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005982/04/02/15/42 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006084/04/00/15/40 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006186/04/24/15/42 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006288/04/22/15/40 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006390/04/20/15/38 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006492/04/18/15/40 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006594/04/16/15/38 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006696/05/14/15/40 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006798/05/12/15/38 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006900/05/10/15/36 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007002/05/08/15/38 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007104/05/06/15/36 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007206/05/04/15/38 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007308/05/02/15/36 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007410/05/00/15/34 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007512/05/24/15/36 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007614/05/22/15/34 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007716/05/20/15/36 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007818/05/18/15/34 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007920/05/16/15/32 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008022/06/14/15/34 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008124/06/12/15/32 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008226/06/10/15/34 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008328/06/08/15/32 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008430/06/06/15/30 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008532/06/04/15/32 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008634/06/02/15/30 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008736/06/00/15/32 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008838/06/24/15/30 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008940/06/22/15/28 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009042/06/20/15/30 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009144/06/18/15/28 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009246/06/16/15/30 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009348/07/14/15/28 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009450/07/12/15/26 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009552/07/10/15/28 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009654/07/08/15/26 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009756/07/06/15/28 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009858/07/04/15/26 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009960/07/02/15/24 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 010062/07/00/15/26 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 010164/07/24/15/24 meas period end fn_mod:66, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000070/00/18/19/18 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000172/00/16/19/16 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000274/00/14/19/18 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000376/00/12/19/16 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000478/00/10/19/14 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000580/00/08/19/16 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000682/00/06/19/14 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000784/00/04/19/16 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000886/00/02/19/14 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000988/00/00/19/12 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001090/00/24/19/14 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001192/00/22/19/12 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001294/00/20/19/14 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001396/01/18/19/12 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001498/01/16/19/10 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001600/01/14/19/12 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001702/01/12/19/10 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001804/01/10/19/12 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001906/01/08/19/10 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002008/01/06/19/08 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002110/01/04/19/10 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002212/01/02/19/08 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002314/01/00/19/10 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002416/01/24/19/08 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002518/01/22/19/06 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002620/01/20/19/08 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002722/02/18/19/06 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002824/02/16/19/08 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002926/02/14/19/06 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003028/02/12/19/04 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003130/02/10/19/06 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003232/02/08/19/04 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003334/02/06/19/06 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003436/02/04/19/04 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003538/02/02/19/02 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003640/02/00/19/04 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003742/02/24/19/02 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003844/02/22/19/04 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003946/02/20/19/02 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004048/03/18/19/00 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004150/03/16/19/02 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004252/03/14/19/00 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004354/03/12/19/02 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004456/03/10/19/00 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004558/03/08/19/50 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004660/03/06/19/00 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004762/03/04/19/50 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004864/03/02/19/00 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004966/03/00/19/50 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005068/03/24/19/48 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005170/03/22/19/50 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005272/03/20/19/48 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005374/04/18/19/46 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005476/04/16/19/48 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005578/04/14/19/46 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005680/04/12/19/48 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005782/04/10/19/46 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005884/04/08/19/44 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005986/04/06/19/46 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006088/04/04/19/44 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006190/04/02/19/46 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006292/04/00/19/44 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006394/04/24/19/42 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006496/04/22/19/44 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006598/04/20/19/42 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006700/05/18/19/44 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006802/05/16/19/42 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006904/05/14/19/40 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007006/05/12/19/42 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007108/05/10/19/40 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007210/05/08/19/42 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007312/05/06/19/40 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007414/05/04/19/38 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007516/05/02/19/40 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007618/05/00/19/38 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007720/05/24/19/40 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007822/05/22/19/38 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007924/05/20/19/36 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008026/06/18/19/38 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008128/06/16/19/36 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008230/06/14/19/38 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008332/06/12/19/36 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008434/06/10/19/34 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008536/06/08/19/36 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008638/06/06/19/34 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008740/06/04/19/36 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008842/06/02/19/34 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008944/06/00/19/32 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009046/06/24/19/34 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009148/06/22/19/32 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009250/06/20/19/34 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009352/07/18/19/32 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009454/07/16/19/30 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009556/07/14/19/32 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009658/07/12/19/30 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009760/07/10/19/32 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009862/07/08/19/30 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009964/07/06/19/28 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 010066/07/04/19/30 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=1) 010168/07/02/19/28 meas period end fn_mod:70, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000074/00/22/23/22 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000176/00/20/23/20 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000278/00/18/23/22 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000380/00/16/23/20 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000482/00/14/23/18 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000584/00/12/23/20 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000686/00/10/23/18 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000788/00/08/23/20 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000890/00/06/23/18 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000992/00/04/23/16 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001094/00/02/23/18 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001196/00/00/23/16 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001298/00/24/23/18 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001400/01/22/23/16 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001502/01/20/23/14 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001604/01/18/23/16 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001706/01/16/23/14 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001808/01/14/23/16 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001910/01/12/23/14 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002012/01/10/23/12 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002114/01/08/23/14 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002216/01/06/23/12 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002318/01/04/23/14 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002420/01/02/23/12 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002522/01/00/23/10 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002624/01/24/23/12 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002726/02/22/23/10 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002828/02/20/23/12 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002930/02/18/23/10 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003032/02/16/23/08 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003134/02/14/23/10 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003236/02/12/23/08 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003338/02/10/23/10 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003440/02/08/23/08 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003542/02/06/23/06 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003644/02/04/23/08 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003746/02/02/23/06 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003848/02/00/23/08 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003950/02/24/23/06 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004052/03/22/23/04 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004154/03/20/23/06 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004256/03/18/23/04 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004358/03/16/23/06 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004460/03/14/23/04 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004562/03/12/23/02 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004664/03/10/23/04 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004766/03/08/23/02 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004868/03/06/23/04 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004970/03/04/23/02 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005072/03/02/23/00 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005174/03/00/23/02 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005276/03/24/23/00 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005378/04/22/23/02 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005480/04/20/23/00 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005582/04/18/23/50 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005684/04/16/23/00 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005786/04/14/23/50 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005888/04/12/23/00 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005990/04/10/23/50 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006092/04/08/23/48 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006194/04/06/23/50 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006296/04/04/23/48 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006398/04/02/23/46 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006500/04/00/23/48 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006602/04/24/23/46 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006704/05/22/23/48 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006806/05/20/23/46 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006908/05/18/23/44 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007010/05/16/23/46 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007112/05/14/23/44 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007214/05/12/23/46 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007316/05/10/23/44 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007418/05/08/23/42 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007520/05/06/23/44 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007622/05/04/23/42 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007724/05/02/23/44 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007826/05/00/23/42 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007928/05/24/23/40 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008030/06/22/23/42 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008132/06/20/23/40 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008234/06/18/23/42 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008336/06/16/23/40 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008438/06/14/23/38 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008540/06/12/23/40 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008642/06/10/23/38 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008744/06/08/23/40 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008846/06/06/23/38 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008948/06/04/23/36 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009050/06/02/23/38 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009152/06/00/23/36 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009254/06/24/23/38 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009356/07/22/23/36 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009458/07/20/23/34 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009560/07/18/23/36 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009662/07/16/23/34 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009764/07/14/23/36 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009866/07/12/23/34 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009968/07/10/23/32 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 010070/07/08/23/34 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=2) 010172/07/06/23/32 meas period end fn_mod:74, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000078/00/00/27/26 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000180/00/24/27/24 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000282/00/22/27/26 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000384/00/20/27/24 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000486/00/18/27/22 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000588/00/16/27/24 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000690/00/14/27/22 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000792/00/12/27/24 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000894/00/10/27/22 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000996/00/08/27/20 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001098/00/06/27/22 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001200/00/04/27/20 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001302/00/02/27/22 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001404/01/00/27/20 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001506/01/24/27/18 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001608/01/22/27/20 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001710/01/20/27/18 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001812/01/18/27/20 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001914/01/16/27/18 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002016/01/14/27/16 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002118/01/12/27/18 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002220/01/10/27/16 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002322/01/08/27/18 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002424/01/06/27/16 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002526/01/04/27/14 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002628/01/02/27/16 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002730/02/00/27/14 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002832/02/24/27/16 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002934/02/22/27/14 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003036/02/20/27/12 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003138/02/18/27/14 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003240/02/16/27/12 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003342/02/14/27/14 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003444/02/12/27/12 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003546/02/10/27/10 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003648/02/08/27/12 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003750/02/06/27/10 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003852/02/04/27/12 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003954/02/02/27/10 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004056/03/00/27/08 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004158/03/24/27/10 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004260/03/22/27/08 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004362/03/20/27/10 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004464/03/18/27/08 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004566/03/16/27/06 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004668/03/14/27/08 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004770/03/12/27/06 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004872/03/10/27/08 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004974/03/08/27/06 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005076/03/06/27/04 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005178/03/04/27/06 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005280/03/02/27/04 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005382/04/00/27/06 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005484/04/24/27/04 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005586/04/22/27/02 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005688/04/20/27/04 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005790/04/18/27/02 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005892/04/16/27/04 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005994/04/14/27/02 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006096/04/12/27/00 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006198/04/10/27/02 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006300/04/08/27/00 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006402/04/06/27/02 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006504/04/04/27/00 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006606/04/02/27/50 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006708/05/00/27/00 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006810/05/24/27/50 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006912/05/22/27/00 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007014/05/20/27/50 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007116/05/18/27/48 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007218/05/16/27/50 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007320/05/14/27/48 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007422/05/12/27/46 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007524/05/10/27/48 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007626/05/08/27/46 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007728/05/06/27/48 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007830/05/04/27/46 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007932/05/02/27/44 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008034/06/00/27/46 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008136/06/24/27/44 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008238/06/22/27/46 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008340/06/20/27/44 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008442/06/18/27/42 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008544/06/16/27/44 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008646/06/14/27/42 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008748/06/12/27/44 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008850/06/10/27/42 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008952/06/08/27/40 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009054/06/06/27/42 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009156/06/04/27/40 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009258/06/02/27/42 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009360/07/00/27/40 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009462/07/24/27/38 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009564/07/22/27/40 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009666/07/20/27/38 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009768/07/18/27/40 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009870/07/16/27/38 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009972/07/14/27/36 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 010074/07/12/27/38 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=3) 010176/07/10/27/36 meas period end fn_mod:78, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 000098/00/20/47/46 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 000200/00/18/47/44 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 000302/00/16/47/46 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 000404/00/14/47/44 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 000506/00/12/47/42 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 000608/00/10/47/44 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 000710/00/08/47/42 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 000812/00/06/47/44 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 000914/00/04/47/42 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 001016/00/02/47/40 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 001118/00/00/47/42 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 001220/00/24/47/40 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 001322/00/22/47/42 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 001424/01/20/47/40 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 001526/01/18/47/38 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 001628/01/16/47/40 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 001730/01/14/47/38 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 001832/01/12/47/40 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 001934/01/10/47/38 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 002036/01/08/47/36 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 002138/01/06/47/38 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 002240/01/04/47/36 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 002342/01/02/47/38 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 002444/01/00/47/36 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 002546/01/24/47/34 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 002648/01/22/47/36 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 002750/02/20/47/34 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 002852/02/18/47/36 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 002954/02/16/47/34 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 003056/02/14/47/32 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 003158/02/12/47/34 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 003260/02/10/47/32 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 003362/02/08/47/34 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 003464/02/06/47/32 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 003566/02/04/47/30 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 003668/02/02/47/32 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 003770/02/00/47/30 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 003872/02/24/47/32 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 003974/02/22/47/30 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 004076/03/20/47/28 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 004178/03/18/47/30 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 004280/03/16/47/28 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 004382/03/14/47/30 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 004484/03/12/47/28 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 004586/03/10/47/26 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 004688/03/08/47/28 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 004790/03/06/47/26 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 004892/03/04/47/28 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 004994/03/02/47/26 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 005096/03/00/47/24 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 005198/03/24/47/26 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 005300/03/22/47/24 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 005402/04/20/47/26 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 005504/04/18/47/24 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 005606/04/16/47/22 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 005708/04/14/47/24 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 005810/04/12/47/22 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 005912/04/10/47/24 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 006014/04/08/47/22 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 006116/04/06/47/20 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 006218/04/04/47/22 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 006320/04/02/47/20 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 006422/04/00/47/22 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 006524/04/24/47/20 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 006626/04/22/47/18 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 006728/05/20/47/20 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 006830/05/18/47/18 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 006932/05/16/47/20 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 007034/05/14/47/18 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 007136/05/12/47/16 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 007238/05/10/47/18 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 007340/05/08/47/16 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 007442/05/06/47/18 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 007544/05/04/47/16 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 007646/05/02/47/14 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 007748/05/00/47/16 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 007850/05/24/47/14 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 007952/05/22/47/16 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 008054/06/20/47/14 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 008156/06/18/47/12 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 008258/06/16/47/14 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 008360/06/14/47/12 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 008462/06/12/47/14 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 008564/06/10/47/12 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 008666/06/08/47/10 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 008768/06/06/47/12 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 008870/06/04/47/10 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 008972/06/02/47/12 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 009074/06/00/47/10 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 009176/06/24/47/08 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 009278/06/22/47/10 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 009380/07/20/47/08 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 009482/07/18/47/10 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 009584/07/16/47/08 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 009686/07/14/47/06 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 009788/07/12/47/08 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 009890/07/10/47/06 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 009992/07/08/47/08 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 010094/07/06/47/06 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=4) 010196/07/04/47/04 meas period end fn_mod:98, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 000000/00/00/00/00 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 000102/00/24/00/50 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 000204/00/22/00/48 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 000306/00/20/00/50 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 000408/00/18/00/48 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 000510/00/16/00/46 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 000612/00/14/00/48 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 000714/00/12/00/46 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 000816/00/10/00/48 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 000918/00/08/00/46 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 001020/00/06/00/44 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 001122/00/04/00/46 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 001224/00/02/00/44 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 001326/01/00/00/46 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 001428/01/24/00/44 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 001530/01/22/00/42 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 001632/01/20/00/44 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 001734/01/18/00/42 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 001836/01/16/00/44 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 001938/01/14/00/42 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 002040/01/12/00/40 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 002142/01/10/00/42 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 002244/01/08/00/40 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 002346/01/06/00/42 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 002448/01/04/00/40 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 002550/01/02/00/38 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 002652/02/00/00/40 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 002754/02/24/00/38 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 002856/02/22/00/40 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 002958/02/20/00/38 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 003060/02/18/00/36 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 003162/02/16/00/38 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 003264/02/14/00/36 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 003366/02/12/00/38 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 003468/02/10/00/36 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 003570/02/08/00/34 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 003672/02/06/00/36 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 003774/02/04/00/34 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 003876/02/02/00/36 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 003978/03/00/00/34 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 004080/03/24/00/32 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 004182/03/22/00/34 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 004284/03/20/00/32 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 004386/03/18/00/34 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 004488/03/16/00/32 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 004590/03/14/00/30 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 004692/03/12/00/32 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 004794/03/10/00/30 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 004896/03/08/00/32 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 004998/03/06/00/30 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 005100/03/04/00/28 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 005202/03/02/00/30 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 005304/04/00/00/28 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 005406/04/24/00/30 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 005508/04/22/00/28 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 005610/04/20/00/26 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 005712/04/18/00/28 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 005814/04/16/00/26 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 005916/04/14/00/28 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 006018/04/12/00/26 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 006120/04/10/00/24 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 006222/04/08/00/26 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 006324/04/06/00/24 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 006426/04/04/00/26 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 006528/04/02/00/24 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 006630/05/00/00/22 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 006732/05/24/00/24 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 006834/05/22/00/22 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 006936/05/20/00/24 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 007038/05/18/00/22 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 007140/05/16/00/20 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 007242/05/14/00/22 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 007344/05/12/00/20 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 007446/05/10/00/22 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 007548/05/08/00/20 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 007650/05/06/00/18 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 007752/05/04/00/20 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 007854/05/02/00/18 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 007956/06/00/00/20 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 008058/06/24/00/18 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 008160/06/22/00/16 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 008262/06/20/00/18 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 008364/06/18/00/16 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 008466/06/16/00/18 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 008568/06/14/00/16 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 008670/06/12/00/14 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 008772/06/10/00/16 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 008874/06/08/00/14 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 008976/06/06/00/16 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 009078/06/04/00/14 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 009180/06/02/00/12 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 009282/07/00/00/14 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 009384/07/24/00/12 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 009486/07/22/00/14 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 009588/07/20/00/12 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 009690/07/18/00/10 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 009792/07/16/00/12 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 009894/07/14/00/10 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 009996/07/12/00/12 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=5) 010098/07/10/00/10 meas period end fn_mod:0, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 000004/00/04/04/04 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 000106/00/02/04/02 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 000208/00/00/04/00 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 000310/00/24/04/02 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 000412/00/22/04/00 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 000514/00/20/04/02 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 000616/00/18/04/00 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 000718/00/16/04/50 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 000820/00/14/04/00 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 000922/00/12/04/50 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 001024/00/10/04/00 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 001126/00/08/04/50 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 001228/00/06/04/48 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 001330/01/04/04/50 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 001432/01/02/04/48 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 001534/01/00/04/46 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 001636/01/24/04/48 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 001738/01/22/04/46 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 001840/01/20/04/48 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 001942/01/18/04/46 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 002044/01/16/04/44 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 002146/01/14/04/46 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 002248/01/12/04/44 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 002350/01/10/04/46 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 002452/01/08/04/44 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 002554/01/06/04/42 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 002656/02/04/04/44 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 002758/02/02/04/42 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 002860/02/00/04/44 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 002962/02/24/04/42 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 003064/02/22/04/40 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 003166/02/20/04/42 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 003268/02/18/04/40 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 003370/02/16/04/42 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 003472/02/14/04/40 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 003574/02/12/04/38 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 003676/02/10/04/40 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 003778/02/08/04/38 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 003880/02/06/04/40 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 003982/03/04/04/38 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 004084/03/02/04/36 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 004186/03/00/04/38 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 004288/03/24/04/36 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 004390/03/22/04/38 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 004492/03/20/04/36 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 004594/03/18/04/34 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 004696/03/16/04/36 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 004798/03/14/04/34 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 004900/03/12/04/36 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 005002/03/10/04/34 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 005104/03/08/04/32 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 005206/03/06/04/34 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 005308/04/04/04/32 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 005410/04/02/04/34 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 005512/04/00/04/32 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 005614/04/24/04/30 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 005716/04/22/04/32 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 005818/04/20/04/30 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 005920/04/18/04/32 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 006022/04/16/04/30 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 006124/04/14/04/28 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 006226/04/12/04/30 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 006328/04/10/04/28 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 006430/04/08/04/30 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 006532/04/06/04/28 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 006634/05/04/04/26 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 006736/05/02/04/28 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 006838/05/00/04/26 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 006940/05/24/04/28 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 007042/05/22/04/26 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 007144/05/20/04/24 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 007246/05/18/04/26 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 007348/05/16/04/24 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 007450/05/14/04/26 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 007552/05/12/04/24 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 007654/05/10/04/22 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 007756/05/08/04/24 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 007858/05/06/04/22 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 007960/06/04/04/24 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 008062/06/02/04/22 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 008164/06/00/04/20 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 008266/06/24/04/22 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 008368/06/22/04/20 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 008470/06/20/04/22 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 008572/06/18/04/20 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 008674/06/16/04/18 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 008776/06/14/04/20 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 008878/06/12/04/18 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 008980/06/10/04/20 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 009082/06/08/04/18 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 009184/06/06/04/16 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 009286/07/04/04/18 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 009388/07/02/04/16 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 009490/07/00/04/18 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 009592/07/24/04/16 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 009694/07/22/04/14 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 009796/07/20/04/16 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 009898/07/18/04/14 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 010000/07/16/04/16 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=6) 010102/07/14/04/14 meas period end fn_mod:4, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 000008/00/08/08/08 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 000110/00/06/08/06 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 000212/00/04/08/04 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 000314/00/02/08/06 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 000416/00/00/08/04 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 000518/00/24/08/06 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 000620/00/22/08/04 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 000722/00/20/08/02 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 000824/00/18/08/04 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 000926/00/16/08/02 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 001028/00/14/08/04 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 001130/00/12/08/02 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 001232/00/10/08/00 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 001334/01/08/08/02 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 001436/01/06/08/00 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 001538/01/04/08/02 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 001640/01/02/08/00 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 001742/01/00/08/50 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 001844/01/24/08/00 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 001946/01/22/08/50 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 002048/01/20/08/00 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 002150/01/18/08/50 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 002252/01/16/08/48 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 002354/01/14/08/50 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 002456/01/12/08/48 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 002558/01/10/08/46 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 002660/02/08/08/48 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 002762/02/06/08/46 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 002864/02/04/08/48 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 002966/02/02/08/46 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 003068/02/00/08/44 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 003170/02/24/08/46 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 003272/02/22/08/44 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 003374/02/20/08/46 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 003476/02/18/08/44 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 003578/02/16/08/42 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 003680/02/14/08/44 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 003782/02/12/08/42 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 003884/02/10/08/44 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 003986/03/08/08/42 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 004088/03/06/08/40 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 004190/03/04/08/42 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 004292/03/02/08/40 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 004394/03/00/08/42 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 004496/03/24/08/40 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 004598/03/22/08/38 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 004700/03/20/08/40 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 004802/03/18/08/38 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 004904/03/16/08/40 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 005006/03/14/08/38 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 005108/03/12/08/36 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 005210/03/10/08/38 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 005312/04/08/08/36 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 005414/04/06/08/38 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 005516/04/04/08/36 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 005618/04/02/08/34 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 005720/04/00/08/36 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 005822/04/24/08/34 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 005924/04/22/08/36 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 006026/04/20/08/34 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 006128/04/18/08/32 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 006230/04/16/08/34 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 006332/04/14/08/32 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 006434/04/12/08/34 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 006536/04/10/08/32 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 006638/05/08/08/30 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 006740/05/06/08/32 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 006842/05/04/08/30 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 006944/05/02/08/32 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 007046/05/00/08/30 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 007148/05/24/08/28 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 007250/05/22/08/30 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 007352/05/20/08/28 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 007454/05/18/08/30 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 007556/05/16/08/28 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 007658/05/14/08/26 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 007760/05/12/08/28 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 007862/05/10/08/26 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 007964/06/08/08/28 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 008066/06/06/08/26 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 008168/06/04/08/24 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 008270/06/02/08/26 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 008372/06/00/08/24 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 008474/06/24/08/26 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 008576/06/22/08/24 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 008678/06/20/08/22 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 008780/06/18/08/24 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 008882/06/16/08/22 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 008984/06/14/08/24 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 009086/06/12/08/22 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 009188/06/10/08/20 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 009290/07/08/08/22 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 009392/07/06/08/20 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 009494/07/04/08/22 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 009596/07/02/08/20 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 009698/07/00/08/18 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 009800/07/24/08/20 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 009902/07/22/08/18 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 010004/07/20/08/20 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=7) 010106/07/18/08/18 meas period end fn_mod:8, status:1, pchan:SDCCH8
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000088/00/10/37/36 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000190/00/08/37/34 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000292/00/06/37/36 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000394/00/04/37/34 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000496/00/02/37/32 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000598/00/00/37/34 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000700/00/24/37/32 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000802/00/22/37/34 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 000904/00/20/37/32 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001006/00/18/37/30 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001108/00/16/37/32 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001210/00/14/37/30 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001312/00/12/37/32 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001414/01/10/37/30 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001516/01/08/37/28 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001618/01/06/37/30 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001720/01/04/37/28 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001822/01/02/37/30 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 001924/01/00/37/28 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002026/01/24/37/26 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002128/01/22/37/28 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002230/01/20/37/26 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002332/01/18/37/28 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002434/01/16/37/26 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002536/01/14/37/24 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002638/01/12/37/26 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002740/02/10/37/24 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002842/02/08/37/26 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 002944/02/06/37/24 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003046/02/04/37/22 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003148/02/02/37/24 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003250/02/00/37/22 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003352/02/24/37/24 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003454/02/22/37/22 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003556/02/20/37/20 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003658/02/18/37/22 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003760/02/16/37/20 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003862/02/14/37/22 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 003964/02/12/37/20 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004066/03/10/37/18 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004168/03/08/37/20 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004270/03/06/37/18 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004372/03/04/37/20 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004474/03/02/37/18 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004576/03/00/37/16 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004678/03/24/37/18 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004780/03/22/37/16 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004882/03/20/37/18 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 004984/03/18/37/16 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005086/03/16/37/14 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005188/03/14/37/16 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005290/03/12/37/14 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005392/04/10/37/16 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005494/04/08/37/14 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005596/04/06/37/12 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005698/04/04/37/14 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005800/04/02/37/12 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 005902/04/00/37/14 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006004/04/24/37/12 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006106/04/22/37/10 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006208/04/20/37/12 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006310/04/18/37/10 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006412/04/16/37/12 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006514/04/14/37/10 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006616/04/12/37/08 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006718/05/10/37/10 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006820/05/08/37/08 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 006922/05/06/37/10 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007024/05/04/37/08 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007126/05/02/37/06 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007228/05/00/37/08 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007330/05/24/37/06 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007432/05/22/37/08 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007534/05/20/37/06 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007636/05/18/37/04 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007738/05/16/37/06 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007840/05/14/37/04 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 007942/05/12/37/06 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008044/06/10/37/04 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008146/06/08/37/02 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008248/06/06/37/04 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008350/06/04/37/02 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008452/06/02/37/04 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008554/06/00/37/02 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008656/06/24/37/00 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008758/06/22/37/02 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008860/06/20/37/00 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 008962/06/18/37/02 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009064/06/16/37/00 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009166/06/14/37/50 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009268/06/12/37/00 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009370/07/10/37/50 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009472/07/08/37/00 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009574/07/06/37/50 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009676/07/04/37/48 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009778/07/02/37/50 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009880/07/00/37/48 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 009982/07/24/37/46 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 010084/07/22/37/48 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=0) 010186/07/20/37/46 meas period end fn_mod:88, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000092/00/14/41/40 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000194/00/12/41/38 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000296/00/10/41/40 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000398/00/08/41/38 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000500/00/06/41/36 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000602/00/04/41/38 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000704/00/02/41/36 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000806/00/00/41/38 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 000908/00/24/41/36 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001010/00/22/41/34 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001112/00/20/41/36 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001214/00/18/41/34 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001316/00/16/41/36 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001418/01/14/41/34 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001520/01/12/41/32 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001622/01/10/41/34 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001724/01/08/41/32 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001826/01/06/41/34 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 001928/01/04/41/32 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002030/01/02/41/30 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002132/01/00/41/32 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002234/01/24/41/30 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002336/01/22/41/32 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002438/01/20/41/30 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002540/01/18/41/28 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002642/01/16/41/30 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002744/02/14/41/28 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002846/02/12/41/30 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 002948/02/10/41/28 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003050/02/08/41/26 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003152/02/06/41/28 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003254/02/04/41/26 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003356/02/02/41/28 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003458/02/00/41/26 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003560/02/24/41/24 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003662/02/22/41/26 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003764/02/20/41/24 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003866/02/18/41/26 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 003968/02/16/41/24 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004070/03/14/41/22 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004172/03/12/41/24 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004274/03/10/41/22 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004376/03/08/41/24 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004478/03/06/41/22 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004580/03/04/41/20 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004682/03/02/41/22 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004784/03/00/41/20 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004886/03/24/41/22 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 004988/03/22/41/20 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005090/03/20/41/18 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005192/03/18/41/20 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005294/03/16/41/18 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005396/04/14/41/20 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005498/04/12/41/18 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005600/04/10/41/16 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005702/04/08/41/18 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005804/04/06/41/16 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 005906/04/04/41/18 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006008/04/02/41/16 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006110/04/00/41/14 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006212/04/24/41/16 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006314/04/22/41/14 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006416/04/20/41/16 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006518/04/18/41/14 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006620/04/16/41/12 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006722/05/14/41/14 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006824/05/12/41/12 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 006926/05/10/41/14 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007028/05/08/41/12 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007130/05/06/41/10 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007232/05/04/41/12 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007334/05/02/41/10 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007436/05/00/41/12 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007538/05/24/41/10 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007640/05/22/41/08 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007742/05/20/41/10 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007844/05/18/41/08 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 007946/05/16/41/10 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008048/06/14/41/08 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008150/06/12/41/06 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008252/06/10/41/08 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008354/06/08/41/06 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008456/06/06/41/08 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008558/06/04/41/06 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008660/06/02/41/04 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008762/06/00/41/06 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008864/06/24/41/04 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 008966/06/22/41/06 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009068/06/20/41/04 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009170/06/18/41/02 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009272/06/16/41/04 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009374/07/14/41/02 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009476/07/12/41/04 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009578/07/10/41/02 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009680/07/08/41/00 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009782/07/06/41/02 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009884/07/04/41/00 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 009986/07/02/41/02 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 010088/07/00/41/00 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=1) 010190/07/24/41/50 meas period end fn_mod:92, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000006/00/06/06/06 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000108/00/04/06/04 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000210/00/02/06/02 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000312/00/00/06/04 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000414/00/24/06/02 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000516/00/22/06/04 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000618/00/20/06/02 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000720/00/18/06/00 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000822/00/16/06/02 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 000924/00/14/06/00 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001026/00/12/06/02 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001128/00/10/06/00 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001230/00/08/06/50 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001332/01/06/06/00 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001434/01/04/06/50 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001536/01/02/06/00 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001638/01/00/06/50 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001740/01/24/06/48 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001842/01/22/06/50 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 001944/01/20/06/48 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002046/01/18/06/46 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002148/01/16/06/48 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002250/01/14/06/46 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002352/01/12/06/48 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002454/01/10/06/46 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002556/01/08/06/44 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002658/02/06/06/46 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002760/02/04/06/44 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002862/02/02/06/46 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 002964/02/00/06/44 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003066/02/24/06/42 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003168/02/22/06/44 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003270/02/20/06/42 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003372/02/18/06/44 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003474/02/16/06/42 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003576/02/14/06/40 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003678/02/12/06/42 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003780/02/10/06/40 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003882/02/08/06/42 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 003984/03/06/06/40 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004086/03/04/06/38 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004188/03/02/06/40 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004290/03/00/06/38 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004392/03/24/06/40 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004494/03/22/06/38 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004596/03/20/06/36 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004698/03/18/06/38 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004800/03/16/06/36 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 004902/03/14/06/38 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005004/03/12/06/36 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005106/03/10/06/34 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005208/03/08/06/36 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005310/04/06/06/34 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005412/04/04/06/36 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005514/04/02/06/34 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005616/04/00/06/32 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005718/04/24/06/34 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005820/04/22/06/32 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 005922/04/20/06/34 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006024/04/18/06/32 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006126/04/16/06/30 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006228/04/14/06/32 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006330/04/12/06/30 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006432/04/10/06/32 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006534/04/08/06/30 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006636/05/06/06/28 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006738/05/04/06/30 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006840/05/02/06/28 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 006942/05/00/06/30 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007044/05/24/06/28 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007146/05/22/06/26 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007248/05/20/06/28 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007350/05/18/06/26 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007452/05/16/06/28 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007554/05/14/06/26 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007656/05/12/06/24 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007758/05/10/06/26 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007860/05/08/06/24 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 007962/06/06/06/26 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008064/06/04/06/24 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008166/06/02/06/22 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008268/06/00/06/24 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008370/06/24/06/22 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008472/06/22/06/24 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008574/06/20/06/22 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008676/06/18/06/20 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008778/06/16/06/22 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008880/06/14/06/20 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 008982/06/12/06/22 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009084/06/10/06/20 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009186/06/08/06/18 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009288/07/06/06/20 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009390/07/04/06/18 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009492/07/02/06/20 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009594/07/00/06/18 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009696/07/24/06/16 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009798/07/22/06/18 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 009900/07/20/06/16 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 010002/07/18/06/18 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=2) 010104/07/16/06/16 meas period end fn_mod:6, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000010/00/10/10/10 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000112/00/08/10/08 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000214/00/06/10/06 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000316/00/04/10/08 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000418/00/02/10/06 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000520/00/00/10/08 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000622/00/24/10/06 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000724/00/22/10/04 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000826/00/20/10/06 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 000928/00/18/10/04 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001030/00/16/10/06 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001132/00/14/10/04 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001234/00/12/10/02 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001336/01/10/10/04 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001438/01/08/10/02 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001540/01/06/10/04 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001642/01/04/10/02 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001744/01/02/10/00 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001846/01/00/10/02 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 001948/01/24/10/00 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002050/01/22/10/02 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002152/01/20/10/00 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002254/01/18/10/50 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002356/01/16/10/00 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002458/01/14/10/50 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002560/01/12/10/00 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002662/02/10/10/50 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002764/02/08/10/48 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002866/02/06/10/50 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 002968/02/04/10/48 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003070/02/02/10/46 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003172/02/00/10/48 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003274/02/24/10/46 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003376/02/22/10/48 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003478/02/20/10/46 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003580/02/18/10/44 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003682/02/16/10/46 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003784/02/14/10/44 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003886/02/12/10/46 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 003988/03/10/10/44 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004090/03/08/10/42 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004192/03/06/10/44 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004294/03/04/10/42 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004396/03/02/10/44 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004498/03/00/10/42 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004600/03/24/10/40 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004702/03/22/10/42 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004804/03/20/10/40 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 004906/03/18/10/42 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005008/03/16/10/40 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005110/03/14/10/38 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005212/03/12/10/40 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005314/04/10/10/38 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005416/04/08/10/40 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005518/04/06/10/38 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005620/04/04/10/36 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005722/04/02/10/38 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005824/04/00/10/36 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 005926/04/24/10/38 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006028/04/22/10/36 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006130/04/20/10/34 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006232/04/18/10/36 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006334/04/16/10/34 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006436/04/14/10/36 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006538/04/12/10/34 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006640/05/10/10/32 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006742/05/08/10/34 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006844/05/06/10/32 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 006946/05/04/10/34 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007048/05/02/10/32 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007150/05/00/10/30 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007252/05/24/10/32 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007354/05/22/10/30 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007456/05/20/10/32 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007558/05/18/10/30 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007660/05/16/10/28 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007762/05/14/10/30 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007864/05/12/10/28 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 007966/06/10/10/30 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008068/06/08/10/28 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008170/06/06/10/26 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008272/06/04/10/28 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008374/06/02/10/26 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008476/06/00/10/28 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008578/06/24/10/26 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008680/06/22/10/24 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008782/06/20/10/26 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008884/06/18/10/24 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 008986/06/16/10/26 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009088/06/14/10/24 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009190/06/12/10/22 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009292/07/10/10/24 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009394/07/08/10/22 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009496/07/06/10/24 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009598/07/04/10/22 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009700/07/02/10/20 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009802/07/00/10/22 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 009904/07/24/10/20 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 010006/07/22/10/22 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=0,ss=3) 010108/07/20/10/20 meas period end fn_mod:10, status:1, pchan:CCCH+SDCCH4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000008/00/08/08/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000013/00/13/13/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000017/00/17/17/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=17
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000021/00/21/21/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000026/00/00/26/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000030/00/04/30/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=8, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000034/00/08/34/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=9, fn_mod=34
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=10, fn_mod=38
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 10 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 15 measurements with dummy values, from which 1 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 1 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 256), BER-FULL(60.00%), RSSI-FULL(- 90dBm), C/I-FULL( 0 cB), BER-SUB(50.00%), RSSI-SUB(- 90dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000039/00/13/39/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000043/00/17/43/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000047/00/21/47/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000052/00/00/01/00 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=52
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000056/00/04/05/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000060/00/08/09/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000065/00/13/14/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000069/00/17/18/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=8, fn_mod=69
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000073/00/21/22/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=9, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000078/00/00/27/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=10, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000082/00/04/31/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=11, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000086/00/08/35/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=12, fn_mod=86
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000091/00/13/40/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=13, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000095/00/17/44/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=14, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000099/00/21/48/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=15, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000104/00/00/02/00 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=16, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000108/00/04/06/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=17, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000112/00/08/10/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=18, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000117/00/13/15/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=19, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000121/00/17/19/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=20, fn_mod=17
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000125/00/21/23/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=21, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000130/00/00/28/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=22, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000134/00/04/32/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=23, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000138/00/08/36/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=24, fn_mod=34
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000142/00/12/40/38 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=25, fn_mod=38
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000142/00/12/40/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 25 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 0 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 3 SUB measurements, expected 2
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (3 vs exp 2)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 256), BER-FULL( 0.00%), RSSI-FULL(- 90dBm), C/I-FULL( 0 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(0), RXQUAL_SUB(0), num_meas_sub(3), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000143/00/13/41/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000147/00/17/45/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000151/00/21/49/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000156/00/00/03/00 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=52
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000160/00/04/07/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000164/00/08/11/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000169/00/13/16/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000173/00/17/20/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=8, fn_mod=69
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000177/00/21/24/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=9, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000182/00/00/29/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=10, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000186/00/04/33/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=11, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000190/00/08/37/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=12, fn_mod=86
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000195/00/13/42/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=13, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000199/00/17/46/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=14, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000203/00/21/50/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=15, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000208/00/00/04/00 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=16, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000212/00/04/08/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=17, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000216/00/08/12/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=18, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000221/00/13/17/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=19, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000225/00/17/21/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=20, fn_mod=17
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000229/00/21/25/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=21, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000234/00/00/30/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=22, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000238/00/04/34/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=23, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000242/00/08/38/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=24, fn_mod=34
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000246/00/12/42/38 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=25, fn_mod=38
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000246/00/12/42/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 25 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 0 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 3 SUB measurements, expected 2
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (3 vs exp 2)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 256), BER-FULL( 0.00%), RSSI-FULL(- 90dBm), C/I-FULL( 0 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(0), RXQUAL_SUB(0), num_meas_sub(3), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000247/00/13/43/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000251/00/17/47/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000255/00/21/00/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000260/00/00/05/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=52
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000264/00/04/09/08 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000268/00/08/13/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000273/00/13/18/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000277/00/17/22/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=8, fn_mod=69
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000281/00/21/26/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=9, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000286/00/00/31/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=10, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000290/00/04/35/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=11, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000294/00/08/39/38 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=12, fn_mod=86
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000299/00/13/44/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=13, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000303/00/17/48/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=14, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000307/00/21/01/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=15, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000312/00/00/06/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=16, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000316/00/04/10/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=17, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000320/00/08/14/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=18, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000325/00/13/19/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=19, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000329/00/17/23/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=20, fn_mod=17
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000333/00/21/27/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=21, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000338/00/00/32/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=22, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000342/00/04/36/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=23, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000346/00/08/40/38 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=24, fn_mod=34
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000350/00/12/44/42 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=25, fn_mod=38
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000350/00/12/44/42 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 25 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 0 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 3 SUB measurements, expected 2
+ERROR (bts=0,trx=1,ts=2,ss=0) Incorrect number of SUB measurements detected! (3 vs exp 2)
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 256), BER-FULL( 0.00%), RSSI-FULL(- 90dBm), C/I-FULL( 0 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(0), RXQUAL_SUB(0), num_meas_sub(3), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000351/00/13/45/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000355/00/17/49/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000359/00/21/02/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000364/00/00/07/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=52
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000368/00/04/11/08 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000372/00/08/15/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000377/00/13/20/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000381/00/17/24/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=8, fn_mod=69
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000385/00/21/28/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=9, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000390/00/00/33/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=10, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000394/00/04/37/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=11, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000398/00/08/41/38 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=12, fn_mod=86
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000403/00/13/46/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=13, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000407/00/17/50/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=14, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000411/00/21/03/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=15, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000416/00/00/08/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=16, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000420/00/04/12/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=17, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000424/00/08/16/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=18, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000429/00/13/21/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=19, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000000/00/00/00/00 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000008/00/08/08/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000013/00/13/13/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000017/00/17/17/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=17
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000021/00/21/21/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000026/00/00/26/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000030/00/04/30/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=8, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000034/00/08/34/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=9, fn_mod=34
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000039/00/13/39/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=10, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000043/00/17/43/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=11, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000047/00/21/47/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=12, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000052/00/00/01/00 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=13, fn_mod=52
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000056/00/04/05/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=14, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000060/00/08/09/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=15, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000065/00/13/14/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=16, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000069/00/17/18/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=17, fn_mod=69
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000073/00/21/22/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=18, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000078/00/00/27/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=19, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000082/00/04/31/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=20, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000086/00/08/35/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=21, fn_mod=86
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000091/00/13/40/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=22, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000095/00/17/44/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=23, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000099/00/21/48/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=24, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000104/00/00/02/00 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=25, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000108/00/04/06/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=26, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000112/00/08/10/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=27, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000117/00/13/15/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=28, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000121/00/17/19/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=29, fn_mod=17
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000125/00/21/23/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=30, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000130/00/00/28/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=31, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000134/00/04/32/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=32, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000138/00/08/36/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=33, fn_mod=34
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000143/00/13/41/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=34, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000147/00/17/45/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=35, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000151/00/21/49/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=36, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000156/00/00/03/00 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=37, fn_mod=52
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000160/00/04/07/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=38, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000164/00/08/11/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=39, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000169/00/13/16/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=40, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000173/00/17/20/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=41, fn_mod=69
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000177/00/21/24/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=42, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000182/00/00/29/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=43, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000186/00/04/33/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=44, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000190/00/08/37/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=45, fn_mod=86
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000195/00/13/42/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=46, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000199/00/17/46/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=47, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000203/00/21/50/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=48, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000208/00/00/04/00 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=49, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000212/00/04/08/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=50, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000216/00/08/12/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=51, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000221/00/13/17/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=52, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000225/00/17/21/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=53, fn_mod=17
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000229/00/21/25/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=54, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000234/00/00/30/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=55, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000238/00/04/34/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=56, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000242/00/08/38/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=57, fn_mod=34
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000247/00/13/43/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=58, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000251/00/17/47/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=59, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000255/00/21/00/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=60, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000260/00/00/05/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=61, fn_mod=52
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000264/00/04/09/08 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=62, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000268/00/08/13/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=63, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000273/00/13/18/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=64, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000277/00/17/22/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=65, fn_mod=69
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000281/00/21/26/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=66, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000286/00/00/31/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=67, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000290/00/04/35/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=68, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000294/00/08/39/38 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=69, fn_mod=86
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000299/00/13/44/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=70, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000303/00/17/48/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=71, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000307/00/21/01/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=72, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000312/00/00/06/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=73, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000316/00/04/10/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=74, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000320/00/08/14/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=75, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000325/00/13/19/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=76, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000329/00/17/23/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=77, fn_mod=17
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000333/00/21/27/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=78, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000338/00/00/32/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=79, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000342/00/04/36/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=80, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000346/00/08/40/38 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=81, fn_mod=34
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000351/00/13/45/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=82, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000355/00/17/49/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=83, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000359/00/21/02/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=84, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000364/00/00/07/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=85, fn_mod=52
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000368/00/04/11/08 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=86, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000372/00/08/15/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=87, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000377/00/13/20/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=88, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000381/00/17/24/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=89, fn_mod=69
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000385/00/21/28/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=90, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000390/00/00/33/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=91, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000394/00/04/37/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=92, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000398/00/08/41/38 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=93, fn_mod=86
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000403/00/13/46/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=94, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000407/00/17/50/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=95, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000411/00/21/03/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=96, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000416/00/00/08/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=97, fn_mod=0
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000420/00/04/12/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=98, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000424/00/08/16/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=99, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000429/00/13/21/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=100, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000008/00/08/08/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000013/00/13/13/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000021/00/21/21/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000026/00/00/26/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000030/00/04/30/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=38
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000038/00/12/38/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 7 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 18 measurements with dummy values, from which 1 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 1 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 256), BER-FULL(72.00%), RSSI-FULL(- 90dBm), C/I-FULL( 0 cB), BER-SUB(50.00%), RSSI-SUB(- 90dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(7), RXQUAL_SUB(7), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000039/00/13/39/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000043/00/17/43/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000047/00/21/47/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000056/00/04/05/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000060/00/08/09/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000065/00/13/14/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000073/00/21/22/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000078/00/00/27/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=8, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000082/00/04/31/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=9, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000091/00/13/40/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=10, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000095/00/17/44/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=11, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000099/00/21/48/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=12, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000108/00/04/06/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=13, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000112/00/08/10/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=14, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000117/00/13/15/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=15, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000125/00/21/23/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=16, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000130/00/00/28/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=17, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000134/00/04/32/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=18, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000142/00/12/40/38 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=19, fn_mod=38
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000142/00/12/40/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 19 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 6 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 2 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 256), BER-FULL(24.00%), RSSI-FULL(- 90dBm), C/I-FULL( 0 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(7), RXQUAL_SUB(0), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000143/00/13/41/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000147/00/17/45/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000151/00/21/49/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000160/00/04/07/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000164/00/08/11/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000169/00/13/16/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000177/00/21/24/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000182/00/00/29/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=8, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000186/00/04/33/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=9, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000195/00/13/42/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=10, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000199/00/17/46/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=11, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000203/00/21/50/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=12, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000212/00/04/08/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=13, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000216/00/08/12/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=14, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000221/00/13/17/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=15, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000229/00/21/25/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=16, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000234/00/00/30/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=17, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000238/00/04/34/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=18, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000246/00/12/42/38 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=19, fn_mod=38
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000246/00/12/42/38 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 19 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 6 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 2 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 256), BER-FULL(24.00%), RSSI-FULL(- 90dBm), C/I-FULL( 0 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(7), RXQUAL_SUB(0), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000247/00/13/43/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000251/00/17/47/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000255/00/21/00/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000264/00/04/09/08 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000268/00/08/13/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000273/00/13/18/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000281/00/21/26/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000286/00/00/31/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=8, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000290/00/04/35/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=9, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000299/00/13/44/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=10, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000303/00/17/48/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=11, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000307/00/21/01/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=12, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000316/00/04/10/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=13, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000320/00/08/14/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=14, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000325/00/13/19/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=15, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000333/00/21/27/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=16, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000338/00/00/32/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=17, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000342/00/04/36/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=18, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000350/00/12/44/42 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=19, fn_mod=38
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000350/00/12/44/42 meas period end fn_mod:12, status:1, pchan:TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Calculating measurement results for physical channel: TCH/F
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received 19 UL measurements, expected 25
+DEBUG (bts=0,trx=1,ts=2,ss=0) Replaced 6 measurements with dummy values, from which 0 were SUB measurements
+DEBUG (bts=0,trx=1,ts=2,ss=0) Received UL measurements contain 2 SUB measurements, expected 2
+INFO (bts=0,trx=1,ts=2,ss=0) Computed TA256( 256), BER-FULL(24.00%), RSSI-FULL(- 90dBm), C/I-FULL( 0 cB), BER-SUB( 0.00%), RSSI-SUB(- 90dBm), C/I-SUB( 0 cB)
+INFO (bts=0,trx=1,ts=2,ss=0) UL MEAS RXLEV_FULL(20), RXLEV_SUB(20), RXQUAL_FULL(7), RXQUAL_SUB(0), num_meas_sub(2), num_ul_meas(25)
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000351/00/13/45/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000355/00/17/49/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000359/00/21/02/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000368/00/04/11/08 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000372/00/08/15/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000377/00/13/20/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000385/00/21/28/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000390/00/00/33/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=8, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000394/00/04/37/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=9, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000403/00/13/46/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=10, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000407/00/17/50/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=11, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000411/00/21/03/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=12, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000420/00/04/12/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=13, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000424/00/08/16/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=14, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000429/00/13/21/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=15, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000004/00/04/04/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=1, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000008/00/08/08/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=2, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000013/00/13/13/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=3, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000021/00/21/21/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=4, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000026/00/00/26/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=5, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000030/00/04/30/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=6, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000039/00/13/39/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=7, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000043/00/17/43/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=8, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000047/00/21/47/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=9, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000056/00/04/05/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=10, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000060/00/08/09/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=11, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000065/00/13/14/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=12, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000073/00/21/22/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=13, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000078/00/00/27/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=14, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000082/00/04/31/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=15, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000091/00/13/40/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=16, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000095/00/17/44/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=17, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000099/00/21/48/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=18, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000108/00/04/06/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=19, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000112/00/08/10/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=20, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000117/00/13/15/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=21, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000125/00/21/23/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=22, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000130/00/00/28/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=23, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000134/00/04/32/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=24, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000143/00/13/41/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=25, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000147/00/17/45/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=26, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000151/00/21/49/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=27, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000160/00/04/07/04 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=28, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000164/00/08/11/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=29, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000169/00/13/16/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=30, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000177/00/21/24/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=31, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000182/00/00/29/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=32, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000186/00/04/33/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=33, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000195/00/13/42/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=34, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000199/00/17/46/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=35, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000203/00/21/50/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=36, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000212/00/04/08/04 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=37, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000216/00/08/12/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=38, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000221/00/13/17/13 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=39, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000229/00/21/25/21 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=40, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000234/00/00/30/26 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=41, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000238/00/04/34/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=42, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000247/00/13/43/39 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=43, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000251/00/17/47/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=44, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000255/00/21/00/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=45, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000264/00/04/09/08 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=46, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000268/00/08/13/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=47, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000273/00/13/18/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=48, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000281/00/21/26/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=49, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000286/00/00/31/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=50, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000290/00/04/35/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=51, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000299/00/13/44/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=52, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000303/00/17/48/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=53, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000307/00/21/01/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=54, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000316/00/04/10/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=55, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000320/00/08/14/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=56, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000325/00/13/19/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=57, fn_mod=13
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000333/00/21/27/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=58, fn_mod=21
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000338/00/00/32/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=59, fn_mod=26
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000342/00/04/36/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=60, fn_mod=30
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000351/00/13/45/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=61, fn_mod=39
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000355/00/17/49/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=62, fn_mod=43
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000359/00/21/02/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=63, fn_mod=47
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000368/00/04/11/08 adding a SUB measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=64, fn_mod=56
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000372/00/08/15/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=65, fn_mod=60
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000377/00/13/20/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=66, fn_mod=65
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000385/00/21/28/25 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=67, fn_mod=73
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000390/00/00/33/30 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=68, fn_mod=78
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000394/00/04/37/34 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=69, fn_mod=82
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000403/00/13/46/43 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=70, fn_mod=91
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000407/00/17/50/47 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=71, fn_mod=95
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000411/00/21/03/51 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=72, fn_mod=99
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000420/00/04/12/08 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=73, fn_mod=4
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000424/00/08/16/12 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=74, fn_mod=8
+DEBUG (bts=0,trx=1,ts=2,ss=0) 000429/00/13/21/17 adding a FULL measurement (ber10k=0, ta_offs=256, ci_cB=0, rssi=-90), num_ul_meas=75, fn_mod=13
diff --git a/tests/meas/meas_test.ok b/tests/meas/meas_test.ok
index e62bb42f..559a8e6c 100644
--- a/tests/meas/meas_test.ok
+++ b/tests/meas/meas_test.ok
@@ -585,8 +585,8 @@ meas.ext.toa256_min | 0 | 0
meas.ext.toa256_max | 0 | 0
meas.ms_toa256 | 0 | 0
meas.ext.toa256_std_dev | 0 | 0
-meas.ul_res.full.rx_lev | 63 | 63
-meas.ul_res.full.rx_qual | 3 | 3
+meas.ul_res.full.rx_lev | 1 | 1
+meas.ul_res.full.rx_qual | 7 | 7
===========================================================
diff --git a/tests/meas/meas_testcases.h b/tests/meas/meas_testcases.h
index fefa34f7..1263ac35 100644
--- a/tests/meas/meas_testcases.h
+++ b/tests/meas/meas_testcases.h
@@ -1,5 +1,5 @@
#define ULM(ber, ta, sub, neg_rssi) \
- { .ber10k = (ber), .ta_offs_256bits = (ta), .c_i = 1.0, .is_sub = sub, .inv_rssi = (neg_rssi) }
+ { .ber10k = (ber), .ta_offs_256bits = (ta), .ci_cb = 10, .is_sub = sub, .inv_rssi = (neg_rssi) }
struct meas_testcase {
const char *name;
@@ -131,8 +131,8 @@ static const struct meas_testcase mtc4 = {
.pchan = GSM_PCHAN_TCH_F,
.res = {
.success = 1,
- .rx_lev_full = 63,
- .rx_qual_full = 3,
+ .rx_lev_full = 1,
+ .rx_qual_full = 7,
.toa256_mean = 0,
.toa256_max = 0,
.toa256_min = 0,
diff --git a/tests/misc/Makefile.am b/tests/misc/Makefile.am
index f232c493..8b8beda7 100644
--- a/tests/misc/Makefile.am
+++ b/tests/misc/Makefile.am
@@ -1,9 +1,24 @@
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
-AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOCODEC_CFLAGS) \
- $(LIBOSMOABIS_CFLAGS) $(LIBOSMOTRAU_CFLAGS)
-LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOCODEC_LIBS) \
- $(LIBOSMOABIS_LIBS) $(LIBOSMOTRAU_LIBS)
-noinst_PROGRAMS = misc_test
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOABIS_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
+
+check_PROGRAMS = misc_test
EXTRA_DIST = misc_test.ok
misc_test_SOURCES = misc_test.c $(srcdir)/../stubs.c
diff --git a/tests/misc/misc_test.c b/tests/misc/misc_test.c
index c4d3a595..bbf75579 100644
--- a/tests/misc/misc_test.c
+++ b/tests/misc/misc_test.c
@@ -13,7 +13,7 @@
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
@@ -21,6 +21,7 @@
*/
#include <osmo-bts/bts.h>
+#include <osmo-bts/bts_sm.h>
#include <osmo-bts/msg_utils.h>
#include <osmo-bts/logging.h>
@@ -162,25 +163,50 @@ static void test_sacch_get(void)
static void test_bts_supports_cm(void)
{
+ struct rsl_ie_chan_mode cm;
struct gsm_bts *bts;
- bts = gsm_bts_alloc(ctx, 0);
-
- gsm_bts_set_feature(bts, BTS_FEAT_SPEECH_F_V1);
- gsm_bts_set_feature(bts, BTS_FEAT_SPEECH_H_V1);
- gsm_bts_set_feature(bts, BTS_FEAT_SPEECH_F_AMR);
- gsm_bts_set_feature(bts, BTS_FEAT_SPEECH_H_AMR);
-
- OSMO_ASSERT(bts_supports_cm
- (bts, GSM_PCHAN_TCH_F, GSM48_CMODE_SPEECH_V1) == 1);
- OSMO_ASSERT(bts_supports_cm
- (bts, GSM_PCHAN_TCH_H, GSM48_CMODE_SPEECH_V1) == 1);
- OSMO_ASSERT(bts_supports_cm
- (bts, GSM_PCHAN_TCH_F, GSM48_CMODE_SPEECH_EFR) == 0);
- OSMO_ASSERT(bts_supports_cm
- (bts, GSM_PCHAN_TCH_F, GSM48_CMODE_SPEECH_AMR) == 1);
- OSMO_ASSERT(bts_supports_cm
- (bts, GSM_PCHAN_TCH_H, GSM48_CMODE_SPEECH_AMR) == 1);
+ g_bts_sm = gsm_bts_sm_alloc(ctx);
+ bts = gsm_bts_alloc(g_bts_sm, 0);
+
+ /* Signalling shall be supported regardless of the features */
+ cm = (struct rsl_ie_chan_mode) { .chan_rt = RSL_CMOD_CRT_TCH_Bm,
+ .spd_ind = RSL_CMOD_SPD_SIGN };
+ OSMO_ASSERT(bts_supports_cm(bts, &cm) == true); /* TCH/F */
+
+ cm = (struct rsl_ie_chan_mode) { .chan_rt = RSL_CMOD_CRT_TCH_Lm,
+ .spd_ind = RSL_CMOD_SPD_SIGN };
+ OSMO_ASSERT(bts_supports_cm(bts, &cm) == true); /* TCH/H */
+
+ osmo_bts_set_feature(bts->features, BTS_FEAT_SPEECH_F_V1);
+ osmo_bts_set_feature(bts->features, BTS_FEAT_SPEECH_H_V1);
+ osmo_bts_set_feature(bts->features, BTS_FEAT_SPEECH_F_AMR);
+ osmo_bts_set_feature(bts->features, BTS_FEAT_SPEECH_H_AMR);
+
+ cm = (struct rsl_ie_chan_mode) { .chan_rt = RSL_CMOD_CRT_TCH_Bm,
+ .spd_ind = RSL_CMOD_SPD_SPEECH,
+ .chan_rate = RSL_CMOD_SP_GSM1 };
+ OSMO_ASSERT(bts_supports_cm(bts, &cm) == true); /* TCH/FS */
+
+ cm = (struct rsl_ie_chan_mode) { .chan_rt = RSL_CMOD_CRT_TCH_Lm,
+ .spd_ind = RSL_CMOD_SPD_SPEECH,
+ .chan_rate = RSL_CMOD_SP_GSM1 };
+ OSMO_ASSERT(bts_supports_cm(bts, &cm) == true); /* TCH/HS */
+
+ cm = (struct rsl_ie_chan_mode) { .chan_rt = RSL_CMOD_CRT_TCH_Bm,
+ .spd_ind = RSL_CMOD_SPD_SPEECH,
+ .chan_rate = RSL_CMOD_SP_GSM2 };
+ OSMO_ASSERT(bts_supports_cm(bts, &cm) == false); /* TCH/EFS */
+
+ cm = (struct rsl_ie_chan_mode) { .chan_rt = RSL_CMOD_CRT_TCH_Bm,
+ .spd_ind = RSL_CMOD_SPD_SPEECH,
+ .chan_rate = RSL_CMOD_SP_GSM3 };
+ OSMO_ASSERT(bts_supports_cm(bts, &cm) == true); /* TCH/AFS */
+
+ cm = (struct rsl_ie_chan_mode) { .chan_rt = RSL_CMOD_CRT_TCH_Lm,
+ .spd_ind = RSL_CMOD_SPD_SPEECH,
+ .chan_rate = RSL_CMOD_SP_GSM3 };
+ OSMO_ASSERT(bts_supports_cm(bts, &cm) == true); /* TCH/AHS */
talloc_free(bts);
}
diff --git a/tests/osmo-bts.vty b/tests/osmo-bts.vty
new file mode 100644
index 00000000..a51ad63f
--- /dev/null
+++ b/tests/osmo-bts.vty
@@ -0,0 +1,323 @@
+OsmoBTS> list
+...
+ show bts [<0-255>]
+ show trx [<0-255>] [<0-255>]
+ show timeslot [<0-255>] [<0-255>] [<0-7>]
+ show lchan [<0-255>] [<0-255>] [<0-7>] [<0-7>]
+ show lchan summary [<0-255>] [<0-255>] [<0-7>] [<0-7>]
+ show bts <0-255> gprs
+...
+ show timer [(bts|abis)] [TNNNN]
+ show e1_driver
+ show e1_line [<0-255>] [stats]
+ show e1_timeslot [<0-255>] [<0-31>]
+...
+OsmoBTS> ?
+...
+ show Show running system information
+...
+
+OsmoBTS> show ?
+...
+ bts Display information about a BTS
+ trx Display information about a TRX
+ timeslot Display information about a TS
+ lchan Display information about a logical channel
+ timer Show timers
+ e1_driver Display information about available E1 drivers
+ e1_line Display information about a E1 line
+ e1_timeslot Display information about a E1 timeslot
+...
+OsmoBTS> show bts ?
+ [<0-255>] BTS Number
+ <0-255> BTS Number
+OsmoBTS> show bts 0 ?
+ gprs GPRS/EGPRS configuration
+ <cr>
+OsmoBTS> show trx ?
+ [<0-255>] BTS Number
+OsmoBTS> show trx 0 ?
+ [<0-255>] TRX Number
+OsmoBTS> show timeslot ?
+ [<0-255>] BTS Number
+OsmoBTS> show timeslot 0 ?
+ [<0-255>] TRX Number
+OsmoBTS> show timeslot 0 0 ?
+ [<0-7>] Timeslot Number
+OsmoBTS> show lchan ?
+ [<0-255>] BTS Number
+ summary Short summary
+OsmoBTS> show lchan 0 ?
+ [<0-255>] TRX Number
+OsmoBTS> show lchan 0 0 ?
+ [<0-7>] Timeslot Number
+OsmoBTS> show lchan 0 0 0 ?
+ [<0-7>] Logical Channel Number
+OsmoBTS> show lchan summary ?
+ [<0-255>] BTS Number
+OsmoBTS> show lchan summary 0 ?
+ [<0-255>] TRX Number
+OsmoBTS> show lchan summary 0 0 ?
+ [<0-7>] Timeslot Number
+OsmoBTS> show lchan summary 0 0 0 ?
+ [<0-7>] Logical Channel Number
+
+OsmoBTS> show timer ?
+ [bts] BTS process timers
+ [abis] Abis (RSL) related timers
+OsmoBTS> show timer
+bts: X1 = 300 s Time after which osmo-bts exits if regular ramp down during shut down process does not finish (s) (default: 300 s)
+bts: X2 = 3 s Time after which osmo-bts exits if requesting transceivers to stop during shut down process does not finish (s) (default: 3 s)
+abis: X15 = 0 ms Time to wait between Channel Activation and dispatching a cached early Immediate Assignment (default: 0 ms)
+OsmoBTS> show timer bts ?
+ [TNNNN] T- or X-timer-number -- 3GPP compliant timer number of the format '1234' or 'T1234' or 't1234'; Osmocom-specific timer number of the format: 'X1234' or 'x1234'.
+OsmoBTS> show timer bts
+bts: X1 = 300 s Time after which osmo-bts exits if regular ramp down during shut down process does not finish (s) (default: 300 s)
+bts: X2 = 3 s Time after which osmo-bts exits if requesting transceivers to stop during shut down process does not finish (s) (default: 3 s)
+OsmoBTS> show timer bts X1
+bts: X1 = 300 s Time after which osmo-bts exits if regular ramp down during shut down process does not finish (s) (default: 300 s)
+OsmoBTS> show timer bts X2
+bts: X2 = 3 s Time after which osmo-bts exits if requesting transceivers to stop during shut down process does not finish (s) (default: 3 s)
+OsmoBTS> show timer abis ?
+ [TNNNN] T- or X-timer-number -- 3GPP compliant timer number of the format '1234' or 'T1234' or 't1234'; Osmocom-specific timer number of the format: 'X1234' or 'x1234'.
+OsmoBTS> show timer abis X15
+abis: X15 = 0 ms Time to wait between Channel Activation and dispatching a cached early Immediate Assignment (default: 0 ms)
+
+OsmoBTS> show e1_driver ?
+ <cr>
+OsmoBTS> show e1_line ?
+ [<0-255>] E1 Line Number
+OsmoBTS> show e1_line 0 ?
+ [stats] Include statistics
+OsmoBTS> show e1_timeslot ?
+ [<0-255>] E1 Line Number
+OsmoBTS> show e1_timeslot 0 ?
+ [<0-31>] E1 Timeslot Number
+
+OsmoBTS> enable
+OsmoBTS# list
+...
+ show bts [<0-255>]
+ show trx [<0-255>] [<0-255>]
+ show timeslot [<0-255>] [<0-255>] [<0-7>]
+ show lchan [<0-255>] [<0-255>] [<0-7>] [<0-7>]
+ show lchan summary [<0-255>] [<0-255>] [<0-7>] [<0-7>]
+ show bts <0-255> gprs
+...
+ show timer [(bts|abis)] [TNNNN]
+ bts <0-0> trx <0-255> ts <0-7> (lchan|shadow-lchan) <0-7> rtp jitter-buffer <0-10000>
+ test send-failure-event-report <0-255>
+ bts <0-0> c0-power-red <0-6>
+ show e1_driver
+ show e1_line [<0-255>] [stats]
+ show e1_timeslot [<0-255>] [<0-31>]
+...
+
+OsmoBTS# ?
+...
+ show Show running system information
+...
+
+OsmoBTS# show ?
+...
+ bts Display information about a BTS
+ trx Display information about a TRX
+ timeslot Display information about a TS
+ lchan Display information about a logical channel
+ timer Show timers
+ e1_driver Display information about available E1 drivers
+ e1_line Display information about a E1 line
+ e1_timeslot Display information about a E1 timeslot
+...
+OsmoBTS# show bts ?
+ [<0-255>] BTS Number
+ <0-255> BTS Number
+OsmoBTS# show bts 0 ?
+ gprs GPRS/EGPRS configuration
+ <cr>
+OsmoBTS# show trx ?
+ [<0-255>] BTS Number
+OsmoBTS# show trx 0 ?
+ [<0-255>] TRX Number
+OsmoBTS# show timeslot ?
+ [<0-255>] BTS Number
+OsmoBTS# show timeslot 0 ?
+ [<0-255>] TRX Number
+OsmoBTS# show timeslot 0 0 ?
+ [<0-7>] Timeslot Number
+OsmoBTS# show lchan ?
+ [<0-255>] BTS Number
+ summary Short summary
+OsmoBTS# show lchan 0 ?
+ [<0-255>] TRX Number
+OsmoBTS# show lchan 0 0 ?
+ [<0-7>] Timeslot Number
+OsmoBTS# show lchan 0 0 0 ?
+ [<0-7>] Logical Channel Number
+OsmoBTS# show lchan summary ?
+ [<0-255>] BTS Number
+OsmoBTS# show lchan summary 0 ?
+ [<0-255>] TRX Number
+OsmoBTS# show lchan summary 0 0 ?
+ [<0-7>] Timeslot Number
+OsmoBTS# show lchan summary 0 0 0 ?
+ [<0-7>] Logical Channel Number
+OsmoBTS# show e1_driver ?
+ <cr>
+OsmoBTS# show e1_line ?
+ [<0-255>] E1 Line Number
+OsmoBTS# show e1_line 0 ?
+ [stats] Include statistics
+OsmoBTS# show e1_timeslot ?
+ [<0-255>] E1 Line Number
+OsmoBTS# show e1_timeslot 0 ?
+ [<0-31>] E1 Timeslot Number
+
+OsmoBTS# configure terminal
+OsmoBTS(config)# list
+...
+ bts BTS_NR
+...
+ timer [(bts|abis)] [TNNNN] [(<0-2147483647>|default)]
+ phy <0-255>
+ e1_input
+...
+OsmoBTS(config)# ?
+...
+ bts Select a BTS to configure
+...
+ timer Configure or show timers
+ phy Select a PHY to configure
+ e1_input Configure E1/T1/J1 TDM input
+...
+OsmoBTS(config)# bts ?
+ BTS_NR BTS Number
+OsmoBTS(config)# phy ?
+ <0-255> PHY number
+
+OsmoBTS(config)# timer ?
+ [bts] BTS process timers
+ [abis] Abis (RSL) related timers
+OsmoBTS(config)# timer bts ?
+ [TNNNN] T- or X-timer-number -- 3GPP compliant timer number of the format '1234' or 'T1234' or 't1234'; Osmocom-specific timer number of the format: 'X1234' or 'x1234'.
+OsmoBTS(config)# timer bts X1
+bts: X1 = 300 s Time after which osmo-bts exits if regular ramp down during shut down process does not finish (s) (default: 300 s)
+OsmoBTS(config)# timer bts X2
+bts: X2 = 3 s Time after which osmo-bts exits if requesting transceivers to stop during shut down process does not finish (s) (default: 3 s)
+OsmoBTS(config)# timer bts X1 ?
+ [<0-2147483647>] New timer value
+ [default] Set to default timer value
+OsmoBTS(config)# timer bts X1 123
+OsmoBTS(config)# timer bts X1
+bts: X1 = 123 s Time after which osmo-bts exits if regular ramp down during shut down process does not finish (s) (default: 300 s)
+OsmoBTS(config)# timer bts X1 default
+OsmoBTS(config)# timer bts X1
+bts: X1 = 300 s Time after which osmo-bts exits if regular ramp down during shut down process does not finish (s) (default: 300 s)
+
+OsmoBTS(config)# timer abis X15
+abis: X15 = 0 ms Time to wait between Channel Activation and dispatching a cached early Immediate Assignment (default: 0 ms)
+OsmoBTS(config)# timer abis X15 123
+OsmoBTS(config)# timer abis X15
+abis: X15 = 123 ms Time to wait between Channel Activation and dispatching a cached early Immediate Assignment (default: 0 ms)
+OsmoBTS(config)# timer abis X15 default
+OsmoBTS(config)# timer abis X15
+abis: X15 = 0 ms Time to wait between Channel Activation and dispatching a cached early Immediate Assignment (default: 0 ms)
+
+OsmoBTS(config)# bts 0
+OsmoBTS(bts)# list
+...
+ ipa unit-id <0-65534> <0-255>
+ oml remote-ip A.B.C.D
+ no oml remote-ip A.B.C.D
+ rtp jitter-buffer <0-10000> [adaptive]
+ rtp port-range <1-65534> <1-65534>
+ rtp ip-dscp <0-63>
+ rtp socket-priority <0-255>
+ rtp continuous-streaming
+ no rtp continuous-streaming
+ rtp internal-uplink-ecu
+ no rtp internal-uplink-ecu
+ rtp hr-format (rfc5993|ts101318)
+ band (450|GSM450|480|GSM480|750|GSM750|810|GSM810|850|GSM850|900|GSM900|1800|DCS1800|1900|PCS1900)
+ description .TEXT
+ no description
+ paging queue-size <1-1024>
+ paging lifetime <0-60>
+ agch-queue-mgmt default
+ agch-queue-mgmt threshold <0-100> low <0-100> high <0-100000>
+ min-qual-rach <-100-100>
+ min-qual-norm <-100-100>
+ max-ber10k-rach <0-10000>
+ pcu-socket PATH
+ pcu-socket-wqueue-length <1-2147483647>
+ supp-meas-info toa256
+ no supp-meas-info toa256
+ smscb queue-max-length <1-60>
+ smscb queue-target-length <1-30>
+ smscb queue-hysteresis <0-30>
+ gsmtap-remote-host [HOSTNAME]
+ no gsmtap-remote-host
+ gsmtap-local-host HOSTNAME
+ no gsmtap-local-host
+ gsmtap-sapi (enable-all|disable-all)
+ gsmtap-sapi (bcch|ccch|rach|agch|pch|sdcch|tch/f|tch/h|pacch|pdtch|ptcch|cbch|sacch)
+ no gsmtap-sapi (bcch|ccch|rach|agch|pch|sdcch|tch/f|tch/h|pacch|pdtch|ptcch|cbch|sacch)
+ gsmtap-rlp [skip-null]
+ no gsmtap-rlp
+ osmux
+ trx <0-254>
+...
+OsmoBTS(bts)# ?
+...
+ ipa ip.access RSL commands
+ oml OML Parameters
+ no Negate a command or set its defaults
+ rtp RTP parameters
+ band Set the frequency band of this BTS
+ description Save human-readable description of the object
+ paging Paging related parameters
+ agch-queue-mgmt AGCH queue mgmt
+ min-qual-rach Set the minimum link quality level of Access Bursts to be accepted
+ min-qual-norm Set the minimum link quality level of Normal Bursts to be accepted
+ max-ber10k-rach Set the maximum BER for valid RACH requests
+ pcu-socket Configure the PCU socket file/path name
+ pcu-socket-wqueue-length Configure the PCU socket queue length
+ supp-meas-info Configure the RSL Supplementary Measurement Info
+ smscb SMSCB (SMS Cell Broadcast) / CBCH configuration
+ gsmtap-remote-host Enable GSMTAP Um logging (see also 'gsmtap-sapi')
+ gsmtap-local-host Enable local bind for GSMTAP Um logging (see also 'gsmtap-sapi')
+ gsmtap-sapi Enable/disable sending of UL/DL messages over GSMTAP
+ gsmtap-rlp Enable generation of GSMTAP frames for RLP (non-transparent CSD)
+ osmux Configure Osmux
+ trx Select a TRX to configure
+...
+OsmoBTS(bts)# trx 0
+OsmoBTS(trx)# list
+...
+ user-gain <-100000-100000> (dB|mdB)
+ power-ramp max-initial <-10000-100000> (dBm|mdBm)
+ power-ramp step-size <1-100000> (dB|mdB)
+ power-ramp step-interval <1-100>
+ ms-power-control (dsp|osmo)
+ ta-control interval <0-31>
+ phy <0-255> instance <0-255>
+...
+OsmoBTS(trx)# ?
+...
+ user-gain Inform BTS about additional, user-provided gain or attenuation at TRX output
+ power-ramp Power-Ramp settings
+ ms-power-control Mobile Station Power Level Control
+ ta-control Timing Advance Control Parameters
+ phy Configure PHY Link+Instance for this TRX
+...
+OsmoBTS(trx)# exit
+OsmoBTS(bts)# osmux
+OsmoBTS(osmux)# ?
+...
+ use Configure Osmux usage
+ local-ip IP information
+ local-port Osmux port
+ batch-factor Batching factor
+ batch-size Batch size
+ dummy-padding Dummy padding
+
diff --git a/tests/paging/Makefile.am b/tests/paging/Makefile.am
index 74d98265..06cc35e1 100644
--- a/tests/paging/Makefile.am
+++ b/tests/paging/Makefile.am
@@ -1,7 +1,26 @@
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
-AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(LIBOSMOTRAU_CFLAGS) $(LIBOSMOCODEC_CFLAGS)
-LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOVTY_LIBS) $(LIBOSMOTRAU_LIBS) $(LIBOSMOABIS_LIBS) $(LIBOSMOCODEC_LIBS)
-noinst_PROGRAMS = paging_test
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOVTY_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOVTY_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOABIS_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+
+check_PROGRAMS = paging_test
EXTRA_DIST = paging_test.ok
paging_test_SOURCES = paging_test.c $(srcdir)/../stubs.c
diff --git a/tests/paging/paging_test.c b/tests/paging/paging_test.c
index af8accc5..1676a107 100644
--- a/tests/paging/paging_test.c
+++ b/tests/paging/paging_test.c
@@ -12,7 +12,7 @@
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
@@ -22,10 +22,12 @@
#include <osmocom/core/application.h>
#include <osmo-bts/bts.h>
+#include <osmo-bts/bts_sm.h>
#include <osmo-bts/logging.h>
#include <osmo-bts/paging.h>
#include <osmo-bts/gsm_data.h>
#include <osmo-bts/l1sap.h>
+#include <osmo-bts/notification.h>
#include <unistd.h>
@@ -133,6 +135,7 @@ static struct gsm_bts_trx *test_is_ccch_for_agch_setup(uint8_t bs_ag_blks_res)
si3.control_channel_desc.bs_ag_blks_res = bs_ag_blks_res;
trx.bts = &bts;
bts.si_valid |= 0x8;
+ bts.asci.pos_nch = -1;
memcpy(&bts.si_buf[SYSINFO_TYPE_3][0], &si3, sizeof(si3));
return &trx;
}
@@ -142,7 +145,7 @@ static struct gsm_bts_trx *test_is_ccch_for_agch_setup(uint8_t bs_ag_blks_res)
* Table 5 of 9 must occur. */
static void test_is_ccch_for_agch(void)
{
- int is_ag_res;
+ enum ccch_msgt ccch;
int fn;
uint8_t bs_ag_blks_res;
struct gsm_bts_trx *trx;
@@ -170,13 +173,174 @@ static void test_is_ccch_for_agch(void)
/* Try allo possible settings for bs_ag_blks_res */
for (bs_ag_blks_res = 0; bs_ag_blks_res <= 7; bs_ag_blks_res++) {
trx = test_is_ccch_for_agch_setup(bs_ag_blks_res);
- is_ag_res = is_ccch_for_agch(trx, fn);
- printf(" %u", is_ag_res);
+ ccch = get_ccch_msgt(trx, fn);
+ printf(" %u", (ccch == CCCH_MSGT_AGCH));
}
printf("\n");
}
}
+static void test_paging_rest_octets1(void)
+{
+ uint8_t out_buf[17];
+ struct p1_rest_octets p1ro = {};
+ struct asci_notification notif = {};
+
+ struct bitvec bv = {
+ .data_len = sizeof(out_buf),
+ .data = out_buf,
+ };
+
+ /* no rest */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ append_p1_rest_octets(&bv, &p1ro, NULL);
+ ASSERT_TRUE(out_buf[0] == 0x2b);
+
+ /* add NLN */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ p1ro.nln_pch.present = true;
+ p1ro.nln_pch.nln = 3;
+ p1ro.nln_pch.nln_status = 1;
+ append_p1_rest_octets(&bv, &p1ro, NULL);
+ ASSERT_TRUE(out_buf[0] == 0xfb); /* H 1 11 1 */
+ p1ro.nln_pch.present = 0;
+
+ /* add group callref */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ notif.group_call_ref[0] = 0x12;
+ notif.group_call_ref[1] = 0x34;
+ notif.group_call_ref[2] = 0x56;
+ notif.group_call_ref[3] = 0x78;
+ notif.group_call_ref[4] = 0x90;
+ notif.chan_desc.present = true;
+ notif.chan_desc.len = 3;
+ notif.chan_desc.value[0] = 0x20;
+ notif.chan_desc.value[1] = 0x40;
+ notif.chan_desc.value[2] = 0x80;
+ append_p1_rest_octets(&bv, &p1ro, &notif);
+ ASSERT_TRUE(out_buf[0] == 0x31); /* L L L H 0x123456789 */
+ ASSERT_TRUE(out_buf[1] == 0x23);
+ ASSERT_TRUE(out_buf[2] == 0x45);
+ ASSERT_TRUE(out_buf[3] == 0x67);
+ ASSERT_TRUE(out_buf[4] == 0x89);
+ ASSERT_TRUE(out_buf[5] == 0x90); /* H 0x204080 0 */
+ ASSERT_TRUE(out_buf[6] == 0x20);
+ ASSERT_TRUE(out_buf[7] == 0x40);
+ ASSERT_TRUE(out_buf[8] == 0x2b);
+
+ /* add Packet Page Indication 1 */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ p1ro.packet_page_ind[0] = true;
+ append_p1_rest_octets(&bv, &p1ro, NULL);
+ ASSERT_TRUE(out_buf[0] == 0x23); /* L L L L H L L L */
+ p1ro.packet_page_ind[0] = false;
+
+ /* add Packet Page Indication 2 */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ p1ro.packet_page_ind[1] = true;
+ append_p1_rest_octets(&bv, &p1ro, NULL);
+ ASSERT_TRUE(out_buf[0] == 0x2f); /* L L L L L H L L */
+ p1ro.packet_page_ind[1] = false;
+
+ /* add ETWS */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ p1ro.r8_present = true;
+ p1ro.r8.prio_ul_access = true;
+ p1ro.r8.etws_present = true;
+ p1ro.r8.etws.is_first = true;
+ p1ro.r8.etws.page_nr = 0x5;
+ uint8_t page[] = { 0x22, 0x44, 0x66 };
+ p1ro.r8.etws.page_bytes = sizeof(page);
+ p1ro.r8.etws.page = page;
+ append_p1_rest_octets(&bv, &p1ro, NULL);
+ ASSERT_TRUE(out_buf[0] == 0x2b); /* L L L L L L L L */
+ ASSERT_TRUE(out_buf[1] == 0xe5); /* H 1 1 0 0x5 */
+ ASSERT_TRUE(out_buf[2] == 0x18); /* 0 len=24=0x18 */
+ ASSERT_TRUE(out_buf[3] == 0x22); /* 0x224488 */
+ ASSERT_TRUE(out_buf[4] == 0x44);
+ ASSERT_TRUE(out_buf[5] == 0x66);
+ p1ro.r8_present = false;
+}
+
+static void test_paging_rest_octets2(void)
+{
+ uint8_t out_buf[11];
+ struct p2_rest_octets p2ro = {};
+
+ struct bitvec bv = {
+ .data_len = sizeof(out_buf),
+ .data = out_buf,
+ };
+
+ /* nothing added */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ append_p2_rest_octets(&bv, &p2ro);
+ ASSERT_TRUE(out_buf[0] == 0x2b); /* L L */
+
+ /* add cneed */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ p2ro.cneed.present = true;
+ p2ro.cneed.cn3 = 3;
+ append_p2_rest_octets(&bv, &p2ro);
+ ASSERT_TRUE(out_buf[0] == 0xeb); /* H 1 1 L */
+ p2ro.cneed.present = false;
+
+ /* add NLN */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ p2ro.nln_pch.present = true;
+ p2ro.nln_pch.nln = 3;
+ p2ro.nln_pch.nln_status = 1;
+ append_p2_rest_octets(&bv, &p2ro);
+ ASSERT_TRUE(out_buf[0] == 0x7b); /* L H 1 11 1 */
+ p2ro.nln_pch.present = 0;
+}
+
+static void test_paging_rest_octets3(void)
+{
+ uint8_t out_buf[3];
+ struct p3_rest_octets p3ro = {};
+
+ struct bitvec bv = {
+ .data_len = sizeof(out_buf),
+ .data = out_buf,
+ };
+
+ /* nothing added */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ append_p3_rest_octets(&bv, &p3ro);
+ ASSERT_TRUE(out_buf[0] == 0x2b); /* L L */
+
+ /* add cneed */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ p3ro.cneed.present = true;
+ p3ro.cneed.cn3 = 3;
+ p3ro.cneed.cn4 = 3;
+ append_p3_rest_octets(&bv, &p3ro);
+ ASSERT_TRUE(out_buf[0] == 0xfb); /* H 1 1 1 1 L */
+ p3ro.cneed.present = false;
+
+ /* add NLN */
+ memset(out_buf, GSM_MACBLOCK_PADDING, sizeof(out_buf));
+ bv.cur_bit = 0;
+ p3ro.nln_pch.present = true;
+ p3ro.nln_pch.nln = 3;
+ p3ro.nln_pch.nln_status = 1;
+ append_p3_rest_octets(&bv, &p3ro);
+ ASSERT_TRUE(out_buf[0] == 0x7b); /* L H 1 11 1 */
+ p3ro.nln_pch.present = 0;
+}
+
int main(int argc, char **argv)
{
tall_bts_ctx = talloc_named_const(NULL, 1, "OsmoBTS context");
@@ -184,7 +348,12 @@ int main(int argc, char **argv)
osmo_init_logging2(tall_bts_ctx, &bts_log_info);
- bts = gsm_bts_alloc(tall_bts_ctx, 0);
+ g_bts_sm = gsm_bts_sm_alloc(tall_bts_ctx);
+ if (!g_bts_sm) {
+ fprintf(stderr, "Failed to create BTS Site Manager structure\n");
+ exit(1);
+ }
+ bts = gsm_bts_alloc(g_bts_sm, 0);
if (bts_init(bts) < 0) {
fprintf(stderr, "unable to open bts\n");
exit(1);
@@ -193,6 +362,9 @@ int main(int argc, char **argv)
test_paging_smoke();
test_paging_sleep();
test_is_ccch_for_agch();
+ test_paging_rest_octets1();
+ test_paging_rest_octets2();
+ test_paging_rest_octets3();
printf("Success\n");
return 0;
diff --git a/tests/power/Makefile.am b/tests/power/Makefile.am
index ac45f238..81f3f2a5 100644
--- a/tests/power/Makefile.am
+++ b/tests/power/Makefile.am
@@ -1,9 +1,29 @@
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
-AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOCODEC_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(LIBOSMOTRAU_CFLAGS)
-LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOCODEC_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOVTY_LIBS) $(LIBOSMOTRAU_LIBS)
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOVTY_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOVTY_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
-noinst_PROGRAMS = power_test
-EXTRA_DIST = power_test.ok
+check_PROGRAMS = ms_power_loop_test bs_power_loop_test
+EXTRA_DIST = ms_power_loop_test.ok ms_power_loop_test.err \
+ bs_power_loop_test.ok bs_power_loop_test.err
-power_test_SOURCES = power_test.c $(srcdir)/../stubs.c
-power_test_LDADD = $(top_builddir)/src/common/libbts.a $(LIBOSMOABIS_LIBS) $(LDADD)
+ms_power_loop_test_SOURCES = ms_power_loop_test.c $(srcdir)/../stubs.c
+ms_power_loop_test_LDADD = $(top_builddir)/src/common/libbts.a $(LIBOSMOABIS_LIBS) $(LDADD)
+
+bs_power_loop_test_SOURCES = bs_power_loop_test.c $(srcdir)/../stubs.c
+bs_power_loop_test_LDADD = $(top_builddir)/src/common/libbts.a $(LIBOSMOABIS_LIBS) $(LDADD)
diff --git a/tests/power/bs_power_loop_test.c b/tests/power/bs_power_loop_test.c
new file mode 100644
index 00000000..8fbdcee6
--- /dev/null
+++ b/tests/power/bs_power_loop_test.c
@@ -0,0 +1,515 @@
+/*
+ * (C) 2020-2021 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
+ * Author: Vadim Yanitskiy <vyanitskiy@sysmocom.de>
+ *
+ * All Rights Reserved
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <stdio.h>
+
+#include <osmocom/core/utils.h>
+#include <osmocom/core/talloc.h>
+#include <osmocom/core/application.h>
+
+#include <osmo-bts/bts.h>
+#include <osmo-bts/l1sap.h>
+#include <osmo-bts/logging.h>
+#include <osmo-bts/power_control.h>
+
+#define PWR_TEST_RXLEV_TARGET 30
+
+#define PWR_TEST_CFG_RXLEV_THRESH(hyst) \
+ .lower_thresh = PWR_TEST_RXLEV_TARGET - hyst, \
+ .upper_thresh = PWR_TEST_RXLEV_TARGET + hyst
+
+#define DL_MEAS_FULL(rxqual, rxlev) \
+ .rxqual_full = rxqual, \
+ .rxlev_full = rxlev
+
+#define DL_MEAS_SUB(rxqual, rxlev) \
+ .rxqual_sub = rxqual, \
+ .rxlev_sub = rxlev
+
+#define DL_MEAS_FULL_SUB(rxqual, rxlev) \
+ { DL_MEAS_FULL(rxqual, rxlev), \
+ DL_MEAS_SUB(rxqual, rxlev) }
+
+enum power_test_step_type {
+ PWR_TEST_ST_IND_MEAS = 0,
+ PWR_TEST_ST_SET_STATE,
+ PWR_TEST_ST_SET_CTRL_INTERVAL,
+ PWR_TEST_ST_SET_STEP_SIZE,
+ PWR_TEST_ST_SET_RXLEV_PARAMS,
+ PWR_TEST_ST_ENABLE_DTXD,
+ PWR_TEST_ST_DISABLE_DPC,
+};
+
+struct power_test_step {
+ /* Instruction to be performed */
+ enum power_test_step_type type;
+ /* Instruction parameters */
+ union {
+ /* Power Control state */
+ struct lchan_power_ctrl_state state;
+ /* Measurement pre-processing parameters */
+ struct gsm_power_ctrl_meas_params mp;
+ /* Indicated DL measurements */
+ struct {
+ uint8_t rxqual_full;
+ uint8_t rxqual_sub;
+ uint8_t rxlev_full;
+ uint8_t rxlev_sub;
+ } meas;
+ /* Increase / reduce step size */
+ struct {
+ uint8_t inc;
+ uint8_t red;
+ } step_size;
+ /* Power control interval */
+ uint8_t ctrl_interval;
+ };
+ /* Expected Tx power reduction */
+ uint8_t exp_txred;
+};
+
+static struct gsm_bts *g_bts = NULL;
+static struct gsm_bts_trx *g_trx = NULL;
+
+static void init_test(const char *name)
+{
+ if (g_trx != NULL)
+ talloc_free(g_trx);
+ if (g_bts != NULL)
+ talloc_free(g_bts);
+
+ g_bts = talloc_zero(tall_bts_ctx, struct gsm_bts);
+ OSMO_ASSERT(g_bts != NULL);
+
+ INIT_LLIST_HEAD(&g_bts->trx_list);
+ g_trx = gsm_bts_trx_alloc(g_bts);
+ OSMO_ASSERT(g_trx != NULL);
+
+ g_bts->band = GSM_BAND_900;
+ g_bts->c0 = g_trx;
+
+ /* Init defaultBS power control parameters, enable dynamic power control */
+ struct gsm_power_ctrl_params *params = &g_trx->ts[0].lchan[0].bs_dpc_params;
+ g_trx->ts[0].lchan[0].bs_power_ctrl.dpc_params = params;
+ *params = power_ctrl_params_def;
+
+ /* Disable loop SACCH block skip by default: */
+ params->ctrl_interval = 0;
+
+ printf("\nStarting test case '%s'\n", name);
+}
+
+static void enc_meas_rep(struct gsm48_meas_res *mr,
+ const unsigned int n,
+ const struct power_test_step *step)
+{
+ *mr = (struct gsm48_meas_res) {
+ .rxlev_full = step->meas.rxlev_full,
+ .rxlev_sub = step->meas.rxlev_sub,
+ .rxqual_full = step->meas.rxqual_full,
+ .rxqual_sub = step->meas.rxqual_sub,
+ };
+
+ printf("#%02u %s() -> Measurement Results (valid): "
+ "RXLEV-FULL(%02u), RXQUAL-FULL(%u), "
+ "RXLEV-SUB(%02u), RXQUAL-SUB(%u)\n",
+ n, __func__,
+ mr->rxlev_full, mr->rxqual_full,
+ mr->rxlev_sub, mr->rxqual_sub);
+}
+
+static int exec_power_step(struct gsm_lchan *lchan,
+ const unsigned int n,
+ const struct power_test_step *step)
+{
+ struct gsm48_meas_res mr;
+ uint8_t old, new;
+
+ switch (step->type) {
+ case PWR_TEST_ST_SET_STATE:
+ printf("#%02u %s() <- State (re)set (current %u dB, max %u dB)\n",
+ n, __func__, step->state.current, step->state.max);
+ lchan->bs_power_ctrl = step->state;
+ lchan->bs_power_ctrl.dpc_params = &lchan->bs_dpc_params;
+ return 0; /* we're done */
+ case PWR_TEST_ST_DISABLE_DPC:
+ printf("#%02u %s() <- Dynamic power control is disabled\n", n, __func__);
+ lchan->bs_power_ctrl.dpc_params = NULL;
+ return 0; /* we're done */
+ case PWR_TEST_ST_SET_CTRL_INTERVAL:
+ printf("#%02u %s() <- (Re)set power control interval: %u -> %u\n",
+ n, __func__, lchan->bs_dpc_params.ctrl_interval, step->ctrl_interval);
+ lchan->bs_dpc_params.ctrl_interval = step->ctrl_interval;
+ return 0; /* we're done */
+ case PWR_TEST_ST_SET_STEP_SIZE:
+ printf("#%02u %s() <- Set step size: inc %u dB, red %u dB\n",
+ n, __func__, step->step_size.inc, step->step_size.red);
+ lchan->bs_dpc_params.inc_step_size_db = step->step_size.inc;
+ lchan->bs_dpc_params.red_step_size_db = step->step_size.red;
+ return 0; /* we're done */
+ case PWR_TEST_ST_SET_RXLEV_PARAMS:
+ printf("#%02u %s() <- (Re)set RxLev params (thresh %u .. %u, "
+ "averaging is %sabled)\n",
+ n, __func__, step->mp.lower_thresh, step->mp.upper_thresh,
+ step->mp.algo != GSM_PWR_CTRL_MEAS_AVG_ALGO_NONE ? "en" : "dis");
+ lchan->bs_dpc_params.rxlev_meas = step->mp;
+ return 0; /* we're done */
+ case PWR_TEST_ST_ENABLE_DTXD:
+ printf("#%02u %s() <- Enable DTXd\n", n, __func__);
+ lchan->tch.dtx.dl_active = true;
+ return 0; /* we're done */
+ case PWR_TEST_ST_IND_MEAS:
+ enc_meas_rep(&mr, n, step);
+ break;
+ }
+
+ printf("#%02u lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 %s\n",
+ n, osmo_hexdump((void *)&mr, sizeof(mr)));
+
+ old = lchan->bs_power_ctrl.current;
+ lchan_bs_pwr_ctrl(lchan, &mr);
+ new = lchan->bs_power_ctrl.current;
+
+ printf("#%02u lchan_bs_pwr_ctrl() -> BS power reduction: "
+ "%u -> %u (expected %u)\n",
+ n, old, new, step->exp_txred);
+
+ return new != step->exp_txred;
+}
+
+static void exec_power_test(const struct power_test_step *steps,
+ unsigned int num_steps,
+ const char *name)
+{
+ unsigned int n;
+ int rc = 0;
+
+ init_test(name);
+
+ struct gsm_lchan *lchan = &g_trx->ts[0].lchan[0];
+ struct gsm_power_ctrl_params *params = &lchan->bs_dpc_params;
+
+ /* No RxLev hysteresis: lower == upper */
+ params->rxlev_meas.lower_thresh = PWR_TEST_RXLEV_TARGET;
+ params->rxlev_meas.upper_thresh = PWR_TEST_RXLEV_TARGET;
+
+ /* No RxLev pre-processing by default */
+ params->rxlev_meas.algo = GSM_PWR_CTRL_MEAS_AVG_ALGO_NONE;
+
+ for (n = 0; n < num_steps; n++)
+ rc |= exec_power_step(lchan, n, &steps[n]);
+
+ printf("Test case verdict: %s\n", rc ? "FAIL" : "SUCCESS");
+}
+
+/* Verify that the power remains constant in fixed mode. */
+static const struct power_test_step TC_fixed_mode[] = {
+ /* Initial state: 10 dB, up to 20 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 10, .max = 2 * 10 } },
+ { .type = PWR_TEST_ST_DISABLE_DPC },
+
+ /* MS indicates random RxQual/RxLev values, which must be ignored */
+ { .meas = DL_MEAS_FULL_SUB(0, 63), .exp_txred = 10 },
+ { .meas = DL_MEAS_FULL_SUB(7, 0), .exp_txred = 10 },
+ { .meas = DL_MEAS_FULL_SUB(0, 30), .exp_txred = 10 },
+ { .meas = DL_MEAS_FULL_SUB(1, 30), .exp_txred = 10 },
+ { .meas = DL_MEAS_FULL_SUB(1, 50), .exp_txred = 10 },
+};
+
+/* Verify that the power remains constant if RxLev equals the target level. */
+static const struct power_test_step TC_rxlev_target[] = {
+ /* Initial state: 0 dB, up to 20 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 0, .max = 2 * 10 } },
+
+ /* MS indicates RxLev values that match the target level */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET) },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET) },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET) },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET) },
+};
+
+/* Verify that the power is gradually reduced/increased to the
+ * minimum/maximum if the MS reports high/low RxLev values. */
+static const struct power_test_step TC_rxlev_max_min[] = {
+ /* Initial state: 0 dB, up to 20 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 0, .max = 2 * 10 } },
+
+ /* MS indicates high RxLev values (-50 dBm), inc step is 2 dB */
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 2 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 4 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 6 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 8 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 10 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 12 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 14 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 16 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 18 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 20 }, /* max */
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 20 }, /* max */
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 20 }, /* max */
+
+ /* MS indicates low RxLev values (-100 dBm), red step is 4 dB */
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 16 },
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 12 },
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 8 },
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 4 },
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 0 }, /* min */
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 0 }, /* min */
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 0 }, /* min */
+};
+
+/* Verify that delta values never exceed the corresponding step size,
+ * but still can be smaller than the step size if the target is close. */
+static const struct power_test_step TC_inc_red_step_size[] = {
+ /* Initial state: 0 dB, up to 20 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 0, .max = 2 * 10 } },
+
+ { .type = PWR_TEST_ST_SET_STEP_SIZE,
+ .step_size = { .inc = 6, .red = 4 } },
+
+ /* MS indicates high RxLev values (-50 dBm), red step is 4 dB */
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 4 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 8 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 12 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 16 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 20 }, /* max */
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 20 }, /* max */
+
+ /* MS indicates low RxLev values (-100 dBm), inc step is 6 dB */
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 14 },
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 8 },
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 2 },
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 0 }, /* min */
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 0 }, /* min */
+
+ /* Reset state: current 10 dB, up to 20 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 10, .max = 2 * 10 } },
+
+ /* Let's say the current value is now 1 dB greater than the target (current red 10 dB) */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 1), .exp_txred = 10 + 1 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 0), .exp_txred = 10 + 1 },
+ /* Let's say the current value is now 2 dB greater than the target (current red 11 dB) */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 2), .exp_txred = 11 + 2 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 0), .exp_txred = 11 + 2 },
+ /* Let's say the current value is now 3 dB greater than the target (current red 13 dB) */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 3), .exp_txred = 13 + 3 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 0), .exp_txred = 13 + 3 },
+
+ /* Reset state: current 10 dB, up to 20 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 10, .max = 2 * 10 } },
+
+ /* Let's say the current value is now 1 dB lower than the target (current red 10 dB) */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 1), .exp_txred = 10 - 1 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 0), .exp_txred = 10 - 1 },
+ /* Let's say the current value is now 3 dB lower than the target (current red 9 dB) */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 3), .exp_txred = 9 - 3 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 0), .exp_txred = 9 - 3 },
+ /* Let's say the current value is now 5 dB lower than the target (current red 6 dB) */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 5), .exp_txred = 6 - 5 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 0), .exp_txred = 6 - 5 },
+};
+
+/* Verify that the logic picks the 'SUB' values in DTXd mode. */
+static const struct power_test_step TC_dtxd_mode[] = {
+ /* Initial state: 0 dB, up to 20 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 0, .max = 2 * 10 } },
+
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET) },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET) },
+
+ { .type = PWR_TEST_ST_ENABLE_DTXD }, /* DTXd mode */
+
+ /* MS indicates target RxLev values as 'SUB', and random as 'FULL' */
+ { .meas = { DL_MEAS_FULL(7, 0), DL_MEAS_SUB(0, PWR_TEST_RXLEV_TARGET) } },
+ { .meas = { DL_MEAS_FULL(3, 30), DL_MEAS_SUB(0, PWR_TEST_RXLEV_TARGET) } },
+ { .meas = { DL_MEAS_FULL(0, 63), DL_MEAS_SUB(0, PWR_TEST_RXLEV_TARGET) } },
+};
+
+/* Verify that high RxQual reduces the current attenuation value. */
+static const struct power_test_step TC_rxqual_ber[] = {
+ /* Initial state: 16 dB, up to 20 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 16, .max = 2 * 10 } },
+
+ /* MS indicates target RxLev, and no bit errors */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET), .exp_txred = 16 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET), .exp_txred = 16 },
+
+ /* MS indicates target RxLev, but RxQual values better than L_RXQUAL_XX_P=3 */
+ { .meas = DL_MEAS_FULL_SUB(1, PWR_TEST_RXLEV_TARGET), .exp_txred = 16 },
+ { .meas = DL_MEAS_FULL_SUB(2, PWR_TEST_RXLEV_TARGET), .exp_txred = 16 },
+ { .meas = DL_MEAS_FULL_SUB(3, PWR_TEST_RXLEV_TARGET), .exp_txred = 16 },
+
+ /* MS indicates target RxLev, but RxQual values worse than L_RXQUAL_XX_P=3 */
+ { .meas = DL_MEAS_FULL_SUB(4, PWR_TEST_RXLEV_TARGET + 0), .exp_txred = 16 - 4 },
+ { .meas = DL_MEAS_FULL_SUB(5, PWR_TEST_RXLEV_TARGET + 4), .exp_txred = 16 - 8 },
+ { .meas = DL_MEAS_FULL_SUB(6, PWR_TEST_RXLEV_TARGET + 8), .exp_txred = 16 - 12 },
+ { .meas = DL_MEAS_FULL_SUB(7, PWR_TEST_RXLEV_TARGET + 12), .exp_txred = 16 - 16 }, /* max */
+ { .meas = DL_MEAS_FULL_SUB(7, PWR_TEST_RXLEV_TARGET + 16), .exp_txred = 16 - 16 }, /* max */
+
+ /* MS indicates target RxLev, but no bit errors anymore => reducing Tx power */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 16), .exp_txred = 2 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 14), .exp_txred = 4 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 12), .exp_txred = 6 },
+
+ /* Reset state: 0 dB, up to 20 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 0, .max = 2 * 10 } },
+
+ /* MS indicates target RxLev, but RxQual values worse than L_RXQUAL_XX_P=3 */
+ { .meas = DL_MEAS_FULL_SUB(7, PWR_TEST_RXLEV_TARGET) }, /* max */
+ { .meas = DL_MEAS_FULL_SUB(7, PWR_TEST_RXLEV_TARGET) }, /* max */
+};
+
+/* Verify handling of optional power control interval (P_Con_INTERVAL). */
+static const struct power_test_step TC_ctrl_interval[] = {
+ /* Initial state: 0 dB, up to 20 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 0, .max = 2 * 10 } },
+
+ /* P_Con_INTERVAL=0 (480 ms): every SACCH block is handled */
+ { .type = PWR_TEST_ST_SET_CTRL_INTERVAL, .ctrl_interval = 0 },
+
+ /* MS indicates high RxLev values (-50 dBm), red step is 2 dB */
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 2 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 4 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 6 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 8 },
+
+ /* MS indicates low RxLev values (-100 dBm), inc step is 4 dB */
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 4 },
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 0 },
+
+ /* P_Con_INTERVAL=1 (960 ms): 1 out of 2 SACCH blocks is handled */
+ { .type = PWR_TEST_ST_SET_CTRL_INTERVAL, .ctrl_interval = 1 },
+
+ /* MS indicates high RxLev values (-50 dBm), red step is 2 dB */
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 2 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 2 }, /* skipped */
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 4 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 4 }, /* skipped */
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 6 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 6 }, /* skipped */
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 8 },
+ { .meas = DL_MEAS_FULL_SUB(0, 60), .exp_txred = 8 }, /* skipped */
+
+ /* P_Con_INTERVAL=2 (1920 ms): 1 out of 4 SACCH blocks is handled */
+ { .type = PWR_TEST_ST_SET_CTRL_INTERVAL, .ctrl_interval = 2 },
+
+ /* MS indicates low RxLev values (-100 dBm), inc step is 4 dB */
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 4 },
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 4 }, /* skipped */
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 4 }, /* skipped */
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 4 }, /* skipped */
+ { .meas = DL_MEAS_FULL_SUB(0, 10), .exp_txred = 0 },
+};
+
+/* Verify that small deviations from the target do not trigger any changes. */
+static const struct power_test_step TC_rxlev_hyst[] = {
+ /* Initial state: 16 dB, up to 20 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 12, .max = 2 * 8 } },
+
+ /* Hysteresis is not enabled, so small deviations trigger oscillations */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 1), .exp_txred = 13 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 2), .exp_txred = 11 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 3), .exp_txred = 13 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 2), .exp_txred = 11 },
+
+ /* Enable hysteresis */
+ { .type = PWR_TEST_ST_SET_RXLEV_PARAMS,
+ .mp = { PWR_TEST_CFG_RXLEV_THRESH(3) }
+ },
+
+ /* Hysteresis is enabled, so small deviations do not trigger any changes */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 1), .exp_txred = 11 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 2), .exp_txred = 11 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 3), .exp_txred = 11 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 2), .exp_txred = 11 },
+};
+
+/* Verify EWMA based power filtering. */
+static const struct power_test_step TC_rxlev_pf_ewma[] = {
+ /* Initial state: 20 dB, up to 30 dB */
+ { .type = PWR_TEST_ST_SET_STATE,
+ .state = { .current = 16, .max = 2 * 15 } },
+
+ /* Enable EWMA based pre-processing for RxLev */
+ { .type = PWR_TEST_ST_SET_RXLEV_PARAMS,
+ .mp = {
+ PWR_TEST_CFG_RXLEV_THRESH(0),
+ .algo = GSM_PWR_CTRL_MEAS_AVG_ALGO_OSMO_EWMA,
+ .ewma.alpha = 50,
+ }
+ },
+
+ /* MS indicates target RxLev, power level remains constant */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET), .exp_txred = 16 },
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET), .exp_txred = 16 },
+
+ /* Avg[t] = (0.5 * 26) + (0.5 * 30) = 28, so delta is 2 */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 4), .exp_txred = 14 },
+ /* Avg[t] = (0.5 * 26) + (0.5 * 28) = 27, so delta is 3 */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET - 4), .exp_txred = 11 },
+ /* Avg[t] = (0.5 * 35) + (0.5 * 27) = 31, so delta is 1 */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 5), .exp_txred = 12 },
+ /* Avg[t] = (0.5 * 35) + (0.5 * 31) = 33, so delta is 3, but red step size is 2 dB */
+ { .meas = DL_MEAS_FULL_SUB(0, PWR_TEST_RXLEV_TARGET + 5), .exp_txred = 14 },
+};
+
+int main(int argc, char **argv)
+{
+ printf("Testing BS Power loop...\n");
+
+ tall_bts_ctx = talloc_named_const(NULL, 1, "OsmoBTS context");
+ msgb_talloc_ctx_init(tall_bts_ctx, 0);
+
+ osmo_init_logging2(tall_bts_ctx, &bts_log_info);
+ osmo_stderr_target->categories[DLOOP].loglevel = LOGL_DEBUG;
+ osmo_stderr_target->categories[DL1C].loglevel = LOGL_DEBUG;
+ log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_NONE);
+ log_set_use_color(osmo_stderr_target, 0);
+ log_set_print_category(osmo_stderr_target, 0);
+ log_set_print_category_hex(osmo_stderr_target, 0);
+
+#define exec_test(test) \
+ exec_power_test(test, ARRAY_SIZE(test), #test)
+
+ exec_test(TC_fixed_mode);
+ exec_test(TC_rxlev_target);
+ exec_test(TC_rxlev_max_min); /* FIXME */
+ exec_test(TC_inc_red_step_size);
+
+ exec_test(TC_dtxd_mode);
+ exec_test(TC_rxqual_ber);
+ exec_test(TC_ctrl_interval);
+
+ exec_test(TC_rxlev_hyst);
+ exec_test(TC_rxlev_pf_ewma);
+
+ return 0;
+}
diff --git a/tests/power/bs_power_loop_test.err b/tests/power/bs_power_loop_test.err
new file mode 100644
index 00000000..24107ba9
--- /dev/null
+++ b/tests/power/bs_power_loop_test.err
@@ -0,0 +1,191 @@
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 0 dB => 2 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 2 dB => 4 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 4 dB => 6 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 6 dB => 8 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 8 dB => 10 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 10 dB => 12 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 12 dB => 14 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 14 dB => 16 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 16 dB => 18 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 18 dB => 20 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 20 dB: max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 20 dB: max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 20 dB => 16 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 16 dB => 12 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 12 dB => 8 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 8 dB => 4 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 4 dB => 0 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 0 dB => 4 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 4 dB => 8 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 8 dB => 12 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 12 dB => 16 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 16 dB => 20 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 20 dB: max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 20 dB => 14 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 14 dB => 8 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 8 dB => 2 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 2 dB => 0 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(31), RXQUAL-FULL(0), RXLEV-SUB(31), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 10 dB => 11 dB:max 20 dB, RSSI[curr -79, avg -79, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 11 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(32), RXQUAL-FULL(0), RXLEV-SUB(32), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 11 dB => 13 dB:max 20 dB, RSSI[curr -78, avg -78, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 13 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(33), RXQUAL-FULL(0), RXLEV-SUB(33), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 13 dB => 16 dB:max 20 dB, RSSI[curr -77, avg -77, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 16 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(29), RXQUAL-FULL(0), RXLEV-SUB(29), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 10 dB => 9 dB:max 20 dB, RSSI[curr -81, avg -81, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 9 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(27), RXQUAL-FULL(0), RXLEV-SUB(27), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 9 dB => 6 dB:max 20 dB, RSSI[curr -83, avg -83, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 6 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(25), RXQUAL-FULL(0), RXLEV-SUB(25), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 6 dB => 1 dB:max 20 dB, RSSI[curr -85, avg -85, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 1 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(00), RXQUAL-FULL(7), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is enabled => using SUB
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(3), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is enabled => using SUB
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(63), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is enabled => using SUB
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 16 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 16 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(1), RXLEV-SUB(30), RXQUAL-SUB(1), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 16 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 1, avg 1, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(2), RXLEV-SUB(30), RXQUAL-SUB(2), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 16 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 2, avg 2, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(3), RXLEV-SUB(30), RXQUAL-SUB(3), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 16 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 3, avg 3, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(4), RXLEV-SUB(30), RXQUAL-SUB(4), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 16 dB => 12 dB:max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 4, avg 4, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(34), RXQUAL-FULL(5), RXLEV-SUB(34), RXQUAL-SUB(5), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 12 dB => 8 dB:max 20 dB, RSSI[curr -76, avg -76, thresh -80..-80] dBm, RxQual[curr 5, avg 5, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(38), RXQUAL-FULL(6), RXLEV-SUB(38), RXQUAL-SUB(6), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 8 dB => 4 dB:max 20 dB, RSSI[curr -72, avg -72, thresh -80..-80] dBm, RxQual[curr 6, avg 6, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(42), RXQUAL-FULL(7), RXLEV-SUB(42), RXQUAL-SUB(7), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 4 dB => 0 dB:max 20 dB, RSSI[curr -68, avg -68, thresh -80..-80] dBm, RxQual[curr 7, avg 7, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(46), RXQUAL-FULL(7), RXLEV-SUB(46), RXQUAL-SUB(7), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -64, avg -64, thresh -80..-80] dBm, RxQual[curr 7, avg 7, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(46), RXQUAL-FULL(0), RXLEV-SUB(46), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 0 dB => 2 dB:max 20 dB, RSSI[curr -64, avg -64, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(44), RXQUAL-FULL(0), RXLEV-SUB(44), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 2 dB => 4 dB:max 20 dB, RSSI[curr -66, avg -66, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(42), RXQUAL-FULL(0), RXLEV-SUB(42), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 4 dB => 6 dB:max 20 dB, RSSI[curr -68, avg -68, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(7), RXLEV-SUB(30), RXQUAL-SUB(7), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 7, avg 7, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(7), RXLEV-SUB(30), RXQUAL-SUB(7), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 0 dB: max 20 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 7, avg 7, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 0 dB => 2 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 2 dB => 4 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 4 dB => 6 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 6 dB => 8 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 8 dB => 4 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 4 dB => 0 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 0 dB => 2 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 2 dB => 4 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 4 dB => 6 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 6 dB => 8 dB:max 20 dB, RSSI[curr -50, avg -50, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 8 dB => 4 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 4 dB => 0 dB:max 20 dB, RSSI[curr -100, avg -100, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(31), RXQUAL-FULL(0), RXLEV-SUB(31), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 12 dB => 13 dB:max 16 dB, RSSI[curr -79, avg -79, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(28), RXQUAL-FULL(0), RXLEV-SUB(28), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 13 dB => 11 dB:max 16 dB, RSSI[curr -82, avg -82, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(33), RXQUAL-FULL(0), RXLEV-SUB(33), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 11 dB => 13 dB:max 16 dB, RSSI[curr -77, avg -77, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(28), RXQUAL-FULL(0), RXLEV-SUB(28), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 13 dB => 11 dB:max 16 dB, RSSI[curr -82, avg -82, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(31), RXQUAL-FULL(0), RXLEV-SUB(31), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 11 dB: max 16 dB, RSSI[curr -79, avg -79, thresh -83..-77] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(28), RXQUAL-FULL(0), RXLEV-SUB(28), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 11 dB: max 16 dB, RSSI[curr -82, avg -82, thresh -83..-77] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(33), RXQUAL-FULL(0), RXLEV-SUB(33), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 11 dB: max 16 dB, RSSI[curr -77, avg -77, thresh -83..-77] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(28), RXQUAL-FULL(0), RXLEV-SUB(28), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 11 dB: max 16 dB, RSSI[curr -82, avg -82, thresh -83..-77] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 16 dB: max 30 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Keeping DL attenuation at 16 dB: max 30 dB, RSSI[curr -80, avg -80, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(26), RXQUAL-FULL(0), RXLEV-SUB(26), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 16 dB => 14 dB:max 30 dB, RSSI[curr -84, avg -82, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(26), RXQUAL-FULL(0), RXLEV-SUB(26), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Lowering DL attenuation 14 dB => 11 dB:max 30 dB, RSSI[curr -84, avg -83, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(35), RXQUAL-FULL(0), RXLEV-SUB(35), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 11 dB => 12 dB:max 30 dB, RSSI[curr -75, avg -79, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
+(bts=0,trx=0,ts=0,ss=0) Rx DL Measurement Report: RXLEV-FULL(35), RXQUAL-FULL(0), RXLEV-SUB(35), RXQUAL-SUB(0), DTx is disabled => using FULL
+(bts=0,trx=0,ts=0,ss=0) Raising DL attenuation 12 dB => 14 dB:max 30 dB, RSSI[curr -75, avg -77, thresh -80..-80] dBm, RxQual[curr 0, avg 0, thresh 3..0]
diff --git a/tests/power/bs_power_loop_test.ok b/tests/power/bs_power_loop_test.ok
new file mode 100644
index 00000000..18a94ba7
--- /dev/null
+++ b/tests/power/bs_power_loop_test.ok
@@ -0,0 +1,360 @@
+Testing BS Power loop...
+
+Starting test case 'TC_fixed_mode'
+#00 exec_power_step() <- State (re)set (current 10 dB, max 20 dB)
+#01 exec_power_step() <- Dynamic power control is disabled
+#02 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(63), RXQUAL-FULL(0), RXLEV-SUB(63), RXQUAL-SUB(0)
+#02 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3f 3f 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#02 lchan_bs_pwr_ctrl() -> BS power reduction: 10 -> 10 (expected 10)
+#03 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(00), RXQUAL-FULL(7), RXLEV-SUB(00), RXQUAL-SUB(7)
+#03 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 00 00 7e 00 00 00 00 00 00 00 00 00 00 00 00 00
+#03 lchan_bs_pwr_ctrl() -> BS power reduction: 10 -> 10 (expected 10)
+#04 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#04 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#04 lchan_bs_pwr_ctrl() -> BS power reduction: 10 -> 10 (expected 10)
+#05 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(1), RXLEV-SUB(30), RXQUAL-SUB(1)
+#05 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 12 00 00 00 00 00 00 00 00 00 00 00 00 00
+#05 lchan_bs_pwr_ctrl() -> BS power reduction: 10 -> 10 (expected 10)
+#06 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(50), RXQUAL-FULL(1), RXLEV-SUB(50), RXQUAL-SUB(1)
+#06 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 32 32 12 00 00 00 00 00 00 00 00 00 00 00 00 00
+#06 lchan_bs_pwr_ctrl() -> BS power reduction: 10 -> 10 (expected 10)
+Test case verdict: SUCCESS
+
+Starting test case 'TC_rxlev_target'
+#00 exec_power_step() <- State (re)set (current 0 dB, max 20 dB)
+#01 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#01 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#01 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+#02 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#02 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#02 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+#03 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#03 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#03 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+#04 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#04 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#04 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+Test case verdict: SUCCESS
+
+Starting test case 'TC_rxlev_max_min'
+#00 exec_power_step() <- State (re)set (current 0 dB, max 20 dB)
+#01 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#01 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#01 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 2 (expected 2)
+#02 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#02 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#02 lchan_bs_pwr_ctrl() -> BS power reduction: 2 -> 4 (expected 4)
+#03 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#03 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#03 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 6 (expected 6)
+#04 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#04 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#04 lchan_bs_pwr_ctrl() -> BS power reduction: 6 -> 8 (expected 8)
+#05 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#05 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#05 lchan_bs_pwr_ctrl() -> BS power reduction: 8 -> 10 (expected 10)
+#06 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#06 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#06 lchan_bs_pwr_ctrl() -> BS power reduction: 10 -> 12 (expected 12)
+#07 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#07 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#07 lchan_bs_pwr_ctrl() -> BS power reduction: 12 -> 14 (expected 14)
+#08 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#08 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#08 lchan_bs_pwr_ctrl() -> BS power reduction: 14 -> 16 (expected 16)
+#09 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#09 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#09 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 18 (expected 18)
+#10 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#10 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#10 lchan_bs_pwr_ctrl() -> BS power reduction: 18 -> 20 (expected 20)
+#11 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#11 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#11 lchan_bs_pwr_ctrl() -> BS power reduction: 20 -> 20 (expected 20)
+#12 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#12 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#12 lchan_bs_pwr_ctrl() -> BS power reduction: 20 -> 20 (expected 20)
+#13 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#13 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#13 lchan_bs_pwr_ctrl() -> BS power reduction: 20 -> 16 (expected 16)
+#14 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#14 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#14 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 12 (expected 12)
+#15 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#15 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#15 lchan_bs_pwr_ctrl() -> BS power reduction: 12 -> 8 (expected 8)
+#16 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#16 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#16 lchan_bs_pwr_ctrl() -> BS power reduction: 8 -> 4 (expected 4)
+#17 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#17 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#17 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 0 (expected 0)
+#18 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#18 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#18 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+#19 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#19 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#19 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+Test case verdict: SUCCESS
+
+Starting test case 'TC_inc_red_step_size'
+#00 exec_power_step() <- State (re)set (current 0 dB, max 20 dB)
+#01 exec_power_step() <- Set step size: inc 6 dB, red 4 dB
+#02 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#02 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#02 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 4 (expected 4)
+#03 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#03 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#03 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 8 (expected 8)
+#04 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#04 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#04 lchan_bs_pwr_ctrl() -> BS power reduction: 8 -> 12 (expected 12)
+#05 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#05 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#05 lchan_bs_pwr_ctrl() -> BS power reduction: 12 -> 16 (expected 16)
+#06 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#06 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#06 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 20 (expected 20)
+#07 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#07 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#07 lchan_bs_pwr_ctrl() -> BS power reduction: 20 -> 20 (expected 20)
+#08 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#08 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#08 lchan_bs_pwr_ctrl() -> BS power reduction: 20 -> 14 (expected 14)
+#09 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#09 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#09 lchan_bs_pwr_ctrl() -> BS power reduction: 14 -> 8 (expected 8)
+#10 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#10 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#10 lchan_bs_pwr_ctrl() -> BS power reduction: 8 -> 2 (expected 2)
+#11 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#11 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#11 lchan_bs_pwr_ctrl() -> BS power reduction: 2 -> 0 (expected 0)
+#12 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#12 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#12 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+#13 exec_power_step() <- State (re)set (current 10 dB, max 20 dB)
+#14 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(31), RXQUAL-FULL(0), RXLEV-SUB(31), RXQUAL-SUB(0)
+#14 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1f 1f 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#14 lchan_bs_pwr_ctrl() -> BS power reduction: 10 -> 11 (expected 11)
+#15 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#15 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#15 lchan_bs_pwr_ctrl() -> BS power reduction: 11 -> 11 (expected 11)
+#16 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(32), RXQUAL-FULL(0), RXLEV-SUB(32), RXQUAL-SUB(0)
+#16 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 20 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#16 lchan_bs_pwr_ctrl() -> BS power reduction: 11 -> 13 (expected 13)
+#17 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#17 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#17 lchan_bs_pwr_ctrl() -> BS power reduction: 13 -> 13 (expected 13)
+#18 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(33), RXQUAL-FULL(0), RXLEV-SUB(33), RXQUAL-SUB(0)
+#18 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 21 21 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#18 lchan_bs_pwr_ctrl() -> BS power reduction: 13 -> 16 (expected 16)
+#19 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#19 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#19 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 16 (expected 16)
+#20 exec_power_step() <- State (re)set (current 10 dB, max 20 dB)
+#21 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(29), RXQUAL-FULL(0), RXLEV-SUB(29), RXQUAL-SUB(0)
+#21 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1d 1d 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#21 lchan_bs_pwr_ctrl() -> BS power reduction: 10 -> 9 (expected 9)
+#22 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#22 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#22 lchan_bs_pwr_ctrl() -> BS power reduction: 9 -> 9 (expected 9)
+#23 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(27), RXQUAL-FULL(0), RXLEV-SUB(27), RXQUAL-SUB(0)
+#23 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1b 1b 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#23 lchan_bs_pwr_ctrl() -> BS power reduction: 9 -> 6 (expected 6)
+#24 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#24 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#24 lchan_bs_pwr_ctrl() -> BS power reduction: 6 -> 6 (expected 6)
+#25 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(25), RXQUAL-FULL(0), RXLEV-SUB(25), RXQUAL-SUB(0)
+#25 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 19 19 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#25 lchan_bs_pwr_ctrl() -> BS power reduction: 6 -> 1 (expected 1)
+#26 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#26 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#26 lchan_bs_pwr_ctrl() -> BS power reduction: 1 -> 1 (expected 1)
+Test case verdict: SUCCESS
+
+Starting test case 'TC_dtxd_mode'
+#00 exec_power_step() <- State (re)set (current 0 dB, max 20 dB)
+#01 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#01 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#01 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+#02 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#02 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#02 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+#03 exec_power_step() <- Enable DTXd
+#04 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(00), RXQUAL-FULL(7), RXLEV-SUB(30), RXQUAL-SUB(0)
+#04 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 00 1e 70 00 00 00 00 00 00 00 00 00 00 00 00 00
+#04 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+#05 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(3), RXLEV-SUB(30), RXQUAL-SUB(0)
+#05 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 30 00 00 00 00 00 00 00 00 00 00 00 00 00
+#05 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+#06 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(63), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#06 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3f 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#06 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+Test case verdict: SUCCESS
+
+Starting test case 'TC_rxqual_ber'
+#00 exec_power_step() <- State (re)set (current 16 dB, max 20 dB)
+#01 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#01 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#01 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 16 (expected 16)
+#02 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#02 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#02 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 16 (expected 16)
+#03 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(1), RXLEV-SUB(30), RXQUAL-SUB(1)
+#03 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 12 00 00 00 00 00 00 00 00 00 00 00 00 00
+#03 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 16 (expected 16)
+#04 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(2), RXLEV-SUB(30), RXQUAL-SUB(2)
+#04 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 24 00 00 00 00 00 00 00 00 00 00 00 00 00
+#04 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 16 (expected 16)
+#05 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(3), RXLEV-SUB(30), RXQUAL-SUB(3)
+#05 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 36 00 00 00 00 00 00 00 00 00 00 00 00 00
+#05 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 16 (expected 16)
+#06 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(4), RXLEV-SUB(30), RXQUAL-SUB(4)
+#06 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 48 00 00 00 00 00 00 00 00 00 00 00 00 00
+#06 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 12 (expected 12)
+#07 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(34), RXQUAL-FULL(5), RXLEV-SUB(34), RXQUAL-SUB(5)
+#07 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 22 22 5a 00 00 00 00 00 00 00 00 00 00 00 00 00
+#07 lchan_bs_pwr_ctrl() -> BS power reduction: 12 -> 8 (expected 8)
+#08 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(38), RXQUAL-FULL(6), RXLEV-SUB(38), RXQUAL-SUB(6)
+#08 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 26 26 6c 00 00 00 00 00 00 00 00 00 00 00 00 00
+#08 lchan_bs_pwr_ctrl() -> BS power reduction: 8 -> 4 (expected 4)
+#09 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(42), RXQUAL-FULL(7), RXLEV-SUB(42), RXQUAL-SUB(7)
+#09 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 2a 2a 7e 00 00 00 00 00 00 00 00 00 00 00 00 00
+#09 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 0 (expected 0)
+#10 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(46), RXQUAL-FULL(7), RXLEV-SUB(46), RXQUAL-SUB(7)
+#10 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 2e 2e 7e 00 00 00 00 00 00 00 00 00 00 00 00 00
+#10 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+#11 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(46), RXQUAL-FULL(0), RXLEV-SUB(46), RXQUAL-SUB(0)
+#11 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 2e 2e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#11 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 2 (expected 2)
+#12 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(44), RXQUAL-FULL(0), RXLEV-SUB(44), RXQUAL-SUB(0)
+#12 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 2c 2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#12 lchan_bs_pwr_ctrl() -> BS power reduction: 2 -> 4 (expected 4)
+#13 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(42), RXQUAL-FULL(0), RXLEV-SUB(42), RXQUAL-SUB(0)
+#13 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 2a 2a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#13 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 6 (expected 6)
+#14 exec_power_step() <- State (re)set (current 0 dB, max 20 dB)
+#15 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(7), RXLEV-SUB(30), RXQUAL-SUB(7)
+#15 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 7e 00 00 00 00 00 00 00 00 00 00 00 00 00
+#15 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+#16 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(7), RXLEV-SUB(30), RXQUAL-SUB(7)
+#16 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 7e 00 00 00 00 00 00 00 00 00 00 00 00 00
+#16 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 0 (expected 0)
+Test case verdict: SUCCESS
+
+Starting test case 'TC_ctrl_interval'
+#00 exec_power_step() <- State (re)set (current 0 dB, max 20 dB)
+#01 exec_power_step() <- (Re)set power control interval: 0 -> 0
+#02 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#02 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#02 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 2 (expected 2)
+#03 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#03 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#03 lchan_bs_pwr_ctrl() -> BS power reduction: 2 -> 4 (expected 4)
+#04 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#04 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#04 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 6 (expected 6)
+#05 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#05 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#05 lchan_bs_pwr_ctrl() -> BS power reduction: 6 -> 8 (expected 8)
+#06 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#06 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#06 lchan_bs_pwr_ctrl() -> BS power reduction: 8 -> 4 (expected 4)
+#07 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#07 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#07 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 0 (expected 0)
+#08 exec_power_step() <- (Re)set power control interval: 0 -> 1
+#09 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#09 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#09 lchan_bs_pwr_ctrl() -> BS power reduction: 0 -> 2 (expected 2)
+#10 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#10 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#10 lchan_bs_pwr_ctrl() -> BS power reduction: 2 -> 2 (expected 2)
+#11 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#11 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#11 lchan_bs_pwr_ctrl() -> BS power reduction: 2 -> 4 (expected 4)
+#12 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#12 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#12 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 4 (expected 4)
+#13 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#13 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#13 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 6 (expected 6)
+#14 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#14 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#14 lchan_bs_pwr_ctrl() -> BS power reduction: 6 -> 6 (expected 6)
+#15 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#15 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#15 lchan_bs_pwr_ctrl() -> BS power reduction: 6 -> 8 (expected 8)
+#16 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(60), RXQUAL-FULL(0), RXLEV-SUB(60), RXQUAL-SUB(0)
+#16 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 3c 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#16 lchan_bs_pwr_ctrl() -> BS power reduction: 8 -> 8 (expected 8)
+#17 exec_power_step() <- (Re)set power control interval: 1 -> 2
+#18 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#18 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#18 lchan_bs_pwr_ctrl() -> BS power reduction: 8 -> 4 (expected 4)
+#19 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#19 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#19 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 4 (expected 4)
+#20 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#20 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#20 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 4 (expected 4)
+#21 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#21 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#21 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 4 (expected 4)
+#22 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(10), RXQUAL-FULL(0), RXLEV-SUB(10), RXQUAL-SUB(0)
+#22 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 0a 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#22 lchan_bs_pwr_ctrl() -> BS power reduction: 4 -> 0 (expected 0)
+Test case verdict: SUCCESS
+
+Starting test case 'TC_rxlev_hyst'
+#00 exec_power_step() <- State (re)set (current 12 dB, max 16 dB)
+#01 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(31), RXQUAL-FULL(0), RXLEV-SUB(31), RXQUAL-SUB(0)
+#01 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1f 1f 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#01 lchan_bs_pwr_ctrl() -> BS power reduction: 12 -> 13 (expected 13)
+#02 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(28), RXQUAL-FULL(0), RXLEV-SUB(28), RXQUAL-SUB(0)
+#02 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1c 1c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#02 lchan_bs_pwr_ctrl() -> BS power reduction: 13 -> 11 (expected 11)
+#03 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(33), RXQUAL-FULL(0), RXLEV-SUB(33), RXQUAL-SUB(0)
+#03 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 21 21 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#03 lchan_bs_pwr_ctrl() -> BS power reduction: 11 -> 13 (expected 13)
+#04 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(28), RXQUAL-FULL(0), RXLEV-SUB(28), RXQUAL-SUB(0)
+#04 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1c 1c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#04 lchan_bs_pwr_ctrl() -> BS power reduction: 13 -> 11 (expected 11)
+#05 exec_power_step() <- (Re)set RxLev params (thresh 27 .. 33, averaging is disabled)
+#06 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(31), RXQUAL-FULL(0), RXLEV-SUB(31), RXQUAL-SUB(0)
+#06 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1f 1f 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#06 lchan_bs_pwr_ctrl() -> BS power reduction: 11 -> 11 (expected 11)
+#07 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(28), RXQUAL-FULL(0), RXLEV-SUB(28), RXQUAL-SUB(0)
+#07 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1c 1c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#07 lchan_bs_pwr_ctrl() -> BS power reduction: 11 -> 11 (expected 11)
+#08 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(33), RXQUAL-FULL(0), RXLEV-SUB(33), RXQUAL-SUB(0)
+#08 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 21 21 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#08 lchan_bs_pwr_ctrl() -> BS power reduction: 11 -> 11 (expected 11)
+#09 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(28), RXQUAL-FULL(0), RXLEV-SUB(28), RXQUAL-SUB(0)
+#09 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1c 1c 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#09 lchan_bs_pwr_ctrl() -> BS power reduction: 11 -> 11 (expected 11)
+Test case verdict: SUCCESS
+
+Starting test case 'TC_rxlev_pf_ewma'
+#00 exec_power_step() <- State (re)set (current 16 dB, max 30 dB)
+#01 exec_power_step() <- (Re)set RxLev params (thresh 30 .. 30, averaging is enabled)
+#02 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#02 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#02 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 16 (expected 16)
+#03 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(30), RXQUAL-FULL(0), RXLEV-SUB(30), RXQUAL-SUB(0)
+#03 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1e 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#03 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 16 (expected 16)
+#04 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(26), RXQUAL-FULL(0), RXLEV-SUB(26), RXQUAL-SUB(0)
+#04 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1a 1a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#04 lchan_bs_pwr_ctrl() -> BS power reduction: 16 -> 14 (expected 14)
+#05 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(26), RXQUAL-FULL(0), RXLEV-SUB(26), RXQUAL-SUB(0)
+#05 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 1a 1a 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#05 lchan_bs_pwr_ctrl() -> BS power reduction: 14 -> 11 (expected 11)
+#06 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(35), RXQUAL-FULL(0), RXLEV-SUB(35), RXQUAL-SUB(0)
+#06 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 23 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#06 lchan_bs_pwr_ctrl() -> BS power reduction: 11 -> 12 (expected 12)
+#07 enc_meas_rep() -> Measurement Results (valid): RXLEV-FULL(35), RXQUAL-FULL(0), RXLEV-SUB(35), RXQUAL-SUB(0)
+#07 lchan_bs_pwr_ctrl() <- UL SACCH: 06 15 23 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#07 lchan_bs_pwr_ctrl() -> BS power reduction: 12 -> 14 (expected 14)
+Test case verdict: SUCCESS
diff --git a/tests/power/ms_power_loop_test.c b/tests/power/ms_power_loop_test.c
new file mode 100644
index 00000000..47df68e2
--- /dev/null
+++ b/tests/power/ms_power_loop_test.c
@@ -0,0 +1,433 @@
+/*
+ * (C) 2013,2014 by Holger Hans Peter Freyther
+ * Contributions by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
+ *
+ * All Rights Reserved
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <osmocom/core/talloc.h>
+#include <osmocom/core/application.h>
+
+#include <osmo-bts/bts.h>
+#include <osmo-bts/logging.h>
+#include <osmo-bts/l1sap.h>
+#include <osmo-bts/power_control.h>
+
+#include <stdio.h>
+
+#define PWR_TEST_RXLEV_TARGET_DBM -75
+#define PWR_TEST_RXLEV_TARGET \
+ dbm2rxlev(PWR_TEST_RXLEV_TARGET_DBM)
+
+static struct gsm_bts *g_bts = NULL;
+static struct gsm_bts_trx *g_trx = NULL;
+
+static void init_test(const char *name)
+{
+ if (g_trx != NULL)
+ talloc_free(g_trx);
+ if (g_bts != NULL)
+ talloc_free(g_bts);
+
+ g_bts = talloc_zero(tall_bts_ctx, struct gsm_bts);
+ OSMO_ASSERT(g_bts != NULL);
+
+ INIT_LLIST_HEAD(&g_bts->trx_list);
+ g_trx = gsm_bts_trx_alloc(g_bts);
+ OSMO_ASSERT(g_trx != NULL);
+
+ g_trx->ms_pwr_ctl_soft = true;
+
+ g_bts->band = GSM_BAND_1800;
+ g_bts->c0 = g_trx;
+
+ /* Init default MS power control parameters, enable dynamic power control */
+ struct gsm_power_ctrl_params *params = &g_trx->ts[0].lchan[0].ms_dpc_params;
+ g_trx->ts[0].lchan[0].ms_power_ctrl.dpc_params = params;
+ *params = power_ctrl_params_def;
+
+ /* Disable loop SACCH block skip by default: */
+ params->ctrl_interval = 0;
+
+ /* Disable RxLev pre-processing and hysteresis by default */
+ struct gsm_power_ctrl_meas_params *mp = &params->rxlev_meas;
+ mp->lower_thresh = mp->upper_thresh = PWR_TEST_RXLEV_TARGET;
+ mp->algo = GSM_PWR_CTRL_MEAS_AVG_ALGO_NONE;
+
+ printf("\nStarting test case '%s'\n", name);
+}
+
+static void apply_power_test_ext(struct gsm_lchan *lchan, uint8_t ms_pwr, int rxlev, int lqual_cb, int exp_ret, uint8_t exp_current)
+{
+ int ret;
+
+ ret = lchan_ms_pwr_ctrl(lchan, ms_pwr, rxlev, lqual_cb);
+
+ /* Keep the measurement counter updated */
+ lchan->meas.res_nr++;
+
+ printf("lchan_ms_pwr_ctrl(RxLvl=%d dBm) returns %d (expected %d)\n",
+ rxlev, ret, exp_ret);
+ printf("\tMS current power %u -> %u (expected %u)\n",
+ ms_pwr, lchan->ms_power_ctrl.current, exp_current);
+}
+
+static inline void apply_power_test(struct gsm_lchan *lchan, int rxlev, int lqual_cb, int exp_ret, uint8_t exp_current)
+{
+ apply_power_test_ext(lchan, lchan->ms_power_ctrl.current, rxlev, lqual_cb, exp_ret, exp_current);
+}
+
+static void test_power_loop(void)
+{
+ struct gsm_lchan *lchan;
+ const struct gsm_power_ctrl_params *params;
+ int16_t good_lqual;
+
+ init_test(__func__);
+ lchan = &g_trx->ts[0].lchan[0];
+ params = lchan->ms_power_ctrl.dpc_params;
+ lchan->type = GSM_LCHAN_SDCCH;
+ good_lqual = (params->ci_sdcch_meas.lower_thresh + 2) * 10;
+
+ lchan->ms_power_ctrl.current = ms_pwr_ctl_lvl(GSM_BAND_1800, 0);
+ OSMO_ASSERT(lchan->ms_power_ctrl.current == 15);
+ lchan->ms_power_ctrl.max = ms_pwr_ctl_lvl(GSM_BAND_1800, 26);
+ OSMO_ASSERT(lchan->ms_power_ctrl.max == 2);
+
+ /* Simply clamping */
+ apply_power_test(lchan, -60, good_lqual, 0, 15);
+
+ /*
+ * Now 15 dB too little and we should power it up. Could be a
+ * power level of 7 or 8 for 15 dBm. However, since we limit peace at
+ * which we change values, expect several steps of MS_RAISE_MAX_DB/2 levels:
+ */
+ apply_power_test(lchan, -90, good_lqual, 1, 13);
+ apply_power_test(lchan, -90, good_lqual, 1, 11);
+ apply_power_test(lchan, -90, good_lqual, 1, 9);
+ apply_power_test(lchan, -90, good_lqual, 1, 7);
+ apply_power_test(lchan, -90, good_lqual, 1, 5);
+
+ /* Check good RSSI value keeps it at same power level: */
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM, good_lqual, 0, 5);
+
+ apply_power_test(lchan, -90, good_lqual, 1, 3);
+ apply_power_test(lchan, -90, good_lqual, 1, 2); /* .max is pwr lvl 2 */
+ apply_power_test(lchan, -90, good_lqual, 0, 2); /* .max is pwr lvl 2 */
+
+ lchan->ms_power_ctrl.max = ms_pwr_ctl_lvl(GSM_BAND_1800, 30);
+ OSMO_ASSERT(lchan->ms_power_ctrl.max == 0);
+ apply_power_test(lchan, -90, good_lqual, 1, 0); /* .max is pwr lvl 0 */
+ apply_power_test(lchan, -90, good_lqual, 0, 0); /* .max is pwr lvl 0 */
+
+ lchan->ms_power_ctrl.max = ms_pwr_ctl_lvl(GSM_BAND_1800, 36);
+ OSMO_ASSERT(lchan->ms_power_ctrl.max == 29);
+ apply_power_test(lchan, -90, good_lqual, 1, 30);
+ apply_power_test(lchan, -90, good_lqual, 1, 29);
+ apply_power_test(lchan, -90, good_lqual, 0, 29);
+
+ /* Check good RSSI value keeps it at same power level: */
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM, good_lqual, 0, 29);
+
+ /* Now go down, steps are double size in this direction: */
+ apply_power_test(lchan, -45, good_lqual, 1, 1);
+ apply_power_test(lchan, -45, good_lqual, 1, 5);
+ apply_power_test(lchan, -45, good_lqual, 1, 9);
+
+ /* Go down only one level down and up: */
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM + 2, good_lqual, 1, 10);
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM - 2, good_lqual, 1, 9);
+
+ /* Check if BSC requesting a low max power is applied after loop calculation: */
+ lchan->ms_power_ctrl.max = ms_pwr_ctl_lvl(GSM_BAND_1800, 2);
+ OSMO_ASSERT(lchan->ms_power_ctrl.max == 14);
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM + 2, good_lqual, 1, 14);
+ /* Set back a more normal max: */
+ lchan->ms_power_ctrl.max = ms_pwr_ctl_lvl(GSM_BAND_1800, 30);
+ OSMO_ASSERT(lchan->ms_power_ctrl.max == 0);
+
+ /* Disable dynamic power control and jump down */
+ lchan->ms_power_ctrl.dpc_params = NULL;
+ apply_power_test(lchan, -60, good_lqual, 0, 14);
+
+ /* Enable and leave it again */
+ lchan->ms_power_ctrl.dpc_params = &lchan->ms_dpc_params;
+ apply_power_test(lchan, -40, good_lqual, 1, 15);
+}
+
+static void test_pf_algo_ewma(void)
+{
+ struct gsm_lchan *lchan;
+ const struct gsm_power_ctrl_params *params;
+ int16_t good_lqual;
+ const int *avg100;
+
+ init_test(__func__);
+ lchan = &g_trx->ts[0].lchan[0];
+ lchan->type = GSM_LCHAN_SDCCH;
+ params = lchan->ms_power_ctrl.dpc_params;
+ good_lqual = (params->ci_sdcch_meas.lower_thresh + 2) * 10;
+ avg100 = &lchan->ms_power_ctrl.rxlev_meas_proc.ewma.Avg100;
+
+ struct gsm_power_ctrl_meas_params *mp = &lchan->ms_dpc_params.rxlev_meas;
+ mp->algo = GSM_PWR_CTRL_MEAS_AVG_ALGO_OSMO_EWMA;
+ mp->ewma.alpha = 20; /* 80% smoothing */
+
+ lchan->ms_power_ctrl.current = ms_pwr_ctl_lvl(GSM_BAND_1800, 0);
+ OSMO_ASSERT(lchan->ms_power_ctrl.current == 15);
+ lchan->ms_power_ctrl.max = ms_pwr_ctl_lvl(GSM_BAND_1800, 26);
+ OSMO_ASSERT(lchan->ms_power_ctrl.max == 2);
+
+#define CHECK_RXLEV_AVG100(exp) \
+ printf("\tAvg[t] is RxLev %2.2f (expected %2.2f)\n", \
+ ((float) *avg100) / 100, exp);
+
+ /* UL RSSI remains constant => no UL power change */
+ apply_power_test(lchan, -75, good_lqual, 0, 15);
+ CHECK_RXLEV_AVG100((float)dbm2rxlev(-75)); /* RXLEV 35 */
+
+ /* Avg[t] = (0.2 * 20) + (0.8 * 35) = RXLEV 32, (-78 dBm) */
+ apply_power_test(lchan, -90, good_lqual, 1, 13); /* -90 dBm = RXLEV 20 */
+ CHECK_RXLEV_AVG100(32.00);
+
+ /* Avg[t] = (0.2 * 20) + (0.8 * 32) = RXLEV 29.6 (-80.4 dBm) */
+ apply_power_test(lchan, -90, good_lqual, 1, 11); /* -90 dBm = RXLEV 20 */
+ CHECK_RXLEV_AVG100(29.60);
+
+ /* Avg[t] = (0.2 * 40) + (0.8 * 29.60) = RXLEV 31.68 (-78.32 dBm),
+ * but due to up-/down-scaling artefacts we get the following:
+ * Avg100[t] = Avg100[t - 1] + A * (Pwr - Avg[t] / 100)
+ * Avg100[t] = 2960 + 20 * (40 - ((2960+50) / 100)) <- HERE we lose 0.1: (2960+50) / 100) = 30.1
+ * Avg100[t] = 2960 + 20 * (40 - 30) <- HERE we lose 20*0.1 = 2.0! (upscaled, hence we lose finally 2.0/100=0.2)
+ * Avg[t] = (3160) / 100 = 31.60*/
+ apply_power_test(lchan, -70, good_lqual, 1, 9); /* RXLEV 40 */
+ CHECK_RXLEV_AVG100(31.60);
+
+ mp->ewma.alpha = 70; /* 30% smoothing */
+ lchan->ms_power_ctrl.current = 15;
+ lchan->ms_power_ctrl.rxlev_meas_proc = \
+ (struct gsm_power_ctrl_meas_proc_state) { 0 };
+
+ /* This is the first sample, the filter outputs it as-is */
+ apply_power_test(lchan, -50, good_lqual, 0, 15); /* RXLEV 60 */
+ CHECK_RXLEV_AVG100((float)dbm2rxlev(-50));
+
+ /* Avg[t] = (0.7 * 60) + (0.3 * 60) = RXLEV 60 (-50.0 dBm) */
+ apply_power_test(lchan, -50, good_lqual, 0, 15);
+ CHECK_RXLEV_AVG100((float)dbm2rxlev(-50));
+
+ /* Simulate SACCH block loss (-110 dBm):
+ * Avg[t] = (0.7 * 0) + (0.3 * 60) = RXLEV 18.0 (-92.0 dBm) */
+ apply_power_test(lchan, -110, good_lqual, 1, 13); /* RXLEV 0 */
+ CHECK_RXLEV_AVG100(18.0);
+}
+
+static void test_power_hysteresis(void)
+{
+ struct gsm_lchan *lchan;
+ const struct gsm_power_ctrl_params *params;
+ int16_t good_lqual;
+
+ init_test(__func__);
+ lchan = &g_trx->ts[0].lchan[0];
+ lchan->type = GSM_LCHAN_SDCCH;
+ params = lchan->ms_power_ctrl.dpc_params;
+ good_lqual = (params->ci_sdcch_meas.lower_thresh + 2) * 10;
+
+ /* Tolerate power deviations in range -80 .. -70 */
+ lchan->ms_dpc_params.rxlev_meas.lower_thresh = 30;
+ lchan->ms_dpc_params.rxlev_meas.upper_thresh = 40;
+
+ lchan->ms_power_ctrl.current = ms_pwr_ctl_lvl(GSM_BAND_1800, 0);
+ OSMO_ASSERT(lchan->ms_power_ctrl.current == 15);
+ lchan->ms_power_ctrl.max = ms_pwr_ctl_lvl(GSM_BAND_1800, 26);
+ OSMO_ASSERT(lchan->ms_power_ctrl.max == 2);
+
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM, good_lqual, 0, 15);
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM + 3, good_lqual, 0, 15);
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM - 3, good_lqual, 0, 15);
+
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM, good_lqual, 0, 15);
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM + 5, good_lqual, 0, 15);
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM - 5, good_lqual, 0, 15);
+
+ apply_power_test(lchan, PWR_TEST_RXLEV_TARGET_DBM - 10, good_lqual, 1, 13);
+}
+
+static void test_power_ctrl_interval(void)
+{
+ struct gsm_lchan *lchan;
+ const struct gsm_power_ctrl_params *params;
+ int16_t good_lqual;
+ unsigned int i, j;
+
+ init_test(__func__);
+ lchan = &g_trx->ts[0].lchan[0];
+ lchan->type = GSM_LCHAN_SDCCH;
+ params = lchan->ms_power_ctrl.dpc_params;
+ good_lqual = (params->ci_sdcch_meas.lower_thresh + 2) * 10;
+
+ lchan->ms_power_ctrl.max = ms_pwr_ctl_lvl(GSM_BAND_1800, 26);
+ OSMO_ASSERT(lchan->ms_power_ctrl.max == 2);
+
+ const int script[][8][4] = {
+ { /* P_Con_INTERVAL=0 (480 ms) */
+ /* { UL RxLev, expected rc, expected Tx power level } */
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 13 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 11 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 9 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 7 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 5 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 3 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 2 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 2 },
+ },
+ { /* P_Con_INTERVAL=1 (960 ms) */
+ /* { UL RxLev, expected rc, expected Tx power level } */
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 13 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 0, 13 }, /* skipped */
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 11 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 0, 11 }, /* skipped */
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 9 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 0, 9 }, /* skipped */
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 7 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 0, 7 }, /* skipped */
+ },
+ { /* P_Con_INTERVAL=2 (1920 ms) */
+ /* { UL RxLev, expected rc, expected Tx power level } */
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 13 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 0, 13 }, /* skipped */
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 0, 13 }, /* skipped */
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 0, 13 }, /* skipped */
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 1, 11 },
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 0, 11 }, /* skipped */
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 0, 11 }, /* skipped */
+ { PWR_TEST_RXLEV_TARGET_DBM - 15, good_lqual, 0, 11 }, /* skipped */
+ },
+ };
+
+ for (i = 0; i < ARRAY_SIZE(script); i++) {
+ lchan->ms_power_ctrl.current = ms_pwr_ctl_lvl(GSM_BAND_1800, 0);
+ OSMO_ASSERT(lchan->ms_power_ctrl.current == 15);
+
+ /* Set the corresponding power control interval */
+ printf("%s(): power control interval is now %u\n", __func__, i);
+ lchan->ms_dpc_params.ctrl_interval = i;
+
+ for (j = 0; j < ARRAY_SIZE(script[i]); j++) {
+ apply_power_test(lchan, script[i][j][0], /* UL RxLev */
+ script[i][j][1], /* UL C/I */
+ script[i][j][2], /* expected rc */
+ script[i][j][3]); /* expected Tx power level */
+ }
+
+ printf("\n");
+ }
+}
+
+static void test_power_loop_ci(void)
+{
+ struct gsm_lchan *lchan;
+ const struct gsm_power_ctrl_params *params;
+ int16_t good_lqual, too_low_lqual, too_high_lqual;
+
+ init_test(__func__);
+ lchan = &g_trx->ts[0].lchan[0];
+ params = lchan->ms_power_ctrl.dpc_params;
+ lchan->type = GSM_LCHAN_SDCCH;
+ good_lqual = (params->ci_sdcch_meas.lower_thresh + 2) * 10;
+ too_low_lqual = (params->ci_sdcch_meas.lower_thresh - 1) * 10;
+ too_high_lqual = (params->ci_sdcch_meas.upper_thresh + 1) * 10;
+
+ lchan->ms_power_ctrl.current = ms_pwr_ctl_lvl(GSM_BAND_1800, 0);
+ OSMO_ASSERT(lchan->ms_power_ctrl.current == 15);
+ lchan->ms_power_ctrl.max = ms_pwr_ctl_lvl(GSM_BAND_1800, 26);
+ OSMO_ASSERT(lchan->ms_power_ctrl.max == 2);
+
+ /* Simply clamping */
+ apply_power_test(lchan, -60, good_lqual, 0, 15);
+
+ /* Now UL C/I is too bad as well as RSSI: */
+ apply_power_test(lchan, -100, too_low_lqual, 1, 13);
+ apply_power_test(lchan, -100, too_low_lqual, 1, 11);
+
+ /* Now UL C/I is good again while RSSI is good: */
+ apply_power_test(lchan, -60, good_lqual, 1, 12);
+ apply_power_test(lchan, -60, too_high_lqual, 1, 13);
+
+ /* Now UL C/I is good while RSSI is bad, C/I mandates: */
+ apply_power_test(lchan, -100, good_lqual, 1, 11);
+ apply_power_test(lchan, -100, too_high_lqual, 1, 12);
+
+ /* Now UL C/I is bad again while RSSI is good, C/I mandates: */
+ apply_power_test(lchan, -60, good_lqual, 1, 13);
+ apply_power_test(lchan, -60, too_high_lqual, 1, 14);
+}
+
+/* Test whether ping pong between requested MS Power Level and announced MS
+ * Power level occurs, oscillating between considered good levels all the time:
+ * FIXME: Current code shows there's an issue with oscillating values. */
+static void test_good_threshold_convergence(void)
+{
+ struct gsm_lchan *lchan;
+ const struct gsm_power_ctrl_params *params;
+ int16_t good_lqual, good_rxlev;
+
+ init_test(__func__);
+ lchan = &g_trx->ts[0].lchan[0];
+ params = lchan->ms_power_ctrl.dpc_params;
+ lchan->ms_dpc_params.rxlev_meas.upper_thresh = 37;
+ lchan->ms_dpc_params.rxlev_meas.lower_thresh = 30;
+ lchan->type = GSM_LCHAN_SDCCH;
+ good_lqual = (params->ci_sdcch_meas.lower_thresh + 2) * 10;
+ good_rxlev = rxlev2dbm(params->rxlev_meas.lower_thresh + 2);
+
+ lchan->ms_power_ctrl.current = 10;
+ lchan->ms_power_ctrl.max = 2;
+
+ apply_power_test_ext(lchan, 9, good_rxlev, good_lqual, 0, 10);
+ apply_power_test_ext(lchan, 10, good_rxlev, good_lqual, 0, 10);
+ apply_power_test_ext(lchan, 9, good_rxlev, good_lqual, 0, 10);
+ apply_power_test_ext(lchan, 10, good_rxlev, good_lqual, 0, 10);
+ apply_power_test_ext(lchan, 9, good_rxlev, good_lqual, 0, 10);
+}
+
+int main(int argc, char **argv)
+{
+ printf("Testing power loop...\n");
+
+ tall_bts_ctx = talloc_named_const(NULL, 1, "OsmoBTS context");
+ msgb_talloc_ctx_init(tall_bts_ctx, 0);
+
+ osmo_init_logging2(tall_bts_ctx, &bts_log_info);
+ osmo_stderr_target->categories[DLOOP].loglevel = LOGL_DEBUG;
+ osmo_stderr_target->categories[DL1C].loglevel = LOGL_DEBUG;
+ log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_NONE);
+ log_set_use_color(osmo_stderr_target, 0);
+ log_set_print_category(osmo_stderr_target, 0);
+ log_set_print_category_hex(osmo_stderr_target, 0);
+
+ test_power_loop();
+ test_pf_algo_ewma();
+ test_power_hysteresis();
+ test_power_ctrl_interval();
+ test_power_loop_ci();
+ test_good_threshold_convergence();
+
+ printf("Power loop test OK\n");
+
+ return 0;
+}
diff --git a/tests/power/ms_power_loop_test.err b/tests/power/ms_power_loop_test.err
new file mode 100644
index 00000000..07d90691
--- /dev/null
+++ b/tests/power/ms_power_loop_test.err
@@ -0,0 +1,65 @@
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 15 (0 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -60, avg -60, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 15 (0 dBm) => 13 (4 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 13 (4 dBm) => 11 (8 dBm): ms-pwr-lvl[curr 13, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 11 (8 dBm) => 9 (12 dBm): ms-pwr-lvl[curr 11, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 9 (12 dBm) => 7 (16 dBm): ms-pwr-lvl[curr 9, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 7 (16 dBm) => 5 (20 dBm): ms-pwr-lvl[curr 7, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 5 (20 dBm): ms-pwr-lvl[curr 5, max 2], RSSI[curr -75, avg -75, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 5 (20 dBm) => 3 (24 dBm): ms-pwr-lvl[curr 5, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 3 (24 dBm) => 2 (26 dBm): ms-pwr-lvl[curr 3, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 2 (26 dBm): ms-pwr-lvl[curr 2, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 2 (26 dBm) => 0 (30 dBm): ms-pwr-lvl[curr 2, max 0], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 0 (30 dBm): ms-pwr-lvl[curr 0, max 0], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 0 (30 dBm) => 30 (34 dBm): ms-pwr-lvl[curr 0, max 29], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 30 (34 dBm) => 29 (36 dBm): ms-pwr-lvl[curr 30, max 29], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 29 (36 dBm): ms-pwr-lvl[curr 29, max 29], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 29 (36 dBm): ms-pwr-lvl[curr 29, max 29], RSSI[curr -75, avg -75, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Lowering MS power control level 29 (36 dBm) => 30 (34 dBm): ms-pwr-lvl[curr 29, max 29], RSSI[curr -45, avg -47, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Lowering MS power control level 30 (34 dBm) => 31 (32 dBm): ms-pwr-lvl[curr 30, max 29], RSSI[curr -45, avg -47, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Lowering MS power control level 31 (32 dBm) => 0 (30 dBm): ms-pwr-lvl[curr 31, max 29], RSSI[curr -45, avg -47, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Lowering MS power control level 0 (30 dBm) => 1 (28 dBm): ms-pwr-lvl[curr 0, max 29], RSSI[curr -73, avg -73, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 1 (28 dBm) => 0 (30 dBm): ms-pwr-lvl[curr 1, max 29], RSSI[curr -77, avg -77, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Lowering MS power control level 0 (30 dBm) => 14 (2 dBm): ms-pwr-lvl[curr 0, max 14], RSSI[curr -73, avg -73, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Lowering MS power control level 14 (2 dBm) => 15 (0 dBm): ms-pwr-lvl[curr 14, max 0], RSSI[curr -40, avg -47, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 15 (0 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -75, avg -75, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 15 (0 dBm) => 13 (3 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -90, avg -78, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 13 (4 dBm) => 11 (8 dBm): ms-pwr-lvl[curr 13, max 2], RSSI[curr -90, avg -80, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 11 (8 dBm) => 9 (11 dBm): ms-pwr-lvl[curr 11, max 2], RSSI[curr -70, avg -78, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 15 (0 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -50, avg -50, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 15 (0 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -50, avg -50, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 15 (0 dBm) => 13 (4 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -110, avg -92, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 15 (0 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -75, avg -75, thresh -80..-70] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 15 (0 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -72, avg -72, thresh -80..-70] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 15 (0 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -78, avg -78, thresh -80..-70] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 15 (0 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -75, avg -75, thresh -80..-70] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 15 (0 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -70, avg -70, thresh -80..-70] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 15 (0 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -80, avg -80, thresh -80..-70] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 15 (0 dBm) => 13 (4 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -85, avg -85, thresh -80..-70] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 15 (0 dBm) => 13 (4 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 13 (4 dBm) => 11 (8 dBm): ms-pwr-lvl[curr 13, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 11 (8 dBm) => 9 (12 dBm): ms-pwr-lvl[curr 11, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 9 (12 dBm) => 7 (16 dBm): ms-pwr-lvl[curr 9, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 7 (16 dBm) => 5 (20 dBm): ms-pwr-lvl[curr 7, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 5 (20 dBm) => 3 (24 dBm): ms-pwr-lvl[curr 5, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 3 (24 dBm) => 2 (26 dBm): ms-pwr-lvl[curr 3, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 2 (26 dBm): ms-pwr-lvl[curr 2, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 15 (0 dBm) => 13 (4 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 13 (4 dBm) => 11 (8 dBm): ms-pwr-lvl[curr 13, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 11 (8 dBm) => 9 (12 dBm): ms-pwr-lvl[curr 11, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 9 (12 dBm) => 7 (16 dBm): ms-pwr-lvl[curr 9, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 15 (0 dBm) => 13 (4 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 13 (4 dBm) => 11 (8 dBm): ms-pwr-lvl[curr 13, max 2], RSSI[curr -90, avg -90, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 15 (0 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -60, avg -60, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 15 (0 dBm) => 13 (4 dBm): ms-pwr-lvl[curr 15, max 2], RSSI[curr -100, avg -100, thresh -75..-75] dBm, C/I[curr 11, avg 11, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 13 (4 dBm) => 11 (8 dBm): ms-pwr-lvl[curr 13, max 2], RSSI[curr -100, avg -100, thresh -75..-75] dBm, C/I[curr 11, avg 11, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Lowering MS power control level 11 (8 dBm) => 12 (6 dBm): ms-pwr-lvl[curr 11, max 2], RSSI[curr -60, avg -60, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Lowering MS power control level 12 (6 dBm) => 13 (4 dBm): ms-pwr-lvl[curr 12, max 2], RSSI[curr -60, avg -60, thresh -75..-75] dBm, C/I[curr 17, avg 17, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Raising MS power control level 13 (4 dBm) => 11 (8 dBm): ms-pwr-lvl[curr 13, max 2], RSSI[curr -100, avg -100, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Lowering MS power control level 11 (8 dBm) => 12 (6 dBm): ms-pwr-lvl[curr 11, max 2], RSSI[curr -100, avg -100, thresh -75..-75] dBm, C/I[curr 17, avg 17, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Lowering MS power control level 12 (6 dBm) => 13 (4 dBm): ms-pwr-lvl[curr 12, max 2], RSSI[curr -60, avg -60, thresh -75..-75] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Lowering MS power control level 13 (4 dBm) => 14 (2 dBm): ms-pwr-lvl[curr 13, max 2], RSSI[curr -60, avg -60, thresh -75..-75] dBm, C/I[curr 17, avg 17, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 9 (12 dBm): ms-pwr-lvl[curr 9, max 2], RSSI[curr -78, avg -78, thresh -80..-73] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 10 (10 dBm): ms-pwr-lvl[curr 10, max 2], RSSI[curr -78, avg -78, thresh -80..-73] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 9 (12 dBm): ms-pwr-lvl[curr 9, max 2], RSSI[curr -78, avg -78, thresh -80..-73] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 10 (10 dBm): ms-pwr-lvl[curr 10, max 2], RSSI[curr -78, avg -78, thresh -80..-73] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
+(bts=0,trx=0,ts=0,ss=0) Keeping MS power at control level 9 (12 dBm): ms-pwr-lvl[curr 9, max 2], RSSI[curr -78, avg -78, thresh -80..-73] dBm, C/I[curr 14, avg 14, thresh 12..16] dB
diff --git a/tests/power/ms_power_loop_test.ok b/tests/power/ms_power_loop_test.ok
new file mode 100644
index 00000000..09e19ad4
--- /dev/null
+++ b/tests/power/ms_power_loop_test.ok
@@ -0,0 +1,179 @@
+Testing power loop...
+
+Starting test case 'test_power_loop'
+lchan_ms_pwr_ctrl(RxLvl=-60 dBm) returns 0 (expected 0)
+ MS current power 15 -> 15 (expected 15)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 15 -> 13 (expected 13)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 13 -> 11 (expected 11)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 11 -> 9 (expected 9)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 9 -> 7 (expected 7)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 7 -> 5 (expected 5)
+lchan_ms_pwr_ctrl(RxLvl=-75 dBm) returns 0 (expected 0)
+ MS current power 5 -> 5 (expected 5)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 5 -> 3 (expected 3)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 3 -> 2 (expected 2)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 2 -> 2 (expected 2)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 2 -> 0 (expected 0)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 0 -> 0 (expected 0)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 0 -> 30 (expected 30)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 30 -> 29 (expected 29)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 29 -> 29 (expected 29)
+lchan_ms_pwr_ctrl(RxLvl=-75 dBm) returns 0 (expected 0)
+ MS current power 29 -> 29 (expected 29)
+lchan_ms_pwr_ctrl(RxLvl=-45 dBm) returns 1 (expected 1)
+ MS current power 29 -> 30 (expected 1)
+lchan_ms_pwr_ctrl(RxLvl=-45 dBm) returns 1 (expected 1)
+ MS current power 30 -> 31 (expected 5)
+lchan_ms_pwr_ctrl(RxLvl=-45 dBm) returns 1 (expected 1)
+ MS current power 31 -> 0 (expected 9)
+lchan_ms_pwr_ctrl(RxLvl=-73 dBm) returns 1 (expected 1)
+ MS current power 0 -> 1 (expected 10)
+lchan_ms_pwr_ctrl(RxLvl=-77 dBm) returns 1 (expected 1)
+ MS current power 1 -> 0 (expected 9)
+lchan_ms_pwr_ctrl(RxLvl=-73 dBm) returns 1 (expected 1)
+ MS current power 0 -> 14 (expected 14)
+lchan_ms_pwr_ctrl(RxLvl=-60 dBm) returns 0 (expected 0)
+ MS current power 14 -> 14 (expected 14)
+lchan_ms_pwr_ctrl(RxLvl=-40 dBm) returns 1 (expected 1)
+ MS current power 14 -> 15 (expected 15)
+
+Starting test case 'test_pf_algo_ewma'
+lchan_ms_pwr_ctrl(RxLvl=-75 dBm) returns 0 (expected 0)
+ MS current power 15 -> 15 (expected 15)
+ Avg[t] is RxLev 35.00 (expected 35.00)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 15 -> 13 (expected 13)
+ Avg[t] is RxLev 32.00 (expected 32.00)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 13 -> 11 (expected 11)
+ Avg[t] is RxLev 29.60 (expected 29.60)
+lchan_ms_pwr_ctrl(RxLvl=-70 dBm) returns 1 (expected 1)
+ MS current power 11 -> 9 (expected 9)
+ Avg[t] is RxLev 31.60 (expected 31.60)
+lchan_ms_pwr_ctrl(RxLvl=-50 dBm) returns 0 (expected 0)
+ MS current power 15 -> 15 (expected 15)
+ Avg[t] is RxLev 60.00 (expected 60.00)
+lchan_ms_pwr_ctrl(RxLvl=-50 dBm) returns 0 (expected 0)
+ MS current power 15 -> 15 (expected 15)
+ Avg[t] is RxLev 60.00 (expected 60.00)
+lchan_ms_pwr_ctrl(RxLvl=-110 dBm) returns 1 (expected 1)
+ MS current power 15 -> 13 (expected 13)
+ Avg[t] is RxLev 18.00 (expected 18.00)
+
+Starting test case 'test_power_hysteresis'
+lchan_ms_pwr_ctrl(RxLvl=-75 dBm) returns 0 (expected 0)
+ MS current power 15 -> 15 (expected 15)
+lchan_ms_pwr_ctrl(RxLvl=-72 dBm) returns 0 (expected 0)
+ MS current power 15 -> 15 (expected 15)
+lchan_ms_pwr_ctrl(RxLvl=-78 dBm) returns 0 (expected 0)
+ MS current power 15 -> 15 (expected 15)
+lchan_ms_pwr_ctrl(RxLvl=-75 dBm) returns 0 (expected 0)
+ MS current power 15 -> 15 (expected 15)
+lchan_ms_pwr_ctrl(RxLvl=-70 dBm) returns 0 (expected 0)
+ MS current power 15 -> 15 (expected 15)
+lchan_ms_pwr_ctrl(RxLvl=-80 dBm) returns 0 (expected 0)
+ MS current power 15 -> 15 (expected 15)
+lchan_ms_pwr_ctrl(RxLvl=-85 dBm) returns 1 (expected 1)
+ MS current power 15 -> 13 (expected 13)
+
+Starting test case 'test_power_ctrl_interval'
+test_power_ctrl_interval(): power control interval is now 0
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 15 -> 13 (expected 13)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 13 -> 11 (expected 11)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 11 -> 9 (expected 9)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 9 -> 7 (expected 7)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 7 -> 5 (expected 5)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 5 -> 3 (expected 3)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 3 -> 2 (expected 2)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 1)
+ MS current power 2 -> 2 (expected 2)
+
+test_power_ctrl_interval(): power control interval is now 1
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 15 -> 13 (expected 13)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 13 -> 13 (expected 13)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 13 -> 11 (expected 11)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 11 -> 11 (expected 11)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 11 -> 9 (expected 9)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 9 -> 9 (expected 9)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 9 -> 7 (expected 7)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 7 -> 7 (expected 7)
+
+test_power_ctrl_interval(): power control interval is now 2
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 15 -> 13 (expected 13)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 13 -> 13 (expected 13)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 13 -> 13 (expected 13)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 13 -> 13 (expected 13)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 1 (expected 1)
+ MS current power 13 -> 11 (expected 11)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 11 -> 11 (expected 11)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 11 -> 11 (expected 11)
+lchan_ms_pwr_ctrl(RxLvl=-90 dBm) returns 0 (expected 0)
+ MS current power 11 -> 11 (expected 11)
+
+
+Starting test case 'test_power_loop_ci'
+lchan_ms_pwr_ctrl(RxLvl=-60 dBm) returns 0 (expected 0)
+ MS current power 15 -> 15 (expected 15)
+lchan_ms_pwr_ctrl(RxLvl=-100 dBm) returns 1 (expected 1)
+ MS current power 15 -> 13 (expected 13)
+lchan_ms_pwr_ctrl(RxLvl=-100 dBm) returns 1 (expected 1)
+ MS current power 13 -> 11 (expected 11)
+lchan_ms_pwr_ctrl(RxLvl=-60 dBm) returns 1 (expected 1)
+ MS current power 11 -> 12 (expected 12)
+lchan_ms_pwr_ctrl(RxLvl=-60 dBm) returns 1 (expected 1)
+ MS current power 12 -> 13 (expected 13)
+lchan_ms_pwr_ctrl(RxLvl=-100 dBm) returns 1 (expected 1)
+ MS current power 13 -> 11 (expected 11)
+lchan_ms_pwr_ctrl(RxLvl=-100 dBm) returns 1 (expected 1)
+ MS current power 11 -> 12 (expected 12)
+lchan_ms_pwr_ctrl(RxLvl=-60 dBm) returns 1 (expected 1)
+ MS current power 12 -> 13 (expected 13)
+lchan_ms_pwr_ctrl(RxLvl=-60 dBm) returns 1 (expected 1)
+ MS current power 13 -> 14 (expected 14)
+
+Starting test case 'test_good_threshold_convergence'
+lchan_ms_pwr_ctrl(RxLvl=-78 dBm) returns 0 (expected 0)
+ MS current power 9 -> 10 (expected 10)
+lchan_ms_pwr_ctrl(RxLvl=-78 dBm) returns 0 (expected 0)
+ MS current power 10 -> 10 (expected 10)
+lchan_ms_pwr_ctrl(RxLvl=-78 dBm) returns 0 (expected 0)
+ MS current power 9 -> 10 (expected 10)
+lchan_ms_pwr_ctrl(RxLvl=-78 dBm) returns 0 (expected 0)
+ MS current power 10 -> 10 (expected 10)
+lchan_ms_pwr_ctrl(RxLvl=-78 dBm) returns 0 (expected 0)
+ MS current power 9 -> 10 (expected 10)
+Power loop test OK
diff --git a/tests/power/power_test.c b/tests/power/power_test.c
deleted file mode 100644
index a46a430c..00000000
--- a/tests/power/power_test.c
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * (C) 2013,2014 by Holger Hans Peter Freyther
- *
- * All Rights Reserved
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include <osmo-bts/bts.h>
-#include <osmo-bts/l1sap.h>
-#include <osmo-bts/power_control.h>
-
-#include <stdio.h>
-
-static inline void apply_power_test(struct gsm_lchan *lchan, int rxlev, int exp_ret, uint8_t exp_current)
-{
- int ret = lchan_ms_pwr_ctrl(lchan, lchan->ms_power_ctrl.current, rxlev);
-
- printf("power control [%d]: MS current power %u\n", ret, lchan->ms_power_ctrl.current);
- OSMO_ASSERT(ret == exp_ret);
- OSMO_ASSERT(lchan->ms_power_ctrl.current == exp_current);
-}
-
-static void test_power_loop(void)
-{
- struct gsm_bts bts;
- struct gsm_bts_trx trx;
- struct gsm_bts_trx_ts ts;
- struct gsm_lchan *lchan;
-
- memset(&bts, 0, sizeof(bts));
- memset(&trx, 0, sizeof(trx));
- memset(&ts, 0, sizeof(ts));
-
- lchan = &ts.lchan[0];
- lchan->ts = &ts;
- ts.trx = &trx;
- trx.bts = &bts;
- bts.band = GSM_BAND_1800;
- trx.ms_power_control = 1;
- bts.ul_power_target = -75;
-
- lchan->state = LCHAN_S_NONE;
- lchan->ms_power_ctrl.current = ms_pwr_ctl_lvl(GSM_BAND_1800, 0);
- OSMO_ASSERT(lchan->ms_power_ctrl.current == 15);
-
- /* Simply clamping */
- apply_power_test(lchan, -60, 0, 15);
-
- /*
- * Now 15 dB too little and we should power it up. Could be a
- * power level of 7 or 8 for 15 dBm
- */
- apply_power_test(lchan, -90, 1, 7);
-
- /* It should be clamped to level 0 and 30 dBm */
- apply_power_test(lchan, -100, 1, 0);
-
- /* Fix it and jump down */
- lchan->ms_power_ctrl.fixed = 1;
- apply_power_test(lchan, -60, 0, 0);
-
- /* And leave it again */
- lchan->ms_power_ctrl.fixed = 0;
- apply_power_test(lchan, -40, 1, 15);
-}
-
-int main(int argc, char **argv)
-{
- printf("Testing power loop...\n");
-
- test_power_loop();
-
- printf("Power loop test OK\n");
-
- return 0;
-}
diff --git a/tests/power/power_test.ok b/tests/power/power_test.ok
deleted file mode 100644
index cf0a38b4..00000000
--- a/tests/power/power_test.ok
+++ /dev/null
@@ -1,7 +0,0 @@
-Testing power loop...
-power control [0]: MS current power 15
-power control [1]: MS current power 7
-power control [1]: MS current power 0
-power control [0]: MS current power 0
-power control [1]: MS current power 15
-Power loop test OK
diff --git a/tests/stubs.c b/tests/stubs.c
index 7c64034b..72a77a5e 100644
--- a/tests/stubs.c
+++ b/tests/stubs.c
@@ -1,7 +1,10 @@
#include <osmo-bts/bts.h>
+#include <osmo-bts/bts_model.h>
struct femtol1_hdl;
struct bts_model_set_dyn_pdch_data;
+struct phy_link;
+struct phy_instance;
/*
* Stubs to provide an empty bts model implementation for testing.
@@ -15,14 +18,14 @@ int bts_model_init(struct gsm_bts *bts)
{ return 0; }
int bts_model_trx_init(struct gsm_bts_trx *trx)
{ return 0; }
-int bts_model_apply_oml(struct gsm_bts *bts, struct msgb *msg,
- struct tlv_parsed *new_attr, int kind, void *obj)
+int bts_model_apply_oml(struct gsm_bts *bts, const struct msgb *msg,
+ struct gsm_abis_mo *mo, void *obj)
{ return 0; }
int bts_model_trx_deact_rf(struct gsm_bts_trx *trx)
{ return 0; }
-int bts_model_trx_close(struct gsm_bts_trx *trx)
-{ return 0; }
+void bts_model_trx_close(struct gsm_bts_trx *trx)
+{ bts_model_trx_close_cb(trx, 0); }
int bts_model_check_oml(struct gsm_bts *bts, uint8_t msg_type,
struct tlv_parsed *old_attr, struct tlv_parsed *new_attr,
void *obj)
@@ -30,13 +33,16 @@ int bts_model_check_oml(struct gsm_bts *bts, uint8_t msg_type,
int bts_model_opstart(struct gsm_bts *bts, struct gsm_abis_mo *mo,
void *obj)
{ return 0; }
-int bts_model_l1sap_down(struct gsm_bts_trx *trx, struct osmo_phsap_prim *l1sap)
+__attribute__((weak)) int bts_model_l1sap_down(struct gsm_bts_trx *trx, struct osmo_phsap_prim *l1sap)
+{ return 0; }
+
+uint32_t trx_get_hlayer1(const struct gsm_bts_trx *trx)
{ return 0; }
-uint32_t trx_get_hlayer1(struct gsm_bts_trx *trx)
+__attribute__((weak)) int bts_model_oml_estab(struct gsm_bts *bts)
{ return 0; }
-int bts_model_oml_estab(struct gsm_bts *bts)
+__attribute__((weak)) int bts_model_change_power(struct gsm_bts_trx *trx, int p_trxout_mdBm)
{ return 0; }
int l1if_set_txpower(struct femtol1_hdl *fl1h, float tx_power)
@@ -48,7 +54,7 @@ int bts_model_lchan_deactivate_sacch(struct gsm_lchan *lchan) { return 0; }
int bts_model_adjst_ms_pwr(struct gsm_lchan *lchan)
{ return 0; }
-void bts_model_abis_close(struct gsm_bts *bts)
+__attribute__((weak)) void bts_model_abis_close(struct gsm_bts *bts)
{ }
int bts_model_ts_disconnect(struct gsm_bts_trx_ts *ts)
@@ -57,3 +63,12 @@ int bts_model_ts_disconnect(struct gsm_bts_trx_ts *ts)
void bts_model_ts_connect(struct gsm_bts_trx_ts *ts,
enum gsm_phys_chan_config as_pchan)
{ return; }
+
+void bts_model_phy_link_set_defaults(struct phy_link *plink)
+{ return; }
+
+void bts_model_phy_instance_set_defaults(struct phy_instance *pinst)
+{ return; }
+
+int bts_model_phy_link_open(struct phy_link *plink)
+{ return 0; }
diff --git a/tests/sysmobts/Makefile.am b/tests/sysmobts/Makefile.am
index 0829ca52..ff80fb34 100644
--- a/tests/sysmobts/Makefile.am
+++ b/tests/sysmobts/Makefile.am
@@ -1,11 +1,36 @@
-AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_srcdir)/src/osmo-bts-sysmo $(SYSMOBTS_INCDIR)
-AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOCODEC_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(LIBOSMOTRAU_CFLAGS)
-LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOCODEC_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOVTY_LIBS) $(LIBOSMOTRAU_LIBS)
+AM_CPPFLAGS = \
+ $(all_includes) \
+ -I$(top_srcdir)/include \
+ -I$(top_srcdir)/src/osmo-bts-sysmo \
+ $(SYSMOBTS_INCDIR) \
+ $(NULL)
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOVTY_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOVTY_LIBS) \
+ $(LIBOSMOABIS_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
-noinst_PROGRAMS = sysmobts_test
+check_PROGRAMS = sysmobts_test
EXTRA_DIST = sysmobts_test.ok
-sysmobts_test_SOURCES = sysmobts_test.c $(top_srcdir)/src/osmo-bts-sysmo/utils.c \
+sysmobts_test_SOURCES = \
+ sysmobts_test.c \
+ $(top_srcdir)/src/osmo-bts-sysmo/utils.c \
$(top_srcdir)/src/osmo-bts-sysmo/l1_if.c \
$(top_srcdir)/src/osmo-bts-sysmo/oml.c \
$(top_srcdir)/src/osmo-bts-sysmo/l1_transp_hw.c \
@@ -13,5 +38,9 @@ sysmobts_test_SOURCES = sysmobts_test.c $(top_srcdir)/src/osmo-bts-sysmo/utils.c
$(top_srcdir)/src/osmo-bts-sysmo/calib_file.c \
$(top_srcdir)/src/osmo-bts-sysmo/calib_fixup.c \
$(top_srcdir)/src/osmo-bts-sysmo/misc/sysmobts_par.c \
+ $(top_srcdir)/src/osmo-bts-sysmo/femtobts.c \
$(top_srcdir)/src/osmo-bts-sysmo/eeprom.c
-sysmobts_test_LDADD = $(top_builddir)/src/common/libbts.a $(LIBOSMOABIS_LIBS) $(LDADD)
+sysmobts_test_LDADD = \
+ $(top_builddir)/src/common/libbts.a \
+ $(LDADD) \
+ $(NULL)
diff --git a/tests/sysmobts/sysmobts_test.c b/tests/sysmobts/sysmobts_test.c
index 4b01ed7a..27273d8d 100644
--- a/tests/sysmobts/sysmobts_test.c
+++ b/tests/sysmobts/sysmobts_test.c
@@ -11,7 +11,7 @@
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
@@ -52,14 +52,17 @@ static void test_sysmobts_auto_band(void)
{
struct gsm_bts bts;
struct gsm_bts_trx trx;
+ struct phy_instance pinst;
struct femtol1_hdl hdl;
int i;
memset(&bts, 0, sizeof(bts));
memset(&trx, 0, sizeof(trx));
+ memset(&pinst, 0, sizeof(pinst));
memset(&hdl, 0, sizeof(hdl));
trx.bts = &bts;
- trx.role_bts.l1h = &hdl;
+ trx.pinst = &pinst;
+ trx.pinst->u.sysmobts.hdl = &hdl;
/* claim to support all hw_info's */
hdl.hw_info.band_support = GSM_BAND_850 | GSM_BAND_900 |
diff --git a/tests/ta_control/Makefile.am b/tests/ta_control/Makefile.am
new file mode 100644
index 00000000..12c32ac3
--- /dev/null
+++ b/tests/ta_control/Makefile.am
@@ -0,0 +1,23 @@
+AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOABIS_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
+
+check_PROGRAMS = ta_control_test
+EXTRA_DIST = ta_control_test.ok
+ta_control_test_LDADD = $(top_builddir)/src/common/libbts.a $(LDADD)
diff --git a/tests/ta_control/ta_control_test.c b/tests/ta_control/ta_control_test.c
new file mode 100644
index 00000000..253491a8
--- /dev/null
+++ b/tests/ta_control/ta_control_test.c
@@ -0,0 +1,76 @@
+/* Test cases for tx_control.c Timing Advance Computation */
+
+/* (C) 2016 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
+ * All Rights Reserved
+ *
+ * Author: Philipp Maier
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <stdint.h>
+
+#include <osmocom/core/talloc.h>
+#include <osmocom/core/application.h>
+#include <osmo-bts/logging.h>
+#include <osmo-bts/gsm_data.h>
+#include <osmo-bts/ta_control.h>
+#include <osmo-bts/bts_trx.h>
+
+void lchan_ms_ta_ctrl_test(int16_t toa256_start, unsigned int steps)
+{
+ struct gsm_bts_trx trx = { };
+ struct gsm_bts_trx_ts ts = { .trx = &trx };
+ struct gsm_lchan lchan = { .ts = &ts };
+ unsigned int i;
+ uint8_t rqd_ta_after;
+ uint8_t rqd_ta_before;
+ int16_t toa256 = toa256_start;
+
+ printf("toa256_start = %u / 256 = %u, steps = %u\n", toa256_start,
+ toa256_start / 256, steps);
+
+ for (i = 0; i < steps; i++) {
+ printf("Step #%u\n", i);
+ printf(" lchan.ta_ctrl.current (before) = %u\n", lchan.ta_ctrl.current);
+ printf(" toa256 (before) = %u / 256 = %u\n", toa256,
+ toa256 / 256);
+
+ rqd_ta_before = lchan.ta_ctrl.current;
+
+ lchan_ms_ta_ctrl(&lchan, rqd_ta_before, toa256);
+
+ rqd_ta_after = lchan.ta_ctrl.current;
+ toa256 -= (rqd_ta_after - rqd_ta_before) * 256;
+
+ printf(" lchan.ta_ctrl.current (after) = %u\n", lchan.ta_ctrl.current);
+ printf(" toa256 (after) = %u / 256 = %u\n", toa256,
+ toa256 / 256);
+ }
+
+ printf("Done.\n");
+ printf("\n");
+}
+
+int main(int argc, char **argv)
+{
+ void *tall_bts_ctx;
+
+ tall_bts_ctx = talloc_named_const(NULL, 1, "OsmoBTS context");
+ osmo_init_logging2(tall_bts_ctx, &bts_log_info);
+
+ lchan_ms_ta_ctrl_test(16 * 256, 20);
+ lchan_ms_ta_ctrl_test(4000, 50);
+ lchan_ms_ta_ctrl_test(12345, 50);
+}
diff --git a/tests/ta_control/ta_control_test.ok b/tests/ta_control/ta_control_test.ok
new file mode 100644
index 00000000..a1586759
--- /dev/null
+++ b/tests/ta_control/ta_control_test.ok
@@ -0,0 +1,609 @@
+toa256_start = 4096 / 256 = 16, steps = 20
+Step #0
+ lchan.ta_ctrl.current (before) = 0
+ toa256 (before) = 4096 / 256 = 16
+ lchan.ta_ctrl.current (after) = 2
+ toa256 (after) = 3584 / 256 = 14
+Step #1
+ lchan.ta_ctrl.current (before) = 2
+ toa256 (before) = 3584 / 256 = 14
+ lchan.ta_ctrl.current (after) = 4
+ toa256 (after) = 3072 / 256 = 12
+Step #2
+ lchan.ta_ctrl.current (before) = 4
+ toa256 (before) = 3072 / 256 = 12
+ lchan.ta_ctrl.current (after) = 6
+ toa256 (after) = 2560 / 256 = 10
+Step #3
+ lchan.ta_ctrl.current (before) = 6
+ toa256 (before) = 2560 / 256 = 10
+ lchan.ta_ctrl.current (after) = 8
+ toa256 (after) = 2048 / 256 = 8
+Step #4
+ lchan.ta_ctrl.current (before) = 8
+ toa256 (before) = 2048 / 256 = 8
+ lchan.ta_ctrl.current (after) = 10
+ toa256 (after) = 1536 / 256 = 6
+Step #5
+ lchan.ta_ctrl.current (before) = 10
+ toa256 (before) = 1536 / 256 = 6
+ lchan.ta_ctrl.current (after) = 12
+ toa256 (after) = 1024 / 256 = 4
+Step #6
+ lchan.ta_ctrl.current (before) = 12
+ toa256 (before) = 1024 / 256 = 4
+ lchan.ta_ctrl.current (after) = 14
+ toa256 (after) = 512 / 256 = 2
+Step #7
+ lchan.ta_ctrl.current (before) = 14
+ toa256 (before) = 512 / 256 = 2
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #8
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #9
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #10
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #11
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #12
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #13
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #14
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #15
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #16
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #17
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #18
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Step #19
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 0 / 256 = 0
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 0 / 256 = 0
+Done.
+
+toa256_start = 4000 / 256 = 15, steps = 50
+Step #0
+ lchan.ta_ctrl.current (before) = 0
+ toa256 (before) = 4000 / 256 = 15
+ lchan.ta_ctrl.current (after) = 2
+ toa256 (after) = 3488 / 256 = 13
+Step #1
+ lchan.ta_ctrl.current (before) = 2
+ toa256 (before) = 3488 / 256 = 13
+ lchan.ta_ctrl.current (after) = 4
+ toa256 (after) = 2976 / 256 = 11
+Step #2
+ lchan.ta_ctrl.current (before) = 4
+ toa256 (before) = 2976 / 256 = 11
+ lchan.ta_ctrl.current (after) = 6
+ toa256 (after) = 2464 / 256 = 9
+Step #3
+ lchan.ta_ctrl.current (before) = 6
+ toa256 (before) = 2464 / 256 = 9
+ lchan.ta_ctrl.current (after) = 8
+ toa256 (after) = 1952 / 256 = 7
+Step #4
+ lchan.ta_ctrl.current (before) = 8
+ toa256 (before) = 1952 / 256 = 7
+ lchan.ta_ctrl.current (after) = 10
+ toa256 (after) = 1440 / 256 = 5
+Step #5
+ lchan.ta_ctrl.current (before) = 10
+ toa256 (before) = 1440 / 256 = 5
+ lchan.ta_ctrl.current (after) = 12
+ toa256 (after) = 928 / 256 = 3
+Step #6
+ lchan.ta_ctrl.current (before) = 12
+ toa256 (before) = 928 / 256 = 3
+ lchan.ta_ctrl.current (after) = 14
+ toa256 (after) = 416 / 256 = 1
+Step #7
+ lchan.ta_ctrl.current (before) = 14
+ toa256 (before) = 416 / 256 = 1
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #8
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #9
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #10
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #11
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #12
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #13
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #14
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #15
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #16
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #17
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #18
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #19
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #20
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #21
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #22
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #23
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #24
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #25
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #26
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #27
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #28
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #29
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #30
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #31
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #32
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #33
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #34
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #35
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #36
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #37
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #38
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #39
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #40
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #41
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #42
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #43
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #44
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #45
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #46
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #47
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #48
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Step #49
+ lchan.ta_ctrl.current (before) = 15
+ toa256 (before) = 160 / 256 = 0
+ lchan.ta_ctrl.current (after) = 15
+ toa256 (after) = 160 / 256 = 0
+Done.
+
+toa256_start = 12345 / 256 = 48, steps = 50
+Step #0
+ lchan.ta_ctrl.current (before) = 0
+ toa256 (before) = 12345 / 256 = 48
+ lchan.ta_ctrl.current (after) = 2
+ toa256 (after) = 11833 / 256 = 46
+Step #1
+ lchan.ta_ctrl.current (before) = 2
+ toa256 (before) = 11833 / 256 = 46
+ lchan.ta_ctrl.current (after) = 4
+ toa256 (after) = 11321 / 256 = 44
+Step #2
+ lchan.ta_ctrl.current (before) = 4
+ toa256 (before) = 11321 / 256 = 44
+ lchan.ta_ctrl.current (after) = 6
+ toa256 (after) = 10809 / 256 = 42
+Step #3
+ lchan.ta_ctrl.current (before) = 6
+ toa256 (before) = 10809 / 256 = 42
+ lchan.ta_ctrl.current (after) = 8
+ toa256 (after) = 10297 / 256 = 40
+Step #4
+ lchan.ta_ctrl.current (before) = 8
+ toa256 (before) = 10297 / 256 = 40
+ lchan.ta_ctrl.current (after) = 10
+ toa256 (after) = 9785 / 256 = 38
+Step #5
+ lchan.ta_ctrl.current (before) = 10
+ toa256 (before) = 9785 / 256 = 38
+ lchan.ta_ctrl.current (after) = 12
+ toa256 (after) = 9273 / 256 = 36
+Step #6
+ lchan.ta_ctrl.current (before) = 12
+ toa256 (before) = 9273 / 256 = 36
+ lchan.ta_ctrl.current (after) = 14
+ toa256 (after) = 8761 / 256 = 34
+Step #7
+ lchan.ta_ctrl.current (before) = 14
+ toa256 (before) = 8761 / 256 = 34
+ lchan.ta_ctrl.current (after) = 16
+ toa256 (after) = 8249 / 256 = 32
+Step #8
+ lchan.ta_ctrl.current (before) = 16
+ toa256 (before) = 8249 / 256 = 32
+ lchan.ta_ctrl.current (after) = 18
+ toa256 (after) = 7737 / 256 = 30
+Step #9
+ lchan.ta_ctrl.current (before) = 18
+ toa256 (before) = 7737 / 256 = 30
+ lchan.ta_ctrl.current (after) = 20
+ toa256 (after) = 7225 / 256 = 28
+Step #10
+ lchan.ta_ctrl.current (before) = 20
+ toa256 (before) = 7225 / 256 = 28
+ lchan.ta_ctrl.current (after) = 22
+ toa256 (after) = 6713 / 256 = 26
+Step #11
+ lchan.ta_ctrl.current (before) = 22
+ toa256 (before) = 6713 / 256 = 26
+ lchan.ta_ctrl.current (after) = 24
+ toa256 (after) = 6201 / 256 = 24
+Step #12
+ lchan.ta_ctrl.current (before) = 24
+ toa256 (before) = 6201 / 256 = 24
+ lchan.ta_ctrl.current (after) = 26
+ toa256 (after) = 5689 / 256 = 22
+Step #13
+ lchan.ta_ctrl.current (before) = 26
+ toa256 (before) = 5689 / 256 = 22
+ lchan.ta_ctrl.current (after) = 28
+ toa256 (after) = 5177 / 256 = 20
+Step #14
+ lchan.ta_ctrl.current (before) = 28
+ toa256 (before) = 5177 / 256 = 20
+ lchan.ta_ctrl.current (after) = 30
+ toa256 (after) = 4665 / 256 = 18
+Step #15
+ lchan.ta_ctrl.current (before) = 30
+ toa256 (before) = 4665 / 256 = 18
+ lchan.ta_ctrl.current (after) = 32
+ toa256 (after) = 4153 / 256 = 16
+Step #16
+ lchan.ta_ctrl.current (before) = 32
+ toa256 (before) = 4153 / 256 = 16
+ lchan.ta_ctrl.current (after) = 34
+ toa256 (after) = 3641 / 256 = 14
+Step #17
+ lchan.ta_ctrl.current (before) = 34
+ toa256 (before) = 3641 / 256 = 14
+ lchan.ta_ctrl.current (after) = 36
+ toa256 (after) = 3129 / 256 = 12
+Step #18
+ lchan.ta_ctrl.current (before) = 36
+ toa256 (before) = 3129 / 256 = 12
+ lchan.ta_ctrl.current (after) = 38
+ toa256 (after) = 2617 / 256 = 10
+Step #19
+ lchan.ta_ctrl.current (before) = 38
+ toa256 (before) = 2617 / 256 = 10
+ lchan.ta_ctrl.current (after) = 40
+ toa256 (after) = 2105 / 256 = 8
+Step #20
+ lchan.ta_ctrl.current (before) = 40
+ toa256 (before) = 2105 / 256 = 8
+ lchan.ta_ctrl.current (after) = 42
+ toa256 (after) = 1593 / 256 = 6
+Step #21
+ lchan.ta_ctrl.current (before) = 42
+ toa256 (before) = 1593 / 256 = 6
+ lchan.ta_ctrl.current (after) = 44
+ toa256 (after) = 1081 / 256 = 4
+Step #22
+ lchan.ta_ctrl.current (before) = 44
+ toa256 (before) = 1081 / 256 = 4
+ lchan.ta_ctrl.current (after) = 46
+ toa256 (after) = 569 / 256 = 2
+Step #23
+ lchan.ta_ctrl.current (before) = 46
+ toa256 (before) = 569 / 256 = 2
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #24
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #25
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #26
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #27
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #28
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #29
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #30
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #31
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #32
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #33
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #34
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #35
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #36
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #37
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #38
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #39
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #40
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #41
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #42
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #43
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #44
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #45
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #46
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #47
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #48
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Step #49
+ lchan.ta_ctrl.current (before) = 48
+ toa256 (before) = 57 / 256 = 0
+ lchan.ta_ctrl.current (after) = 48
+ toa256 (after) = 57 / 256 = 0
+Done.
+
diff --git a/tests/testsuite.at b/tests/testsuite.at
index 2d1cefd3..6e2677e2 100644
--- a/tests/testsuite.at
+++ b/tests/testsuite.at
@@ -31,10 +31,18 @@ cat $abs_srcdir/handover/handover_test.ok > expout
AT_CHECK([$abs_top_builddir/tests/handover/handover_test], [], [expout], [ignore])
AT_CLEANUP
-AT_SETUP([power])
+AT_SETUP([ms_power_loop])
AT_KEYWORDS([power])
-cat $abs_srcdir/power/power_test.ok > expout
-AT_CHECK([$abs_top_builddir/tests/power/power_test], [], [expout], [ignore])
+cat $abs_srcdir/power/ms_power_loop_test.ok > expout
+cat $abs_srcdir/power/ms_power_loop_test.err > experr
+AT_CHECK([$abs_top_builddir/tests/power/ms_power_loop_test], [], [expout], [experr])
+AT_CLEANUP
+
+AT_SETUP([bs_power_loop])
+AT_KEYWORDS([power])
+cat $abs_srcdir/power/bs_power_loop_test.ok > expout
+cat $abs_srcdir/power/bs_power_loop_test.err > experr
+AT_CHECK([$abs_top_builddir/tests/power/bs_power_loop_test], [], [expout], [experr])
AT_CLEANUP
AT_SETUP([tx_power])
@@ -47,5 +55,25 @@ AT_CLEANUP
AT_SETUP([meas])
AT_KEYWORDS([meas])
cat $abs_srcdir/meas/meas_test.ok > expout
-AT_CHECK([$abs_top_builddir/tests/meas/meas_test], [], [expout], [ignore])
+cat $abs_srcdir/meas/meas_test.err > experr
+AT_CHECK([$abs_top_builddir/tests/meas/meas_test], [], [expout], [experr])
+AT_CLEANUP
+
+AT_SETUP([ta_control])
+AT_KEYWORDS([ta_control])
+cat $abs_srcdir/ta_control/ta_control_test.ok > expout
+AT_CHECK([$abs_top_builddir/tests/ta_control/ta_control_test], [], [expout], [ignore])
+AT_CLEANUP
+
+AT_SETUP([amr])
+AT_KEYWORDS([amr])
+cat $abs_srcdir/amr/amr_test.ok > expout
+cat $abs_srcdir/amr/amr_test.err > experr
+AT_CHECK([$abs_top_builddir/tests/amr/amr_test], [], [expout], [experr])
+AT_CLEANUP
+
+AT_SETUP([csd])
+AT_KEYWORDS([csd])
+cat $abs_srcdir/csd/csd_test.err > experr
+AT_CHECK([$abs_top_builddir/tests/csd/csd_test], [], [ignore], [experr])
AT_CLEANUP
diff --git a/tests/tx_power/Makefile.am b/tests/tx_power/Makefile.am
index cd7ccc2f..8c3db1eb 100644
--- a/tests/tx_power/Makefile.am
+++ b/tests/tx_power/Makefile.am
@@ -1,7 +1,23 @@
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
-AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOCODEC_CFLAGS) $(LIBOSMOTRAU_CFLAGS) $(LIBOSMOABIS_CFLAGS)
-LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOCODEC_LIBS) $(LIBOSMOTRAU_LIBS) $(LIBOSMOABIS_LIBS)
-noinst_PROGRAMS = tx_power_test
+AM_CFLAGS = \
+ -Wall \
+ $(LIBOSMOCORE_CFLAGS) \
+ $(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOCODEC_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
+ $(LIBOSMOTRAU_CFLAGS) \
+ $(LIBOSMONETIF_CFLAGS) \
+ $(NULL)
+AM_LDFLAGS = -no-install
+LDADD = \
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOGSM_LIBS) \
+ $(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOABIS_LIBS) \
+ $(LIBOSMOTRAU_LIBS) \
+ $(LIBOSMONETIF_LIBS) \
+ $(NULL)
+check_PROGRAMS = tx_power_test
EXTRA_DIST = tx_power_test.ok tx_power_test.err
tx_power_test_SOURCES = tx_power_test.c $(srcdir)/../stubs.c
diff --git a/tests/tx_power/tx_power_test.c b/tests/tx_power/tx_power_test.c
index ad3f68ce..e0f88bc9 100644
--- a/tests/tx_power/tx_power_test.c
+++ b/tests/tx_power/tx_power_test.c
@@ -12,7 +12,7 @@
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
@@ -20,6 +20,7 @@
*/
#include <stdint.h>
+#include <errno.h>
#include <osmocom/core/utils.h>
#include <osmocom/core/talloc.h>
@@ -27,9 +28,11 @@
#include <osmo-bts/gsm_data.h>
#include <osmo-bts/bts.h>
+#include <osmo-bts/bts_sm.h>
#include <osmo-bts/logging.h>
#include <osmo-bts/tx_power.h>
+static bool power_ramp_finished = false;
static const struct trx_power_params tpp_1002 = {
.trx_p_max_out_mdBm = to_mdB(23),
@@ -120,9 +123,9 @@ static void test_sbts1002(struct gsm_bts_trx *trx)
/* at max_power_red = 2, we expect 21dBm */
OSMO_ASSERT(get_p_nominal_mdBm(trx) == to_mdB(21));
/* at 1 step (of 2dB), we expect full 23-2-2=19 dBm */
- OSMO_ASSERT(get_p_target_mdBm(trx, 1) == to_mdB(19));
+ OSMO_ASSERT(get_p_target_mdBm(trx, 2) == to_mdB(19));
/* at 2 steps (= 4dB), we expect 23-2-4=17*/
- OSMO_ASSERT(get_p_trxout_target_mdBm(trx, 2) == to_mdB(17));
+ OSMO_ASSERT(get_p_trxout_target_mdBm(trx, 4) == to_mdB(17));
}
static void test_sbts1020(struct gsm_bts_trx *trx)
@@ -138,9 +141,9 @@ static void test_sbts1020(struct gsm_bts_trx *trx)
/* at max_power_red = 2, we expect 31dBm */
OSMO_ASSERT(get_p_nominal_mdBm(trx) == to_mdB(31));
/* at 1 step (of 2dB), we expect full 33-2-2=29 dBm */
- OSMO_ASSERT(get_p_target_mdBm(trx, 1) == to_mdB(29));
+ OSMO_ASSERT(get_p_target_mdBm(trx, 2) == to_mdB(29));
/* at 2 steps (= 4dB), we expect 33-2-4-10=17*/
- OSMO_ASSERT(get_p_trxout_target_mdBm(trx, 2) == to_mdB(17));
+ OSMO_ASSERT(get_p_trxout_target_mdBm(trx, 4) == to_mdB(17));
}
@@ -157,9 +160,9 @@ static void test_sbts1100(struct gsm_bts_trx *trx)
/* at max_power_red = 2, we expect 38dBm */
OSMO_ASSERT(get_p_nominal_mdBm(trx) == to_mdB(38));
/* at 1 step (of 2dB), we expect full 40-2-2=36 dBm */
- OSMO_ASSERT(get_p_target_mdBm(trx, 1) == to_mdB(36));
+ OSMO_ASSERT(get_p_target_mdBm(trx, 2) == to_mdB(36));
/* at 2 steps (= 4dB), we expect 40-2-4-17=17*/
- OSMO_ASSERT(get_p_trxout_target_mdBm(trx, 2) == to_mdB(17));
+ OSMO_ASSERT(get_p_trxout_target_mdBm(trx, 4) == to_mdB(17));
}
static void test_sbts2050(struct gsm_bts_trx *trx)
@@ -175,31 +178,63 @@ static void test_sbts2050(struct gsm_bts_trx *trx)
/* at max_power_red = 2, we expect 35dBm */
OSMO_ASSERT(get_p_nominal_mdBm(trx) == to_mdB(35));
/* at 1 step (of 2dB), we expect full 37-2-2=33 dBm */
- OSMO_ASSERT(get_p_target_mdBm(trx, 1) == to_mdB(33));
+ OSMO_ASSERT(get_p_target_mdBm(trx, 2) == to_mdB(33));
/* at 2 steps (= 4dB), we expect 37-2-4=31dBm */
- OSMO_ASSERT(get_p_trxout_target_mdBm(trx, 2) == to_mdB(31));
+ OSMO_ASSERT(get_p_trxout_target_mdBm(trx, 4) == to_mdB(31));
}
int bts_model_change_power(struct gsm_bts_trx *trx, int p_trxout_mdBm)
{
- struct trx_power_params *tpp = &trx->power_params;
printf("CHANGE_POWER(%d)\n", p_trxout_mdBm);
- if (tpp->ramp.attenuation_mdB == 0)
- exit(0);
-
power_trx_change_compl(trx, p_trxout_mdBm);
return 0;
}
-static void test_power_ramp(struct gsm_bts_trx *trx, int dBm)
+static void test_ramp_compl_cb(struct gsm_bts_trx *trx)
+{
+ power_ramp_finished = true;
+ printf("power_ramp finished\n");
+}
+
+static int test_power_ramp(struct gsm_bts_trx *trx, int dBm)
{
printf("Testing tx_power ramping for sysmoBTS 1020\n");
+ int rc;
+
trx->power_params = tpp_1020;
+ trx->power_params.ramp.step_interval_sec = 0; /* speedup test */
trx->max_power_red = 0;
- power_ramp_start(trx, to_mdB(dBm), 0);
+ power_ramp_finished = false;
+ if ((rc = power_ramp_start(trx, to_mdB(dBm), 0, test_ramp_compl_cb)))
+ return rc;
+ while (!power_ramp_finished)
+ osmo_select_main(0);
+ return 0;
+}
+
+
+static int test_power_ramp_from_minus10(struct gsm_bts_trx *trx, int dBm)
+{
+ printf("Testing tx_power ramping for osmo-bts-trx after lock\n");
+ int rc;
+
+ trx->power_params = tpp_1002;
+ trx->power_params.trx_p_max_out_mdBm = to_mdB(20);
+ trx->power_params.p_total_tgt_mdBm = to_mdB(-10);
+ trx->power_params.p_total_cur_mdBm = to_mdB(-10);
+ trx->power_params.ramp.max_initial_pout_mdBm = to_mdB(0);
+ trx->power_params.ramp.step_interval_sec = 0; /* speedup test */
+ trx->max_power_red = 10;
+
+ power_ramp_finished = false;
+ if ((rc = power_ramp_start(trx, to_mdB(dBm), 0, test_ramp_compl_cb)))
+ return rc;
+ while (!power_ramp_finished)
+ osmo_select_main(0);
+ return 0;
}
int main(int argc, char **argv)
@@ -213,9 +248,17 @@ int main(int argc, char **argv)
osmo_init_logging2(tall_bts_ctx, &bts_log_info);
osmo_stderr_target->categories[DL1C].loglevel = LOGL_DEBUG;
- log_set_print_filename(osmo_stderr_target, 0);
+ log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_NONE);
+ log_set_use_color(osmo_stderr_target, 0);
+ log_set_print_category(osmo_stderr_target, 0);
+ log_set_print_category_hex(osmo_stderr_target, 0);
- bts = gsm_bts_alloc(tall_bts_ctx, 0);
+ g_bts_sm = gsm_bts_sm_alloc(tall_bts_ctx);
+ if (!g_bts_sm) {
+ fprintf(stderr, "Failed to create BTS Site Manager structure\n");
+ exit(1);
+ }
+ bts = gsm_bts_alloc(g_bts_sm, 0);
if (!bts) {
fprintf(stderr, "Failed to create BTS structure\n");
exit(1);
@@ -237,11 +280,10 @@ int main(int argc, char **argv)
test_sbts2050(trx);
/* test error case / excess power (40 dBm is too much) */
- test_power_ramp(trx, 40);
- /* test actaul ramping to full 33 dBm */
+ OSMO_ASSERT(test_power_ramp(trx, 40) == -ERANGE);
+ /* test actual ramping to full 33 dBm */
test_power_ramp(trx, 33);
+ /* Test ramp up from -10dBm (locked) to 10dBm */
+ test_power_ramp_from_minus10(trx, 10);
- while (1) {
- osmo_select_main(0);
- }
}
diff --git a/tests/tx_power/tx_power_test.err b/tests/tx_power/tx_power_test.err
index bf33b424..72a3d853 100644
--- a/tests/tx_power/tx_power_test.err
+++ b/tests/tx_power/tx_power_test.err
@@ -1,38 +1,50 @@
-power_ramp_start(cur=0, tgt=40000)
-Asked to ramp power up to 40000 mdBm, which exceeds P_max_out (33000)
-power_ramp_start(cur=0, tgt=33000)
-ramp_timer_cb(cur_pout=2000, tgt_pout=33000, ramp_att=31000, therm_att=0, user_gain=0)
-ramping TRX board output power to -8000 mdBm.
-ramp_timer_cb(cur_pout=4000, tgt_pout=33000, ramp_att=29000, therm_att=0, user_gain=0)
-ramping TRX board output power to -6000 mdBm.
-ramp_timer_cb(cur_pout=6000, tgt_pout=33000, ramp_att=27000, therm_att=0, user_gain=0)
-ramping TRX board output power to -4000 mdBm.
-ramp_timer_cb(cur_pout=8000, tgt_pout=33000, ramp_att=25000, therm_att=0, user_gain=0)
-ramping TRX board output power to -2000 mdBm.
-ramp_timer_cb(cur_pout=10000, tgt_pout=33000, ramp_att=23000, therm_att=0, user_gain=0)
-ramping TRX board output power to 0 mdBm.
-ramp_timer_cb(cur_pout=12000, tgt_pout=33000, ramp_att=21000, therm_att=0, user_gain=0)
-ramping TRX board output power to 2000 mdBm.
-ramp_timer_cb(cur_pout=14000, tgt_pout=33000, ramp_att=19000, therm_att=0, user_gain=0)
-ramping TRX board output power to 4000 mdBm.
-ramp_timer_cb(cur_pout=16000, tgt_pout=33000, ramp_att=17000, therm_att=0, user_gain=0)
-ramping TRX board output power to 6000 mdBm.
-ramp_timer_cb(cur_pout=18000, tgt_pout=33000, ramp_att=15000, therm_att=0, user_gain=0)
-ramping TRX board output power to 8000 mdBm.
-ramp_timer_cb(cur_pout=20000, tgt_pout=33000, ramp_att=13000, therm_att=0, user_gain=0)
-ramping TRX board output power to 10000 mdBm.
-ramp_timer_cb(cur_pout=22000, tgt_pout=33000, ramp_att=11000, therm_att=0, user_gain=0)
-ramping TRX board output power to 12000 mdBm.
-ramp_timer_cb(cur_pout=24000, tgt_pout=33000, ramp_att=9000, therm_att=0, user_gain=0)
-ramping TRX board output power to 14000 mdBm.
-ramp_timer_cb(cur_pout=26000, tgt_pout=33000, ramp_att=7000, therm_att=0, user_gain=0)
-ramping TRX board output power to 16000 mdBm.
-ramp_timer_cb(cur_pout=28000, tgt_pout=33000, ramp_att=5000, therm_att=0, user_gain=0)
-ramping TRX board output power to 18000 mdBm.
-ramp_timer_cb(cur_pout=30000, tgt_pout=33000, ramp_att=3000, therm_att=0, user_gain=0)
-ramping TRX board output power to 20000 mdBm.
-ramp_timer_cb(cur_pout=32000, tgt_pout=33000, ramp_att=1000, therm_att=0, user_gain=0)
-ramping TRX board output power to 22000 mdBm.
-ramp_timer_cb(cur_pout=33000, tgt_pout=33000, ramp_att=0, therm_att=0, user_gain=0)
-ramping TRX board output power to 23000 mdBm.
- \ No newline at end of file
+(bts=0,trx=1) power_ramp_start(cur=0, tgt=40000)
+(bts=0,trx=1) Asked to ramp power up to 40000 mdBm, which exceeds P_max_out (33000)
+(bts=0,trx=1) power_ramp_start(cur=0, tgt=33000)
+(bts=0,trx=1) ramp_timer_cb(cur_pout=2000, tgt_pout=33000, ramp_att=31000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to -8000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=4000, tgt_pout=33000, ramp_att=29000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to -6000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=6000, tgt_pout=33000, ramp_att=27000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to -4000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=8000, tgt_pout=33000, ramp_att=25000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to -2000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=10000, tgt_pout=33000, ramp_att=23000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 0 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=12000, tgt_pout=33000, ramp_att=21000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 2000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=14000, tgt_pout=33000, ramp_att=19000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 4000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=16000, tgt_pout=33000, ramp_att=17000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 6000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=18000, tgt_pout=33000, ramp_att=15000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 8000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=20000, tgt_pout=33000, ramp_att=13000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 10000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=22000, tgt_pout=33000, ramp_att=11000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 12000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=24000, tgt_pout=33000, ramp_att=9000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 14000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=26000, tgt_pout=33000, ramp_att=7000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 16000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=28000, tgt_pout=33000, ramp_att=5000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 18000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=30000, tgt_pout=33000, ramp_att=3000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 20000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=32000, tgt_pout=33000, ramp_att=1000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 22000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=33000, tgt_pout=33000, ramp_att=0, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 23000 mdBm.
+(bts=0,trx=1) power_ramp_start(cur=-10000, tgt=10000)
+(bts=0,trx=1) ramp_timer_cb(cur_pout=0, tgt_pout=10000, ramp_att=10000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 0 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=2000, tgt_pout=10000, ramp_att=8000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 2000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=4000, tgt_pout=10000, ramp_att=6000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 4000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=6000, tgt_pout=10000, ramp_att=4000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 6000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=8000, tgt_pout=10000, ramp_att=2000, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 8000 mdBm.
+(bts=0,trx=1) ramp_timer_cb(cur_pout=10000, tgt_pout=10000, ramp_att=0, therm_att=0, user_gain=0)
+(bts=0,trx=1) ramping TRX board output power to 10000 mdBm.
diff --git a/tests/tx_power/tx_power_test.ok b/tests/tx_power/tx_power_test.ok
index ceb88ab4..c8f04417 100644
--- a/tests/tx_power/tx_power_test.ok
+++ b/tests/tx_power/tx_power_test.ok
@@ -21,3 +21,12 @@ CHANGE_POWER(18000)
CHANGE_POWER(20000)
CHANGE_POWER(22000)
CHANGE_POWER(23000)
+power_ramp finished
+Testing tx_power ramping for osmo-bts-trx after lock
+CHANGE_POWER(0)
+CHANGE_POWER(2000)
+CHANGE_POWER(4000)
+CHANGE_POWER(6000)
+CHANGE_POWER(8000)
+CHANGE_POWER(10000)
+power_ramp finished