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
fadf3ac6
Commit
fadf3ac6
authored
Feb 19, 2018
by
tomita
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed log level.
parent
25d209f7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
openair1/PHY/INIT/lte_init.c
openair1/PHY/INIT/lte_init.c
+2
-2
openair2/LAYER2/MAC/config.c
openair2/LAYER2/MAC/config.c
+3
-3
targets/RT/USER/lte-ru.c
targets/RT/USER/lte-ru.c
+1
-1
No files found.
openair1/PHY/INIT/lte_init.c
View file @
fadf3ac6
...
...
@@ -256,7 +256,7 @@ void phy_config_request(PHY_Config_t *phy_config) {
AssertFatal(fp->prach_emtc_config_common.prach_ConfigInfo.prach_numRepetitionPerPreambleAttempt[0] > 0,
"prach_emtc_config_common.prach_ConfigInfo.prach_numRepetitionPerPreambleAttempt[0]==0\n");
#else
LOG_
E
(
PHY
,
"***DJP*** removed assert on preamble fp->prach_emtc_config_common.prach_ConfigInfo.prach_numRepetitionPerPreambleAttempt[0]:%d expecting >0 %s:%d
\n\n\n
"
,
fp
->
prach_emtc_config_common
.
prach_ConfigInfo
.
prach_numRepetitionPerPreambleAttempt
[
0
],
__FILE__
,
__LINE__
);
LOG_
D
(
PHY
,
"***DJP*** removed assert on preamble fp->prach_emtc_config_common.prach_ConfigInfo.prach_numRepetitionPerPreambleAttempt[0]:%d expecting >0 %s:%d
\n\n\n
"
,
fp
->
prach_emtc_config_common
.
prach_ConfigInfo
.
prach_numRepetitionPerPreambleAttempt
[
0
],
__FILE__
,
__LINE__
);
#endif
fp
->
prach_emtc_config_common
.
prach_ConfigInfo
.
prach_ConfigIndex
[
0
]
=
cfg
->
emtc_config
.
prach_ce_level_0_configuration_index
.
value
;
fp
->
prach_emtc_config_common
.
prach_ConfigInfo
.
prach_FreqOffset
[
0
]
=
cfg
->
emtc_config
.
prach_ce_level_0_frequency_offset
.
value
;
...
...
@@ -1779,7 +1779,7 @@ int phy_init_RU(RU_t *ru) {
AssertFatal
(
RC
.
nb_L1_inst
<=
NUMBER_OF_eNB_MAX
,
"eNB instances %d > %d
\n
"
,
RC
.
nb_L1_inst
,
NUMBER_OF_eNB_MAX
);
LOG_
E
(
PHY
,
"[INIT] %s() RC.nb_L1_inst:%d
\n
"
,
__FUNCTION__
,
RC
.
nb_L1_inst
);
LOG_
D
(
PHY
,
"[INIT] %s() RC.nb_L1_inst:%d
\n
"
,
__FUNCTION__
,
RC
.
nb_L1_inst
);
for
(
i
=
0
;
i
<
RC
.
nb_L1_inst
;
i
++
)
{
for
(
p
=
0
;
p
<
15
;
p
++
)
{
...
...
openair2/LAYER2/MAC/config.c
View file @
fadf3ac6
...
...
@@ -251,7 +251,7 @@ void config_mib(int Mod_idP,
cfg
->
rf_config
.
dl_channel_bandwidth
.
value
=
to_prb
(
dl_BandwidthP
);
cfg
->
rf_config
.
dl_channel_bandwidth
.
tl
.
tag
=
NFAPI_RF_CONFIG_DL_CHANNEL_BANDWIDTH_TAG
;
cfg
->
num_tlv
++
;
LOG_
E
(
PHY
,
"%s() dl_BandwidthP:%d
\n
"
,
__FUNCTION__
,
dl_BandwidthP
);
LOG_
D
(
PHY
,
"%s() dl_BandwidthP:%d
\n
"
,
__FUNCTION__
,
dl_BandwidthP
);
cfg
->
rf_config
.
ul_channel_bandwidth
.
value
=
to_prb
(
dl_BandwidthP
);
cfg
->
rf_config
.
ul_channel_bandwidth
.
tl
.
tag
=
NFAPI_RF_CONFIG_UL_CHANNEL_BANDWIDTH_TAG
;
...
...
@@ -762,7 +762,7 @@ rrc_mac_config_req_eNB(module_id_t Mod_idP,
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_RRC_MAC_CONFIG
,
VCD_FUNCTION_IN
);
LOG_
E
(
MAC
,
"RC.mac:%p mib:%p
\n
"
,
RC
.
mac
,
mib
);
LOG_
D
(
MAC
,
"RC.mac:%p mib:%p
\n
"
,
RC
.
mac
,
mib
);
if
(
mib
!=
NULL
)
{
if
(
RC
.
mac
==
NULL
)
...
...
@@ -997,7 +997,7 @@ rrc_mac_config_req_eNB(module_id_t Mod_idP,
}
#endif
LOG_
E
(
MAC
,
"%s() %s:%d RC.mac[Mod_idP]->if_inst->PHY_config_req:%p
\n
"
,
__FUNCTION__
,
__FILE__
,
__LINE__
,
RC
.
mac
[
Mod_idP
]
->
if_inst
->
PHY_config_req
);
LOG_
D
(
MAC
,
"%s() %s:%d RC.mac[Mod_idP]->if_inst->PHY_config_req:%p
\n
"
,
__FUNCTION__
,
__FILE__
,
__LINE__
,
RC
.
mac
[
Mod_idP
]
->
if_inst
->
PHY_config_req
);
// if in nFAPI mode
if
(
...
...
targets/RT/USER/lte-ru.c
View file @
fadf3ac6
...
...
@@ -2222,7 +2222,7 @@ void init_RU(char *rf_config_file) {
}
else
{
LOG_
E
(
PHY
,
"DJP - delete code above this %s:%d
\n
"
,
__FILE__
,
__LINE__
);
LOG_
D
(
PHY
,
"DJP - delete code above this %s:%d
\n
"
,
__FILE__
,
__LINE__
);
}
eNB0
=
ru
->
eNB_list
[
0
];
...
...
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