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
71790ccb
Commit
71790ccb
authored
Feb 20, 2024
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove noS1 condition to init pdcp in phy-test mode
parent
c599e172
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
+5
-8
executables/nr-uesoftmodem.c
executables/nr-uesoftmodem.c
+5
-8
No files found.
executables/nr-uesoftmodem.c
View file @
71790ccb
...
...
@@ -515,14 +515,11 @@ int main(int argc, char **argv)
uint16_t
node_number
=
get_softmodem_params
()
->
node_number
;
ue_id_g
=
(
node_number
==
0
)
?
0
:
node_number
-
2
;
AssertFatal
(
ue_id_g
>=
0
,
"UE id is expected to be nonnegative.
\n
"
);
if
(
IS_SOFTMODEM_NOS1
||
get_softmodem_params
()
->
sa
||
get_softmodem_params
()
->
nsa
)
{
if
(
node_number
==
0
)
{
if
(
node_number
==
0
)
init_pdcp
(
0
);
}
else
{
else
init_pdcp
(
mode_offset
+
ue_id_g
);
}
}
init_NR_UE
(
NB_UE_INST
,
uecap_file
,
reconfig_file
,
rbconfig_file
);
...
...
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