Vadim Yanitskiy has uploaded this change for review. ( https://gerrit.osmocom.org/14219
Change subject: trxcon/sched_lchan_desc.c: fix missing TRX_CH_FLAG_AUTO flag ...................................................................... trxcon/sched_lchan_desc.c: fix missing TRX_CH_FLAG_AUTO flag In I2fc61e1cdca4690a34e2861b9ee3b7c64ea64843 I introduced a regression. TRXC_SDCCH4_CBCH should have TRX_CH_FLAG_AUTO, because it's a part of GSM_PCHAN_CCCH_SDCCH4_CBCH multi-frame layout. If the controlling side on the other end of the L1CTL link requests this particular multi-frame layout, CBCH channel is expected to be active. Change-Id: I3ed942106a03220417b5cb9176107af057120fbe --- M src/host/trxcon/sched_lchan_desc.c 1 file changed, 1 insertion(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/19/14219/1 diff --git a/src/host/trxcon/sched_lchan_desc.c b/src/host/trxcon/sched_lchan_desc.c index 5cee7c8..667a88d 100644 --- a/src/host/trxcon/sched_lchan_desc.c +++ b/src/host/trxcon/sched_lchan_desc.c @@ -530,6 +530,7 @@ /* Same as for TRXC_BCCH (xCCH), but Rx only. See above. */ .burst_buf_size = 4 * GSM_BURST_PL_LEN, + .flags = TRX_CH_FLAG_AUTO, .rx_fn = rx_data_fn, }, [TRXC_SDCCH8_CBCH] = { -- To view, visit https://gerrit.osmocom.org/14219 To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings Gerrit-Project: osmocom-bb Gerrit-Branch: master Gerrit-MessageType: newchange Gerrit-Change-Id: I3ed942106a03220417b5cb9176107af057120fbe Gerrit-Change-Number: 14219 Gerrit-PatchSet: 1 Gerrit-Owner: Vadim Yanitskiy <axilira...@gmail.com>