From 1c2a329f858c15efd08bd81c424d54871acf7090 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Fri, 25 Jun 2021 19:34:38 +0200 Subject: [PATCH] bts_features: add feature for BCCH carrier power reduction mode Change-Id: I69283b3f35988fc7a1a1dcf1a1ad3b67f08ec716 Related: SYS#4919 --- include/osmocom/gsm/bts_features.h | 1 + src/gsm/bts_features.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/include/osmocom/gsm/bts_features.h b/include/osmocom/gsm/bts_features.h index 8bd5ef579..53746196d 100644 --- a/include/osmocom/gsm/bts_features.h +++ b/include/osmocom/gsm/bts_features.h @@ -30,6 +30,7 @@ enum osmo_bts_features { BTS_FEAT_CCN, /* Is CCN supported by the cell? TS 44.060 sec 8.8.2 */ BTS_FEAT_VAMOS, /* Is the BTS VAMOS capable? */ BTS_FEAT_ABIS_OSMO_PCU, /* BTS supports forwarding data to PCUIF over IPA OML multiplex */ + BTS_FEAT_BCCH_POWER_RED, _NUM_BTS_FEAT }; diff --git a/src/gsm/bts_features.c b/src/gsm/bts_features.c index 6e63d5c01..66719465e 100644 --- a/src/gsm/bts_features.c +++ b/src/gsm/bts_features.c @@ -45,6 +45,7 @@ const struct value_string osmo_bts_features_descs[] = { { BTS_FEAT_CCN, "Cell Change Notification (CCN)" }, { BTS_FEAT_VAMOS, "VAMOS (Voice services over Adaptive Multi-user channels on One Slot)" }, { BTS_FEAT_ABIS_OSMO_PCU, "OsmoPCU over OML link IPA multiplex" }, + { BTS_FEAT_BCCH_POWER_RED, "BCCH carrier power reduction mode" }, { 0, NULL } }; @@ -77,5 +78,6 @@ const struct value_string osmo_bts_features_names[] = { { BTS_FEAT_CCN, "CCN" }, { BTS_FEAT_VAMOS, "VAMOS" }, { BTS_FEAT_ABIS_OSMO_PCU, "ABIS_OSMO_PCU" }, + { BTS_FEAT_BCCH_POWER_RED, "BCCH_PWR_RED" }, {} };