bts_features: Add new feature to indicate support for temporary overpower

To indicate to the BSC that a BTS supports temporary overpower of
SACCH/FACCH channels a new feature BTS_FEAT_ACCH_TOP is added.

Change-Id: I62fbfc30acd5d67b20727b75a8f256e6b5d31e06
Related: SYS#5319
This commit is contained in:
Philipp Maier 2021-08-30 17:53:36 +02:00 committed by laforge
parent 0e44a7203c
commit 58f76d8b90
2 changed files with 2 additions and 0 deletions

View File

@ -32,6 +32,7 @@ enum osmo_bts_features {
BTS_FEAT_ABIS_OSMO_PCU, /* BTS supports forwarding data to PCUIF over IPA OML multiplex */
BTS_FEAT_BCCH_POWER_RED,
BTS_FEAT_DYN_TS_SDCCH8, /* Osmo Dynamic TS supports configured as SDCCH8 */
BTS_FEAT_ACCH_TEMP_OVP, /* FACCH/SACCH Temporary overpower */
_NUM_BTS_FEAT
};

View File

@ -47,6 +47,7 @@ const struct value_string osmo_bts_features_descs[] = {
{ BTS_FEAT_ABIS_OSMO_PCU, "OsmoPCU over OML link IPA multiplex" },
{ BTS_FEAT_BCCH_POWER_RED, "BCCH carrier power reduction mode" },
{ BTS_FEAT_DYN_TS_SDCCH8, "Dynamic Timeslot configuration as SDCCH8" },
{ BTS_FEAT_ACCH_TEMP_OVP, "FACCH/SACCH Temporary overpower" },
{ 0, NULL }
};