Call NR_Slot_indication when handling SLOT.indication from PNF instead of NR_UL_Indication

parent a7d6dd25
...@@ -753,7 +753,7 @@ int aerial_nfapi_nr_vnf_p7_start(nfapi_vnf_p7_config_t *config) ...@@ -753,7 +753,7 @@ int aerial_nfapi_nr_vnf_p7_start(nfapi_vnf_p7_config_t *config)
"Calling NR_UL_indication for gNB->UL_INFO.frame = %d and slot %d\n", "Calling NR_UL_indication for gNB->UL_INFO.frame = %d and slot %d\n",
gNB->UL_INFO.frame, gNB->UL_INFO.frame,
gNB->UL_INFO.slot); gNB->UL_INFO.slot);
gNB->if_inst->NR_UL_indication(&gNB->UL_INFO); gNB->if_inst->NR_slot_indication(gNB->Mod_id,gNB->CC_id, slot_ind->sfn,slot_ind->slot);
prev_slot = gNB->UL_INFO.slot; prev_slot = gNB->UL_INFO.slot;
} }
free(slot_ind); free(slot_ind);
......
...@@ -194,7 +194,7 @@ int nfapi_nr_vnf_p7_start(nfapi_vnf_p7_config_t* config) ...@@ -194,7 +194,7 @@ int nfapi_nr_vnf_p7_start(nfapi_vnf_p7_config_t* config)
gNB->UL_INFO.CC_id = gNB->CC_id; gNB->UL_INFO.CC_id = gNB->CC_id;
NFAPI_TRACE(NFAPI_TRACE_DEBUG, "Calling NR_UL_indication for gNB->UL_INFO.frame = %d and slot %d\n", NFAPI_TRACE(NFAPI_TRACE_DEBUG, "Calling NR_UL_indication for gNB->UL_INFO.frame = %d and slot %d\n",
gNB->UL_INFO.frame, gNB->UL_INFO.slot); gNB->UL_INFO.frame, gNB->UL_INFO.slot);
gNB->if_inst->NR_UL_indication(&gNB->UL_INFO); gNB->if_inst->NR_slot_indication(gNB->Mod_id,gNB->CC_id, slot_ind->sfn,slot_ind->slot);
prev_slot = gNB->UL_INFO.slot; prev_slot = gNB->UL_INFO.slot;
} }
free(slot_ind); free(slot_ind);
......
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