Commit dbb61821 authored by luis_pereira87's avatar luis_pereira87

Fix BWP switching to the previous active BWP when there is a RA with Msg3 through DCCH or DTCH

parent 4940146f
......@@ -2245,6 +2245,8 @@ void configure_UE_BWP(gNB_MAC_INST *nr_mac,
else {
DL_BWP = &UE->current_DL_BWP;
UL_BWP = &UE->current_UL_BWP;
sched_ctrl->next_dl_bwp_id = -1;
sched_ctrl->next_ul_bwp_id = -1;
CellGroup = UE->CellGroup;
}
NR_BWP_Downlink_t *dl_bwp = NULL;
......@@ -2273,6 +2275,14 @@ void configure_UE_BWP(gNB_MAC_INST *nr_mac,
DL_BWP->bwp_id = 0;
UL_BWP->bwp_id = 0;
UE->Msg3_dcch_dtch = false;
// Schedule BWP switching to the first active BWP (previous active BWP before RA with Msg3 carrying DCCH or DTCH message)
if (servingCellConfig->firstActiveDownlinkBWP_Id) {
sched_ctrl->next_dl_bwp_id = *servingCellConfig->firstActiveDownlinkBWP_Id;
}
if (servingCellConfig->uplinkConfig->firstActiveUplinkBWP_Id) {
sched_ctrl->next_ul_bwp_id = *servingCellConfig->uplinkConfig->firstActiveUplinkBWP_Id;
}
}
else {
// (re)configuring BWP
......@@ -2326,7 +2336,7 @@ void configure_UE_BWP(gNB_MAC_INST *nr_mac,
}
else {
DL_BWP->bwp_id = 0;
DL_BWP->bwp_id = 0;
UL_BWP->bwp_id = 0;
target_ss = NR_SearchSpace__searchSpaceType_PR_common;
DL_BWP->pdsch_Config = NULL;
UL_BWP->pusch_Config = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment