Commit fdb4c692 authored by Robert Schmidt's avatar Robert Schmidt

Preprocessor: check for number of UEs

parent f13c97db
......@@ -451,6 +451,13 @@ void nr_simple_dlsch_preprocessor(module_id_t module_id,
int num_slots_per_tdd) {
NR_UE_info_t *UE_info = &RC.nrmac[module_id]->UE_info;
AssertFatal(UE_info->num_UEs <= 1,
"%s() cannot handle more than one UE, but found %d\n",
__func__,
UE_info->num_UEs);
if (UE_info->num_UEs == 0)
return;
const int UE_id = 0;
const int CC_id = 0;
......
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