Skip to content

Commit

Permalink
Fixing slot indication message
Browse files Browse the repository at this point in the history
Change-Id: I794675377f1faefec47924d7ebb4a91d74426916
Signed-off-by: pborla <[email protected]>
  • Loading branch information
pborla committed Oct 29, 2024
1 parent 72d7fc1 commit b30b071
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/5gnrmac/lwr_mac_handle_phy.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,13 @@ uint8_t procSlotInd(fapi_slot_ind_t *fapiSlotInd)
if(slotInd)
{
slotInd->cellId = lwrMacCb.cellCb[0].cellId;
#ifndef OAI_TESTING
slotInd->sfn = fapiSlotInd->sfn;
slotInd->slot = fapiSlotInd->slot;
#else
slotInd->sfn = reverseBytes16(fapiSlotInd->sfn);
slotInd->slot = reverseBytes16(fapiSlotInd->slot);
#endif
FILL_PST_LWR_MAC_TO_MAC(pst, EVENT_SLOT_IND_TO_MAC);
pst.selector = ODU_SELECTOR_LWLC;
ret = (*sendSlotIndOpts[pst.selector])(&pst, slotInd);
Expand Down

0 comments on commit b30b071

Please sign in to comment.