Commit aaab02c7 authored by Swetank Srivastava's avatar Swetank Srivastava

gNB VTP Porting and Working Changes

parent d2c42c9b
...@@ -169,13 +169,6 @@ void nr_schedule_pucch(gNB_MAC_INST *nrmac, ...@@ -169,13 +169,6 @@ void nr_schedule_pucch(gNB_MAC_INST *nrmac,
if (!curr_pucch->active) if (!curr_pucch->active)
continue; continue;
LOG_A(NR_MAC,"fxn:%s frameP:%d curr_pucch->frame:%d slotP:%d curr_pucch->ul_slot:%d \n",
__FUNCTION__,
frameP,
curr_pucch->frame,
slotP,
curr_pucch->ul_slot);
DevAssert(frameP == curr_pucch->frame && slotP == curr_pucch->ul_slot); DevAssert(frameP == curr_pucch->frame && slotP == curr_pucch->ul_slot);
const uint16_t O_ack = curr_pucch->dai_c; const uint16_t O_ack = curr_pucch->dai_c;
...@@ -1253,14 +1246,6 @@ void nr_sr_reporting(gNB_MAC_INST *nrmac, frame_t SFN, sub_frame_t slot) ...@@ -1253,14 +1246,6 @@ void nr_sr_reporting(gNB_MAC_INST *nrmac, frame_t SFN, sub_frame_t slot)
else if (curr_pucch->active) { else if (curr_pucch->active) {
AssertFatal(1==0, "This shouldn't happen! curr_pucch frame.slot %d.%d not matching with SR function frame.slot %d.%d\n", AssertFatal(1==0, "This shouldn't happen! curr_pucch frame.slot %d.%d not matching with SR function frame.slot %d.%d\n",
curr_pucch->frame, curr_pucch->ul_slot, SFN, slot); curr_pucch->frame, curr_pucch->ul_slot, SFN, slot);
LOG_A(NR_MAC,"fxn:%d frameP:%d curr_pucch->frame:%d slotP:%d curr_pucch->ul_slot:%d \n",
__FUNCTION__,
SFN,
curr_pucch->frame,
slot,
curr_pucch->ul_slot);
continue; continue;
} }
else { else {
......
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