Commit db3fcb2e authored by Robert Schmidt's avatar Robert Schmidt

Temporary fix

parent 1f69d15d
......@@ -422,6 +422,8 @@ void pf_dl(module_id_t module_id,
float coeff_ue[MAX_MOBILES_PER_GNB];
NR_list_t UE_sched; // UEs that could be scheduled
int ue_array[MAX_MOBILES_PER_GNB];
UE_sched.next = &ue_array[0];
int *uep = &UE_sched.head;
/* Loop UE_info->list to check retransmission */
......
......@@ -556,6 +556,8 @@ void pf_ul(module_id_t module_id,
NR_UE_info_t *UE_info = &RC.nrmac[module_id]->UE_info;
float coeff_ue[MAX_MOBILES_PER_GNB];
NR_list_t UE_sched;
int ue_array[MAX_MOBILES_PER_GNB];
UE_sched.next = &ue_array[0];
int *uep = &UE_sched.head;
/* Loop UE_list to calculate throughput and coeff */
......
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