Commit 5f34c157 authored by Manu Agrawal's avatar Manu Agrawal

Changes

parent 014fa2f3
...@@ -129,7 +129,7 @@ void ss_nr_port_man_send_data( ...@@ -129,7 +129,7 @@ void ss_nr_port_man_send_data(
memset(&cnf, 0, sizeof(cnf)); memset(&cnf, 0, sizeof(cnf));
/*TODO: */ /*TODO: */
cnf.Common.CellId = SS_context.eutra_cellId; cnf.Common.CellId = SS_context.eutra_cellId;
cnf.Common.RoutingInfo.d = RoutingInfo_Type_None; cnf.Common.RoutingInfo.d = NR_RoutingInfo_Type_None;
cnf.Common.RoutingInfo.v.None = true; cnf.Common.RoutingInfo.v.None = true;
cnf.Common.TimingInfo.d = TimingInfo_Type_Now; cnf.Common.TimingInfo.d = TimingInfo_Type_Now;
cnf.Common.TimingInfo.v.Now = true; cnf.Common.TimingInfo.v.Now = true;
......
...@@ -141,7 +141,7 @@ static void sys_handle_nr_enquire_timing(ss_nrset_timinfo_t *tinfo) ...@@ -141,7 +141,7 @@ static void sys_handle_nr_enquire_timing(ss_nrset_timinfo_t *tinfo)
MessageDef *message_p = itti_alloc_new_message(TASK_SYS_GNB, INSTANCE_DEFAULT, SS_NRSET_TIM_INFO); MessageDef *message_p = itti_alloc_new_message(TASK_SYS_GNB, INSTANCE_DEFAULT, SS_NRSET_TIM_INFO);
if (message_p) if (message_p)
{ {
LOG_A(NR_RRC, "[SYS-GNB] Reporting info sfn:%d\t sf:%d.\n", tinfo->sfn, tinfo->slot); LOG_A(NR_RRC, "[SYS-GNB] Reporting info sfn:%d\t slot:%d.\n", tinfo->sfn, tinfo->slot);
SS_NRSET_TIM_INFO(message_p).slot = tinfo->slot; SS_NRSET_TIM_INFO(message_p).slot = tinfo->slot;
SS_NRSET_TIM_INFO(message_p).sfn = tinfo->sfn; SS_NRSET_TIM_INFO(message_p).sfn = tinfo->sfn;
......
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