Commit 1cf5c56c authored by General ABS's avatar General ABS Committed by abs

Configure SRB1, SRB2, and DRB1, and receive the RRC Reconfiguration Complete...

Configure SRB1, SRB2, and DRB1, and receive the RRC Reconfiguration Complete at target gNB-DU and gNB-CU
parent ad29bd1a
......@@ -310,7 +310,16 @@ int DU_send_UE_CONTEXT_SETUP_RESPONSE(instance_t instance, f1ap_ue_context_setup
ie4->id = F1AP_ProtocolIE_ID_id_C_RNTI;
ie4->criticality = F1AP_Criticality_ignore;
ie4->value.present = F1AP_UEContextSetupResponseIEs__value_PR_C_RNTI;
ie4->value.choice.C_RNTI = *resp->crnti;
ie4->value.choice.C_RNTI = *resp->crnti;
if (f1ap_get_rnti_by_cu_id(DUtype, instance, resp->gNB_CU_ue_id) == -1) {
int f1ap_uid = f1ap_add_ue(DUtype, instance, *resp->crnti);
if (f1ap_uid < 0) {
LOG_E(F1AP, "Failed to add UE \n");
return -1;
}
resp->gNB_CU_ue_id = f1ap_get_cu_ue_f1ap_id(DUtype, instance, *resp->crnti);
resp->gNB_DU_ue_id = f1ap_get_du_ue_f1ap_id(DUtype, instance, *resp->crnti);
}
}
/* optional */
......
......@@ -140,6 +140,6 @@ int f1ap_handle_message(instance_t instance,
pdu);
}
ASN_STRUCT_FREE(asn_DEF_F1AP_F1AP_PDU, pdu);
//ASN_STRUCT_FREE(asn_DEF_F1AP_F1AP_PDU, pdu);
return ret;
}
......@@ -1128,11 +1128,7 @@ int8_t nr_rrc_ue_decode_NR_BCCH_DL_SCH_Message(module_id_t module_id,
return 0;
}
//-----------------------------------------------------------------------------
void nr_rrc_ue_process_masterCellGroup(const protocol_ctxt_t *const ctxt_pP,
uint8_t gNB_index,
OCTET_STRING_t *masterCellGroup)
//-----------------------------------------------------------------------------
void nr_rrc_ue_process_masterCellGroup(protocol_ctxt_t *ctxt_pP, uint8_t gNB_index, OCTET_STRING_t *masterCellGroup)
{
NR_CellGroupConfig_t *cellGroupConfig=NULL;
uper_decode(NULL,
......@@ -1178,6 +1174,7 @@ void nr_rrc_ue_process_masterCellGroup(const protocol_ctxt_t *const ctxt_pP,
default:
timers_and_constants->T304_cnt = 50;
}
ctxt_pP->rntiMaybeUEid = reconfigurationWithSync->newUE_Identity;
}
if(NR_UE_rrc_inst[ctxt_pP->module_id].cell_group_config == NULL){
......@@ -2049,18 +2046,16 @@ nr_rrc_ue_establish_srb2(
if (rrcReconfiguration->criticalExtensions.present
== NR_RRCReconfiguration__criticalExtensions_PR_rrcReconfiguration) {
ie = rrcReconfiguration->criticalExtensions.choice.rrcReconfiguration;
if ((ie->nonCriticalExtension) && (ie->nonCriticalExtension->masterCellGroup != NULL)) {
nr_rrc_ue_process_masterCellGroup(ctxt_pP, gNB_index, ie->nonCriticalExtension->masterCellGroup);
}
if (ie->measConfig != NULL) {
LOG_I(NR_RRC, "Measurement Configuration is present\n");
nr_rrc_ue_process_measConfig(ctxt_pP, gNB_index, ie->measConfig);
}
if((ie->nonCriticalExtension) && (ie->nonCriticalExtension->masterCellGroup!=NULL)) {
nr_rrc_ue_process_masterCellGroup(
ctxt_pP,
gNB_index,
ie->nonCriticalExtension->masterCellGroup);
}
if (ie->radioBearerConfig != NULL) {
LOG_I(NR_RRC, "radio Bearer Configuration is present\n");
nr_rrc_ue_process_RadioBearerConfig(ctxt_pP, gNB_index, ie->radioBearerConfig);
......
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