bts_features: add feature for BCCH carrier power reduction mode

Change-Id: I69283b3f35988fc7a1a1dcf1a1ad3b67f08ec716
Related: SYS#4919
This commit is contained in:
Vadim Yanitskiy 2021-06-25 19:34:38 +02:00
parent e4378b7e38
commit 1c2a329f85
2 changed files with 3 additions and 0 deletions

View File

@ -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
};

View File

@ -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" },
{}
};