laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bsc/+/28974 )
Change subject: bts_nokia_site: Implement channel config for CBCH ......................................................................
bts_nokia_site: Implement channel config for CBCH
Thanks to manawyrm for pointing out that the comments of the file actually contained the numeric codes for the CBCH variants, but the cases in the switch statements were missing.
Change-Id: Id5b4da6838f9a34db39fff5c23ad18822cd3347b --- M src/osmo-bsc/bts_nokia_site.c 1 file changed, 6 insertions(+), 0 deletions(-)
Approvals: manawyrm: Looks good to me, approved; Verified Jenkins Builder: Verified
diff --git a/src/osmo-bsc/bts_nokia_site.c b/src/osmo-bsc/bts_nokia_site.c index 4895e6e..2028009 100644 --- a/src/osmo-bsc/bts_nokia_site.c +++ b/src/osmo-bsc/bts_nokia_site.c @@ -797,6 +797,9 @@ case GSM_PCHAN_CCCH_SDCCH4: chan_config = 1; break; + case GSM_PCHAN_CCCH_SDCCH4_CBCH: + chan_config = 3; + break; case GSM_PCHAN_TCH_F: chan_config = 6; /* 9 should work too */ break; @@ -806,6 +809,9 @@ case GSM_PCHAN_SDCCH8_SACCH8C: chan_config = 4; break; + case GSM_PCHAN_SDCCH8_SACCH8C_CBCH: + chan_config = 5; + break; case GSM_PCHAN_PDCH: chan_config = 11; break;