Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lizhongxiao
OpenXG-RAN
Commits
4762827c
Commit
4762827c
authored
Jul 20, 2023
by
wli
Committed by
Jerome Peraldi
Aug 03, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do not enqueue time upd message to VTP task until VT is enabled
parent
be44675b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
12 deletions
+14
-12
openair2/NR_PHY_INTERFACE/NR_IF_Module.c
openair2/NR_PHY_INTERFACE/NR_IF_Module.c
+12
-11
openair3/SS/ss_gNB_vtp_task.c
openair3/SS/ss_gNB_vtp_task.c
+2
-1
No files found.
openair2/NR_PHY_INTERFACE/NR_IF_Module.c
View file @
4762827c
...
@@ -414,20 +414,21 @@ void NR_UL_indication(NR_UL_IND_t *UL_info) {
...
@@ -414,20 +414,21 @@ void NR_UL_indication(NR_UL_IND_t *UL_info) {
LOG_E
(
NR_PHY
,
"[SS] Error in L1_Thread itti_send_msg_to_task"
);
LOG_E
(
NR_PHY
,
"[SS] Error in L1_Thread itti_send_msg_to_task"
);
}
}
}
}
if
(
RC
.
ss
.
vtp_ready
==
1
){
message_p
=
itti_alloc_new_message
(
TASK_VTP
,
INSTANCE_DEFAULT
,
SS_NRUPD_TIM_INFO
);
if
(
message_p
)
{
SS_NRUPD_TIM_INFO
(
message_p
).
slot
=
UL_info
->
slot
;
SS_NRUPD_TIM_INFO
(
message_p
).
sfn
=
UL_info
->
frame
;
message_p
=
itti_alloc_new_message
(
TASK_VTP
,
INSTANCE_DEFAULT
,
SS_NRUPD_TIM_INFO
);
int
send_res
=
itti_send_msg_to_task
(
TASK_VTP
,
INSTANCE_DEFAULT
,
message_p
);
if
(
message_p
)
if
(
send_res
<
0
)
{
{
SS_NRUPD_TIM_INFO
(
message_p
).
slot
=
UL_info
->
slot
;
LOG_E
(
NR_PHY
,
"[SS] Error in L1_Thread itti_send_msg_to_task"
)
;
SS_NRUPD_TIM_INFO
(
message_p
).
sfn
=
UL_info
->
frame
;
}
int
send_res
=
itti_send_msg_to_task
(
TASK_VTP
,
INSTANCE_DEFAULT
,
message_p
);
if
(
send_res
<
0
)
{
LOG_E
(
NR_PHY
,
"[SS] Error in L1_Thread itti_send_msg_to_task"
);
}
}
}
}
}
}
nfapi_nr_rach_indication_t
*
rach_ind
=
NULL
;
nfapi_nr_rach_indication_t
*
rach_ind
=
NULL
;
...
...
openair3/SS/ss_gNB_vtp_task.c
View file @
4762827c
...
@@ -483,10 +483,11 @@ static void ss_gNB_wait_first_msg(void)
...
@@ -483,10 +483,11 @@ static void ss_gNB_wait_first_msg(void)
if
(
virtualTime
->
Enable
)
{
if
(
virtualTime
->
Enable
)
{
ss_gNB_vt_ena
();
ss_gNB_vt_ena
();
}
}
break
;
_ss_log_vt
(
virtualTime
,
" => (enable message) "
);
_ss_log_vt
(
virtualTime
,
" => (enable message) "
);
acpSysVTEnquireTimingAckFreeSrv
(
virtualTime
);
acpSysVTEnquireTimingAckFreeSrv
(
virtualTime
);
break
;
}
}
LOG_A
(
GNB_APP
,
"[SS_VTP] Waiting for First VT-ACK From Client(on-start)
\n
"
);
LOG_A
(
GNB_APP
,
"[SS_VTP] Waiting for First VT-ACK From Client(on-start)
\n
"
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment