aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/bsc_hack.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-08-09 14:38:49 +0200
committerHarald Welte <laforge@gnumonks.org>2009-08-09 14:38:49 +0200
commit31f03a6df66ccfcaa3ae71663ac53bf7c2b80c59 (patch)
tree3598e6f027aee1d6f68fad5b33384e22272c9c93 /openbsc/src/bsc_hack.c
parente122855f3cc90071aa5a4fc746d90cc5cca07ce9 (diff)
configure MS CCH max power IEI of SI3 and SI4 to 20dBM (100mW)
Diffstat (limited to 'openbsc/src/bsc_hack.c')
-rw-r--r--openbsc/src/bsc_hack.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/openbsc/src/bsc_hack.c b/openbsc/src/bsc_hack.c
index 9e0a26096..02ec1abed 100644
--- a/openbsc/src/bsc_hack.c
+++ b/openbsc/src/bsc_hack.c
@@ -979,6 +979,10 @@ static void patch_tables(struct gsm_bts *bts)
/* patch TSC */
si4[15] &= ~0xe0;
si4[15] |= (bts->tsc & 7) << 5;
+
+ /* patch MS max power for CCH */
+ type_4->cell_sel_par.ms_txpwr_max_ccch =
+ ms_pwr_ctl_lvl(bts, 20 /* dBm == 100mW */);
}