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
lizhongxiao
OpenXG-RAN
Commits
d3d76080
Commit
d3d76080
authored
Nov 22, 2022
by
laurent
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor fixes
parent
ef1d5079
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
executables/lte-ru.c
executables/lte-ru.c
+3
-3
openair2/LAYER2/MAC/eNB_scheduler_primitives.c
openair2/LAYER2/MAC/eNB_scheduler_primitives.c
+1
-1
openair2/RRC/LTE/MESSAGES/asn1_msg.c
openair2/RRC/LTE/MESSAGES/asn1_msg.c
+1
-2
No files found.
executables/lte-ru.c
View file @
d3d76080
...
...
@@ -1472,11 +1472,11 @@ static void *ru_stats_thread(void *param) {
sleep
(
1
);
if
(
opp_enabled
)
{
if
(
ru
->
feprx
)
print_meas
(
&
ru
->
ofdm_demod_stats
,
"feprx"
,
NULL
,
NULL
);
if
(
ru
->
feprx
)
print_meas
(
&
ru
->
ofdm_demod_stats
,
"feprx
_ru
"
,
NULL
,
NULL
);
if
(
ru
->
feptx_ofdm
)
print_meas
(
&
ru
->
ofdm_mod_stats
,
"feptx_ofdm"
,
NULL
,
NULL
);
if
(
ru
->
feptx_ofdm
)
print_meas
(
&
ru
->
ofdm_mod_stats
,
"feptx_ofdm
_ru
"
,
NULL
,
NULL
);
if
(
ru
->
fh_north_asynch_in
)
print_meas
(
&
ru
->
rx_fhaul
,
"rx_fhaul"
,
NULL
,
NULL
);
if
(
ru
->
fh_north_asynch_in
)
print_meas
(
&
ru
->
rx_fhaul
,
"rx_fhaul
_ru
"
,
NULL
,
NULL
);
if
(
ru
->
fh_north_out
)
{
print_meas
(
&
ru
->
tx_fhaul
,
"tx_fhaul"
,
NULL
,
NULL
);
...
...
openair2/LAYER2/MAC/eNB_scheduler_primitives.c
View file @
d3d76080
...
...
@@ -2445,7 +2445,7 @@ get_tmode(module_id_t module_idP,
return
(
cc
->
p_eNB
);
}
AssertFatal
(
1
==
0
,
"Shouldn't be here
\n
"
);
AssertFatal
(
false
,
"Shouldn't be here, antenna info: %p, %d cc:%d, ue:%d active: %d;
\n
"
,
physicalConfigDedicated
->
antennaInfo
,
physicalConfigDedicated
->
antennaInfo
->
present
,
CC_idP
,
UE_idP
,
is_UE_active
(
module_idP
,
UE_idP
)
);
return
0
;
}
...
...
openair2/RRC/LTE/MESSAGES/asn1_msg.c
View file @
d3d76080
...
...
@@ -2462,7 +2462,6 @@ do_RRCConnectionSetup(
struct
LTE_SRB_ToAddMod__rlc_Config
*
SRB1_rlc_config
=
NULL
;
struct
LTE_SRB_ToAddMod__logicalChannelConfig
*
SRB1_lchan_config
=
NULL
;
struct
LTE_LogicalChannelConfig__ul_SpecificParameters
*
SRB1_ul_SpecificParameters
=
NULL
;
LTE_PhysicalConfigDedicated_t
*
physicalConfigDedicated2
=
NULL
;
LTE_DL_CCCH_Message_t
dl_ccch_msg
;
LTE_RRCConnectionSetup_t
*
rrcConnectionSetup
=
NULL
;
LTE_DL_FRAME_PARMS
*
frame_parms
=
&
RC
.
eNB
[
ctxt_pP
->
module_id
][
CC_id
]
->
frame_parms
;
...
...
@@ -2509,7 +2508,7 @@ do_RRCConnectionSetup(
SRB1_ul_SpecificParameters
->
logicalChannelGroup
=
logicalchannelgroup
;
asn1cSeqAdd
(
&
(
*
SRB_configList
)
->
list
,
SRB1_config
);
// PhysicalConfigDedicated
physicalConfigDedicated2
=
CALLOC
(
1
,
sizeof
(
*
physicalConfigDedicated2
));
LTE_PhysicalConfigDedicated_t
*
physicalConfigDedicated2
=
CALLOC
(
1
,
sizeof
(
*
physicalConfigDedicated2
));
*
physicalConfigDedicated
=
physicalConfigDedicated2
;
physicalConfigDedicated2
->
pdsch_ConfigDedicated
=
CALLOC
(
1
,
sizeof
(
*
physicalConfigDedicated2
->
pdsch_ConfigDedicated
));
physicalConfigDedicated2
->
pucch_ConfigDedicated
=
CALLOC
(
1
,
sizeof
(
*
physicalConfigDedicated2
->
pucch_ConfigDedicated
));
...
...
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