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
zzha zzha
OpenXG-RAN
Commits
4c45400d
Commit
4c45400d
authored
Nov 05, 2014
by
Lionel Gauthier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
git-svn-id:
http://svn.eurecom.fr/openair4G/trunk@5968
818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent
6747ef9b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
17 deletions
+28
-17
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+28
-17
No files found.
targets/RT/USER/lte-softmodem.c
View file @
4c45400d
...
...
@@ -338,20 +338,26 @@ uint32_t target_dl_mcs = 28; //maximum allowed mcs
uint32_t
target_ul_mcs
=
10
;
int16_t
glog_level
=
LOG_DEBUG
;
int16_t
glog_verbosity
=
LOG_MED
;
int16_t
hw_log_level
=
LOG_DEBUG
;
int16_t
hw_log_verbosity
=
LOG_MED
;
int16_t
phy_log_level
=
LOG_DEBUG
;
int16_t
phy_log_verbosity
=
LOG_MED
;
int16_t
mac_log_level
=
LOG_DEBUG
;
int16_t
mac_log_verbosity
=
LOG_MED
;
int16_t
rlc_log_level
=
LOG_DEBUG
;
int16_t
rlc_log_verbosity
=
LOG_MED
;
int16_t
pdcp_log_level
=
LOG_DEBUG
;
int16_t
pdcp_log_verbosity
=
LOG_MED
;
int16_t
rrc_log_level
=
LOG_DEBUG
;
int16_t
rrc_log_verbosity
=
LOG_MED
;
int16_t
glog_level
=
LOG_DEBUG
;
int16_t
glog_verbosity
=
LOG_MED
;
int16_t
hw_log_level
=
LOG_DEBUG
;
int16_t
hw_log_verbosity
=
LOG_MED
;
int16_t
phy_log_level
=
LOG_DEBUG
;
int16_t
phy_log_verbosity
=
LOG_MED
;
int16_t
mac_log_level
=
LOG_DEBUG
;
int16_t
mac_log_verbosity
=
LOG_MED
;
int16_t
rlc_log_level
=
LOG_DEBUG
;
int16_t
rlc_log_verbosity
=
LOG_MED
;
int16_t
pdcp_log_level
=
LOG_DEBUG
;
int16_t
pdcp_log_verbosity
=
LOG_MED
;
int16_t
rrc_log_level
=
LOG_DEBUG
;
int16_t
rrc_log_verbosity
=
LOG_MED
;
# if defined(ENABLE_USE_MME)
int16_t
gtpu_log_level
=
LOG_DEBUG
;
int16_t
gtpu_log_verbosity
=
LOG_MED
;
int16_t
udp_log_level
=
LOG_DEBUG
;
int16_t
udp_log_verbosity
=
LOG_MED
;
#endif
unsigned
int
build_rflocal
(
int
txi
,
int
txq
,
int
rxi
,
int
rxq
)
{
...
...
@@ -2599,7 +2605,12 @@ static void get_options (int argc, char **argv) {
pdcp_log_verbosity
=
enb_properties
->
properties
[
i
]
->
pdcp_log_verbosity
;
rrc_log_level
=
enb_properties
->
properties
[
i
]
->
rrc_log_level
;
rrc_log_verbosity
=
enb_properties
->
properties
[
i
]
->
rrc_log_verbosity
;
# if defined(ENABLE_USE_MME)
gtpu_log_level
=
enb_properties
->
properties
[
i
]
->
gtpu_log_level
;
gtpu_log_verbosity
=
enb_properties
->
properties
[
i
]
->
gtpu_log_verbosity
;
udp_log_level
=
enb_properties
->
properties
[
i
]
->
udp_log_level
;
udp_log_verbosity
=
enb_properties
->
properties
[
i
]
->
udp_log_verbosity
;
#endif
// adjust the log
for
(
CC_id
=
0
;
CC_id
<
MAX_NUM_CCs
;
CC_id
++
)
{
...
...
@@ -2725,8 +2736,8 @@ int main(int argc, char **argv) {
#if defined(ENABLE_ITTI)
set_comp_log
(
EMU
,
LOG_INFO
,
LOG_MED
,
1
);
# if defined(ENABLE_USE_MME)
set_comp_log
(
UDP_
,
LOG_DEBUG
,
LOG_HIGH
,
1
);
set_comp_log
(
GTPU
,
LOG_DEBUG
,
LOG_HIGH
,
1
);
set_comp_log
(
UDP_
,
udp_log_level
,
udp_log_verbosity
,
1
);
set_comp_log
(
GTPU
,
gtpu_log_level
,
gtpu_log_verbosity
,
1
);
set_comp_log
(
S1AP
,
LOG_DEBUG
,
LOG_HIGH
,
1
);
set_comp_log
(
SCTP
,
LOG_INFO
,
LOG_HIGH
,
1
);
# endif
...
...
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