Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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 UE
Commits
270ec88f
Commit
270ec88f
authored
Nov 28, 2017
by
Florian Kaltenberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
few minor fixes
parent
49784eaf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
openair2/RRC/LITE/L2_interface.c
openair2/RRC/LITE/L2_interface.c
+4
-1
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+2
-2
No files found.
openair2/RRC/LITE/L2_interface.c
View file @
270ec88f
...
...
@@ -807,7 +807,10 @@ mac_UE_get_rrc_status(
)
//------------------------------------------------------------------------------
{
return
(
UE_rrc_inst
[
Mod_idP
].
Info
[
indexP
].
State
);
if
(
UE_rrc_inst
)
return
(
UE_rrc_inst
[
Mod_idP
].
Info
[
indexP
].
State
);
else
return
(
-
1
);
}
//-------------------------------------------------------------------------------------------//
...
...
targets/RT/USER/lte-softmodem.c
View file @
270ec88f
...
...
@@ -633,7 +633,7 @@ static void get_options(void) {
}
if
(
n_rb_dl
!=
0
)
{
printf
(
"NB_RB set to %d
\n
"
,
frame_parms
[
0
]
->
N_RB_DL
);
printf
(
"NB_RB set to %d
\n
"
,
n_rb_dl
);
if
(
n_rb_dl
<
6
)
{
n_rb_dl
=
6
;
printf
(
"%i: Invalid number of ressource blocks, adjusted to 6
\n
"
,
n_rb_dl
);
...
...
@@ -936,7 +936,7 @@ int main( int argc, char **argv )
printf
(
"configuring for UE
\n
"
);
set_comp_log
(
HW
,
LOG_DEBUG
,
LOG_HIGH
,
1
);
set_comp_log
(
PHY
,
LOG_
DEBUG
,
LOG_HIGH
,
1
);
set_comp_log
(
PHY
,
LOG_
INFO
,
LOG_HIGH
,
1
);
set_comp_log
(
MAC
,
LOG_INFO
,
LOG_HIGH
,
1
);
set_comp_log
(
RLC
,
LOG_INFO
,
LOG_HIGH
|
FLAG_THREAD
,
1
);
set_comp_log
(
PDCP
,
LOG_INFO
,
LOG_HIGH
,
1
);
...
...
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