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
Michael Black
OpenXG-RAN
Commits
85e06605
Commit
85e06605
authored
Nov 05, 2021
by
Melissa Elkadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Checking for emulate_l2 instead of NSA flag
parent
f5366823
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
executables/nr-uesoftmodem.c
executables/nr-uesoftmodem.c
+1
-1
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
+1
-1
No files found.
executables/nr-uesoftmodem.c
View file @
85e06605
...
...
@@ -489,7 +489,7 @@ int main( int argc, char **argv ) {
if
(
get_softmodem_params
()
->
sa
)
AssertFatal
(
get_softmodem_params
()
->
phy_test
==
0
,
"Standalone mode and phy_test are mutually exclusive
\n
"
);
if
(
get_softmodem_params
()
->
emulate_l2
)
if
(
!
get_softmodem_params
()
->
nsa
&&
get_softmodem_params
()
->
emulate_l2
)
start_oai_nrue_threads
();
if
(
!
get_softmodem_params
()
->
nsa
&&
!
get_softmodem_params
()
->
emulate_l2
)
{
...
...
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
View file @
85e06605
...
...
@@ -1124,7 +1124,7 @@ nr_ue_if_module_t *nr_ue_if_module_init(uint32_t module_id){
nr_ue_if_module_inst
[
module_id
]
->
current_frame
=
0
;
nr_ue_if_module_inst
[
module_id
]
->
current_slot
=
0
;
nr_ue_if_module_inst
[
module_id
]
->
phy_config_request
=
nr_ue_phy_config_request
;
if
(
get_softmodem_params
()
->
emulate_l2
||
get_softmodem_params
()
->
nsa
)
if
(
get_softmodem_params
()
->
emulate_l2
)
nr_ue_if_module_inst
[
module_id
]
->
scheduled_response
=
nr_ue_scheduled_response_stub
;
else
nr_ue_if_module_inst
[
module_id
]
->
scheduled_response
=
nr_ue_scheduled_response
;
...
...
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