aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-06-29 14:09:59 +0200
committerHarald Welte <laforge@gnumonks.org>2011-06-29 14:09:59 +0200
commita7d6261108cf6fcc142b7b864639d63d2fc23391 (patch)
treee4d6524b8be04c1342c11a336190a202350015c6
parentee3d0fcb77203addce5304720b3eff3c64d68680 (diff)
sysmocom L1: raise the threshold for ignored RACH bursts
the RACH burst detection in the physical layer is appranetly providing many false positives, and we need to raise the bar a bit in order to not allocate channels in a useless way...
-rw-r--r--src/osmo-bts-sysmo/l1_if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bts-sysmo/l1_if.c b/src/osmo-bts-sysmo/l1_if.c
index fd09ed9..5508fa6 100644
--- a/src/osmo-bts-sysmo/l1_if.c
+++ b/src/osmo-bts-sysmo/l1_if.c
@@ -51,8 +51,8 @@
#include "l1_transp.h"
/* FIXME: make threshold configurable */
-#define MIN_QUAL_RACH -1.0f /* at least -1 dB C/I */
-#define MIN_QUAL_NORM -1.0f /* at least -1 dB C/I */
+#define MIN_QUAL_RACH -0.5f /* at least -1 dB C/I */
+#define MIN_QUAL_NORM -0.5f /* at least -1 dB C/I */
struct wait_l1_conf {
struct llist_head list; /* internal linked list */