From fd355a3c6feccca5b774c0b3291a6066d0459067 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 4 Mar 2011 13:41:31 +0100 Subject: [HSL] initial support for the HSL 2.75G Femtocell The HSL Femtocell seems to be a poor man implementation of the ip.access Abis/IP protocol, but cutting corners wherever possible. We try to workaround those corners wherever possible... --- openbsc/src/libcommon/gsm_data.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'openbsc/src/libcommon') diff --git a/openbsc/src/libcommon/gsm_data.c b/openbsc/src/libcommon/gsm_data.c index f181fd162..b2c52e4b1 100644 --- a/openbsc/src/libcommon/gsm_data.c +++ b/openbsc/src/libcommon/gsm_data.c @@ -416,6 +416,7 @@ static const struct value_string bts_types[] = { { GSM_BTS_TYPE_BS11, "bs11" }, { GSM_BTS_TYPE_NANOBTS, "nanobts" }, { GSM_BTS_TYPE_RBS2000, "rbs2000" }, + { GSM_BTS_TYPE_HSL_FEMTO, "hsl_femto" }, { 0, NULL } }; @@ -571,6 +572,8 @@ int gsm_set_bts_type(struct gsm_bts *bts, enum gsm_bts_type type) bts->model = model; switch (bts->type) { + case GSM_BTS_TYPE_HSL_FEMTO: + bts->c0->rsl_tei = 0; case GSM_BTS_TYPE_NANOBTS: /* Set the default OML Stream ID to 0xff */ bts->oml_tei = 0xff; -- cgit v1.2.3