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
73327968
Commit
73327968
authored
Oct 28, 2021
by
Melissa Elkadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing white space and added a TODO comment
parent
26ddb9ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
executables/nr-ue.c
executables/nr-ue.c
+2
-2
openair2/PHY_INTERFACE/phy_stub_UE.c
openair2/PHY_INTERFACE/phy_stub_UE.c
+5
-1
No files found.
executables/nr-ue.c
View file @
73327968
...
...
@@ -407,8 +407,8 @@ static void *NRUE_phy_stub_standalone_pnf_task(void *arg)
nr_phy_channel_params_t
*
ch_info
=
get_queue
(
&
nr_chan_param_queue
);
if
(
!
slot_ind
&&
!
ch_info
)
{
LOG_D
(
MAC
,
"get nr_sfn_slot_queue and nr_chan_param_queue == NULL!
\n
"
);
continue
;
LOG_D
(
MAC
,
"get nr_sfn_slot_queue and nr_chan_param_queue == NULL!
\n
"
);
continue
;
}
if
(
slot_ind
)
{
sfn_slot
=
*
slot_ind
;
...
...
openair2/PHY_INTERFACE/phy_stub_UE.c
View file @
73327968
...
...
@@ -2061,7 +2061,11 @@ static float get_bler_val(uint8_t mcs, int sinr)
static
inline
bool
is_channel_modeling
(
void
)
{
/* TODO: For now we enable channel modeling based on the node_number.
Replace with a command line option to enable/disable channel modeling. */
Replace with a command line option to enable/disable channel modeling.
The LTE UE will crash when channel modeling is conducted for NSA
mode. It does not crash for LTE mode. We have not implemented channel
modeling for NSA mode yet. For now, we ensure only do do chanel modeling
in LTE mode. */
return
node_number
==
0
&&
!
get_softmodem_params
()
->
nsa
;
}
...
...
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