From f1c2d40b2cef9c5c9ce3f4890d4291620013cdd8 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Wed, 10 Jun 2020 23:22:38 +0700 Subject: [PATCH] osmo-bts-trx: indicate BTS_FEAT_EGPRS support to BSC EGPRS support, in particular MCS channel coding, was introduced to osmo-bts-trx years ago, but we still report that it's not supported. Let's stop confusing BSC, and set this feature too. Change-Id: Iaf92764d266e12efd2350967deffae50fbbb3b9e --- src/osmo-bts-trx/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/osmo-bts-trx/main.c b/src/osmo-bts-trx/main.c index 3c1c8927f..3ccd5976c 100644 --- a/src/osmo-bts-trx/main.c +++ b/src/osmo-bts-trx/main.c @@ -111,6 +111,7 @@ int bts_model_init(struct gsm_bts *bts) bts->c0->nominal_power = 23; gsm_bts_set_feature(bts, BTS_FEAT_GPRS); + gsm_bts_set_feature(bts, BTS_FEAT_EGPRS); gsm_bts_set_feature(bts, BTS_FEAT_OML_ALERTS); gsm_bts_set_feature(bts, BTS_FEAT_SPEECH_F_V1); gsm_bts_set_feature(bts, BTS_FEAT_SPEECH_H_V1);