ASCI: add VBS/VGCS support to BTS features list

Related: OS#5783
Change-Id: I583a170070c192c6c47fae41ce923a7439561b4f
This commit is contained in:
Max 2023-01-23 21:19:12 +03:00 committed by laforge
parent 8a5014be08
commit 812dfbf3a7
2 changed files with 4 additions and 0 deletions

View File

@ -34,6 +34,8 @@ enum osmo_bts_features {
BTS_FEAT_DYN_TS_SDCCH8, /* Osmo Dynamic TS supports configured as SDCCH8 */
BTS_FEAT_ACCH_TEMP_OVP, /* FACCH/SACCH Temporary overpower */
BTS_FEAT_OSMUX, /* Osmux (Osmocom RTP muxing) support */
BTS_FEAT_VBS, /* Voice Broadcast Service support, 3GPP TS 43.069 */
BTS_FEAT_VGCS, /* Voice Group Call Service support, 3GPP TS 44.068 */
_NUM_BTS_FEAT
};

View File

@ -44,6 +44,8 @@ const struct value_string osmo_bts_features_descs[] = {
{ BTS_FEAT_DYN_TS_SDCCH8, "Dynamic Timeslot configuration as SDCCH8" },
{ BTS_FEAT_ACCH_TEMP_OVP, "FACCH/SACCH Temporary overpower" },
{ BTS_FEAT_OSMUX, "Osmux (Osmocom RTP multiplexing)" },
{ BTS_FEAT_VBS, "Voice Broadcast Service" },
{ BTS_FEAT_VGCS, "Voice Group Call Service" },
{ 0, NULL }
};