fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-bsc/+/27482 )
Change subject: system_information: fix DCS/PCS band indicator in generate_si6()
......................................................................
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/82/27482/1
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
https://gerrit.osmocom.org/c/osmo-bsc/+/27482
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc
Gerrit-Branch: 2021q4
Gerrit-Change-Id: Iaa8377919a144e7f3799b76249f579c8f3874145
Gerrit-Change-Number: 27482
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange