From 1521bed9e5b9e195d309d1714c5deb8c276cb938 Mon Sep 17 00:00:00 2001 From: "lal.harshita" Date: Wed, 9 Dec 2020 14:12:51 +0530 Subject: [PATCH] Fix for incorrect values in SIB1 DL DCI pdu Change-Id: I2ae7e37194ae7dee32c781ffc28052f50b255d7c Signed-off-by: lal.harshita --- src/5gnrmac/mac_slot_ind.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/5gnrmac/mac_slot_ind.c b/src/5gnrmac/mac_slot_ind.c index 7f9142e0d..19f8f0e20 100644 --- a/src/5gnrmac/mac_slot_ind.c +++ b/src/5gnrmac/mac_slot_ind.c @@ -65,6 +65,8 @@ uint8_t MacProcDlAlloc(Pst *pst, DlSchedInfo *dlSchedInfo) dlSlot[dlSchedInfo->schSlotValue.broadcastTime.slot]; currDlSlot->dlInfo.isBroadcastPres = true; memcpy(&currDlSlot->dlInfo.brdcstAlloc, &dlSchedInfo->brdcstAlloc, sizeof(DlBrdcstAlloc)); + currDlSlot->dlInfo.brdcstAlloc.sib1Alloc.sib1PdcchCfg.dci.pdschCfg = \ + &currDlSlot->dlInfo.brdcstAlloc.sib1Alloc.sib1PdschCfg; } if(dlSchedInfo->rarAlloc != NULLP) -- 2.16.6