From 0b874b64ef36fb2abc87ed2c0ea52b6fa582fa4b Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Sat, 16 Mar 2013 15:56:01 +0100 Subject: [PATCH] Use default 'alpha' value of 0 Since we don't know the RX and TX parameters of the BTS that might be used with PCU, the MS should not adapt the TX power from the RX level. So the MS should always transmits with same power. Finding an 'alpha' and 'gamma' value that will result in a constant RX level at the BTS is a task of deployment. --- src/pcu_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pcu_main.cpp b/src/pcu_main.cpp index f135cfd6..8265c319 100644 --- a/src/pcu_main.cpp +++ b/src/pcu_main.cpp @@ -163,7 +163,7 @@ int main(int argc, char *argv[]) bts->n3101 = 10; bts->n3103 = 4; bts->n3105 = 8; - bts->alpha = 10; /* a = 1.0 */ + bts->alpha = 0; /* a = 0.0 */ msgb_set_talloc_ctx(tall_pcu_ctx);