Commit 45923567 authored by ChiehChun's avatar ChiehChun Committed by Robert Schmidt

Remove assert of allocate CSI PUCCH

parent c654c8c0
...@@ -276,11 +276,6 @@ void nr_csi_meas_reporting(int Mod_idP, ...@@ -276,11 +276,6 @@ void nr_csi_meas_reporting(int Mod_idP,
} }
// verify resources are free // verify resources are free
for (int i = start; i < start + len; ++i) { for (int i = start; i < start + len; ++i) {
AssertFatal((vrb_map_UL[i] & mask) == 0,
"cannot allocate CSI PUCCH for UE %04x: PRB %d used in symbs %lx\n",
UE_info->rnti[UE_id],
i,
mask);
vrb_map_UL[i] |= mask; vrb_map_UL[i] |= mask;
} }
AssertFatal(!curr_pucch->simultaneous_harqcsi, AssertFatal(!curr_pucch->simultaneous_harqcsi,
......
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