Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sreeram M
openairinterface5G
Commits
b98a98b9
Commit
b98a98b9
authored
7 years ago
by
Florian Kaltenberger
Browse files
Options
Downloads
Patches
Plain Diff
few minor fixes
parent
1940750a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openair2/RRC/LITE/L2_interface.c
+4
-1
4 additions, 1 deletion
openair2/RRC/LITE/L2_interface.c
targets/RT/USER/lte-softmodem.c
+2
-2
2 additions, 2 deletions
targets/RT/USER/lte-softmodem.c
with
6 additions
and
3 deletions
openair2/RRC/LITE/L2_interface.c
+
4
−
1
View file @
b98a98b9
...
...
@@ -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
);
}
//-------------------------------------------------------------------------------------------//
...
...
This diff is collapsed.
Click to expand it.
targets/RT/USER/lte-softmodem.c
+
2
−
2
View file @
b98a98b9
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment