Commit 1791bd5c authored by Robert Schmidt's avatar Robert Schmidt

Call indication regularly

parent f14c1f7c
...@@ -1246,6 +1246,9 @@ int trigger_scheduler(nfapi_nr_slot_indication_scf_t *slot_ind) ...@@ -1246,6 +1246,9 @@ int trigger_scheduler(nfapi_nr_slot_indication_scf_t *slot_ind)
if (g_sched_resp.UL_dci_req.numPdus > 0) if (g_sched_resp.UL_dci_req.numPdus > 0)
oai_nfapi_ul_dci_req(&g_sched_resp.UL_dci_req); oai_nfapi_ul_dci_req(&g_sched_resp.UL_dci_req);
NR_UL_IND_t ind = {.frame = slot_ind->sfn, .slot = slot_ind->slot, };
NR_UL_indication(&ind);
return 1; return 1;
} }
......
...@@ -487,6 +487,7 @@ void NR_UL_indication(NR_UL_IND_t *UL_info) { ...@@ -487,6 +487,7 @@ void NR_UL_indication(NR_UL_IND_t *UL_info) {
} }
} }
if (UL_info->rach_ind.number_of_pdus > 0)
handle_nr_rach(UL_info); handle_nr_rach(UL_info);
handle_nr_uci(UL_info); handle_nr_uci(UL_info);
handle_nr_ulsch(UL_info); handle_nr_ulsch(UL_info);
......
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