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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
6d947f37
Commit
6d947f37
authored
Nov 23, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Place NFAPI waiting after RU init; don't wait for F1 if in PNF
parent
e45a8212
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
executables/nr-softmodem.c
executables/nr-softmodem.c
+7
-6
No files found.
executables/nr-softmodem.c
View file @
6d947f37
...
...
@@ -733,20 +733,21 @@ int main( int argc, char **argv ) {
#endif // E2_AGENT
if
(
NFAPI_MODE
==
NFAPI_MODE_PNF
)
{
wait_nfapi_init
(
"main?"
);
}
// wait for F1 Setup Response before starting L1 for real
if
(
N
ODE_IS_DU
(
node_type
)
||
NODE_IS_MONOLITHIC
(
node_type
))
if
(
N
FAPI_MODE
!=
NFAPI_MODE_PNF
&&
(
NODE_IS_DU
(
node_type
)
||
NODE_IS_MONOLITHIC
(
node_type
)
))
wait_f1_setup_response
();
if
(
RC
.
nb_RU
>
0
)
start_NR_RU
();
#ifdef ENABLE_AERIAL
nvIPC_Init
();
#endif
if
(
NFAPI_MODE
==
NFAPI_MODE_PNF
)
{
wait_nfapi_init
(
"main?"
);
}
if
(
RC
.
nb_nr_L1_inst
>
0
)
{
printf
(
"wait RUs
\n
"
);
wait_RUs
();
...
...
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