aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-06-25 19:34:38 +0200
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-06-25 19:34:52 +0200
commit1c2a329f858c15efd08bd81c424d54871acf7090 (patch)
treed556d192898cb19a365688872a76ce2a40042976
parente4378b7e389ec5c20844160a66ec71d731cf4ab2 (diff)
bts_features: add feature for BCCH carrier power reduction mode
-rw-r--r--include/osmocom/gsm/bts_features.h1
-rw-r--r--src/gsm/bts_features.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/include/osmocom/gsm/bts_features.h b/include/osmocom/gsm/bts_features.h
index 8bd5ef57..53746196 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 6e63d5c0..66719465 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" },
{}
};