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
f5c7d705
Commit
f5c7d705
authored
May 21, 2022
by
Vaibhav Shrivastava
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Q_rxlev & Proxy Fix
parent
94345351
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
openair2/ENB_APP/enb_config.c
openair2/ENB_APP/enb_config.c
+3
-0
openair2/RRC/LTE/MESSAGES/asn1_msg.c
openair2/RRC/LTE/MESSAGES/asn1_msg.c
+11
-1
No files found.
openair2/ENB_APP/enb_config.c
View file @
f5c7d705
...
@@ -422,6 +422,9 @@ int RCconfig_RRC(uint32_t i, eNB_RRC_INST *rrc, int macrlc_has_f1) {
...
@@ -422,6 +422,9 @@ int RCconfig_RRC(uint32_t i, eNB_RRC_INST *rrc, int macrlc_has_f1) {
for
(
int
I
=
0
;
I
<
sizeof
(
PLMNParams
)
/
sizeof
(
paramdef_t
);
++
I
)
for
(
int
I
=
0
;
I
<
sizeof
(
PLMNParams
)
/
sizeof
(
paramdef_t
);
++
I
)
PLMNParams
[
I
].
chkPptr
=
&
(
config_check_PLMNParams
[
I
]);
PLMNParams
[
I
].
chkPptr
=
&
(
config_check_PLMNParams
[
I
]);
//Firecell
RRC_CONFIGURATION_REQ
(
msg_p
).
q_QualMin
=
0
;
RRC_CONFIGURATION_REQ
(
msg_p
).
q_RxLevMin
=
0
;
// In the configuration file it is in seconds. For RRC it has to be in milliseconds
// In the configuration file it is in seconds. For RRC it has to be in milliseconds
RRC_CONFIGURATION_REQ
(
msg_p
).
rrc_inactivity_timer_thres
=
(
*
ENBParamList
.
paramarray
[
i
][
ENB_RRC_INACTIVITY_THRES_IDX
].
uptr
)
*
1000
;
RRC_CONFIGURATION_REQ
(
msg_p
).
rrc_inactivity_timer_thres
=
(
*
ENBParamList
.
paramarray
[
i
][
ENB_RRC_INACTIVITY_THRES_IDX
].
uptr
)
*
1000
;
...
...
openair2/RRC/LTE/MESSAGES/asn1_msg.c
View file @
f5c7d705
...
@@ -936,7 +936,17 @@ uint8_t do_SIB1(rrc_eNB_carrier_data_t *carrier,
...
@@ -936,7 +936,17 @@ uint8_t do_SIB1(rrc_eNB_carrier_data_t *carrier,
// assign_enum(&(*sib1)->cellAccessRelatedInfo.intraFreqReselection,SystemInformationBlockType1__cellAccessRelatedInfo__intraFreqReselection_allowed);
// assign_enum(&(*sib1)->cellAccessRelatedInfo.intraFreqReselection,SystemInformationBlockType1__cellAccessRelatedInfo__intraFreqReselection_allowed);
(
*
sib1
)
->
cellAccessRelatedInfo
.
intraFreqReselection
=
LTE_SystemInformationBlockType1__cellAccessRelatedInfo__intraFreqReselection_notAllowed
;
(
*
sib1
)
->
cellAccessRelatedInfo
.
intraFreqReselection
=
LTE_SystemInformationBlockType1__cellAccessRelatedInfo__intraFreqReselection_notAllowed
;
(
*
sib1
)
->
cellAccessRelatedInfo
.
csg_Indication
=
0
;
(
*
sib1
)
->
cellAccessRelatedInfo
.
csg_Indication
=
0
;
(
*
sib1
)
->
cellSelectionInfo
.
q_RxLevMin
=-
65
;
if
(
RC
.
ss
.
mode
==
SS_SOFTMODEM
)
{
LOG_D
(
RRC
,
"Updating q_RxLevMin: %d
\n
"
,
configuration
->
q_RxLevMin
);
(
*
sib1
)
->
cellSelectionInfo
.
q_RxLevMin
=
configuration
->
q_RxLevMin
;
}
else
{
(
*
sib1
)
->
cellSelectionInfo
.
q_RxLevMin
=-
65
;
}
(
*
sib1
)
->
cellSelectionInfo
.
q_RxLevMinOffset
=
NULL
;
(
*
sib1
)
->
cellSelectionInfo
.
q_RxLevMinOffset
=
NULL
;
//(*sib1)->p_Max = CALLOC(1, sizeof(P_Max_t));
//(*sib1)->p_Max = CALLOC(1, sizeof(P_Max_t));
// *((*sib1)->p_Max) = 23;
// *((*sib1)->p_Max) = 23;
...
...
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