fixeria submitted this change.

View Change

Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve osmith: Looks good to me, approved
system_information: fix DCS/PCS band indicator in generate_si6()

Change-Id: Iaa8377919a144e7f3799b76249f579c8f3874145
---
M src/osmo-bsc/system_information.c
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/osmo-bsc/system_information.c b/src/osmo-bsc/system_information.c
index e1b369d..d912bd5 100644
--- a/src/osmo-bsc/system_information.c
+++ b/src/osmo-bsc/system_information.c
@@ -1210,7 +1210,7 @@
gsm48_set_dtx(&si6->cell_options, bts->dtxu, bts->dtxu, false);

/* SI6 Rest Octets: 10.5.2.35a: PCH / NCH info, VBS/VGCS options */
- si6_ro_info.band_indicator_1900 = is_dcs_net(bts);
+ si6_ro_info.band_indicator_1900 = !is_dcs_net(bts);
rc = osmo_gsm48_rest_octets_si6_encode(si6->rest_octets, &si6_ro_info);

return l2_plen + rc;

To view, visit change 27482. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-bsc
Gerrit-Branch: 2021q4
Gerrit-Change-Id: Iaa8377919a144e7f3799b76249f579c8f3874145
Gerrit-Change-Number: 27482
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: osmith <osmith@sysmocom.de>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>
Gerrit-MessageType: merged