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
8cf85d53
Commit
8cf85d53
authored
Sep 26, 2022
by
Vaibhav Shrivastava
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for systemInfoValueTag
parent
b55ddcc7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
openair2/COMMON/rrc_messages_types.h
openair2/COMMON/rrc_messages_types.h
+1
-0
openair2/RRC/LTE/MESSAGES/asn1_msg.c
openair2/RRC/LTE/MESSAGES/asn1_msg.c
+6
-1
openair3/SS/ss_eNB_sys_task.c
openair3/SS/ss_eNB_sys_task.c
+1
-0
No files found.
openair2/COMMON/rrc_messages_types.h
View file @
8cf85d53
...
...
@@ -323,6 +323,7 @@ typedef struct RrcConfigurationReq_s {
int
eMBMS_M2_configured
;
int
eMTC_configured
;
int
SL_configured
;
uint8_t
systemInfoValueTag
;
RadioResourceConfig
radioresourceconfig
[
MAX_NUM_CCs
];
RadioResourceConfig
radioresourceconfig_BR
[
MAX_NUM_CCs
];
...
...
openair2/RRC/LTE/MESSAGES/asn1_msg.c
View file @
8cf85d53
...
...
@@ -974,7 +974,12 @@ uint8_t do_SIB1(rrc_eNB_carrier_data_t *carrier,
}
(
*
sib1
)
->
si_WindowLength
=
LTE_SystemInformationBlockType1__si_WindowLength_ms20
;
(
*
sib1
)
->
systemInfoValueTag
=
0
;
if
(
RC
.
ss
.
mode
==
SS_SOFTMODEM
)
{
(
*
sib1
)
->
systemInfoValueTag
=
configuration
->
systemInfoValueTag
;
}
else
{
(
*
sib1
)
->
systemInfoValueTag
=
0
;
}
LOG_A
(
RRC
,
"Updating systemInfoValueTag Value: (*sib1)->systemInfoValueTag: %d
\n
"
,(
*
sib1
)
->
systemInfoValueTag
);
(
*
sib1
)
->
nonCriticalExtension
=
calloc
(
1
,
sizeof
(
LTE_SystemInformationBlockType1_v890_IEs_t
));
LTE_SystemInformationBlockType1_v890_IEs_t
*
sib1_890
=
(
*
sib1
)
->
nonCriticalExtension
;
sib1_890
->
lateNonCriticalExtension
=
NULL
;
...
...
openair3/SS/ss_eNB_sys_task.c
View file @
8cf85d53
...
...
@@ -423,6 +423,7 @@ int sys_add_reconfig_cell(struct CellConfigInfo_Type *AddOrReconfigure)
}
RRC_CONFIGURATION_REQ
(
msg_p
).
num_plmn
=
SIB1_CELL_ACCESS_REL_INFO
.
plmn_IdentityList
.
d
;
RRC_CONFIGURATION_REQ
(
msg_p
).
systemInfoValueTag
=
SIDL_SIB1_VAL
.
c1
.
v
.
systemInformationBlockType1
.
systemInfoValueTag
;
for
(
int
i
=
0
;
i
<
RRC_CONFIGURATION_REQ
(
msg_p
).
num_plmn
;
++
i
)
{
if
(
SIB1_CELL_ACCESS_REL_INFO
.
plmn_IdentityList
.
v
->
plmn_Identity
.
mcc
.
d
==
TRUE
)
...
...
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