aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-11-16 22:17:57 +0100
committerHarald Welte <laforge@gnumonks.org>2016-11-17 21:09:55 +0100
commit16d065c04392d9c632572e6fad35cf445df6fc3a (patch)
tree83f37622f34eddafddf607b0c7da3937041c169d
parent862ed97bfe2bce543f8f2b48f00c5e96e8f5507e (diff)
P-GSL: Fix uplink burst detection to GMSK for now
-rw-r--r--src/osmo-bts-rbs/pgsl_l1_if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bts-rbs/pgsl_l1_if.c b/src/osmo-bts-rbs/pgsl_l1_if.c
index 0ecb9f7a..04dce584 100644
--- a/src/osmo-bts-rbs/pgsl_l1_if.c
+++ b/src/osmo-bts-rbs/pgsl_l1_if.c
@@ -440,8 +440,8 @@ int l1if_pdch_req(void *obj, uint8_t ts, int is_ptcch, uint32_t fn,
"unable to determine CS/MCS frame type!\n");
return -EINVAL;
}
-
- frame.u.dldata_ind.ucm = ER_PGSL_UCM_NB_CS1_OR_MCS;
+ /* FIXME: switch to ER_PGSL_UCM_NB_CS1_OR_MCS when applicable */
+ frame.u.dldata_ind.ucm = ER_PGSL_UCM_NB_GSMK;
frame.u.dldata_ind.timing_offset = 0;
frame.u.dldata_ind.pwr_ctrl = 0;
frame.u.dldata_ind.data_len = len;