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
44492e84
Commit
44492e84
authored
Jun 08, 2023
by
jperaldi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug #127978 - [L3 SIMU] regression caused by bug 125066: RRC TIMER on eNB is not properly managed
parent
849ccbf7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
7 deletions
+13
-7
openair2/RRC/LTE/MESSAGES/asn1_msg.c
openair2/RRC/LTE/MESSAGES/asn1_msg.c
+6
-6
openair3/SS/ss_eNB_sys_task.c
openair3/SS/ss_eNB_sys_task.c
+7
-1
No files found.
openair2/RRC/LTE/MESSAGES/asn1_msg.c
View file @
44492e84
...
...
@@ -1881,17 +1881,17 @@ uint8_t do_SIB23(uint8_t Mod_id,
//-----------------------------------------------------------------------------------------------------------------------------------------
// UE Timers and Constants
(
*
sib2
)
->
ue_TimersAndConstants
.
t300
=
rrconfig
->
ue_TimersAndConstants_t300
;
=
configuration
->
radioresourceconfig
[
CC_id
].
ue_TimersAndConstants_t300
;
(
*
sib2
)
->
ue_TimersAndConstants
.
t301
=
rrconfig
->
ue_TimersAndConstants_t301
;
=
configuration
->
radioresourceconfig
[
CC_id
].
ue_TimersAndConstants_t301
;
(
*
sib2
)
->
ue_TimersAndConstants
.
t310
=
rrconfig
->
ue_TimersAndConstants_t310
;
=
configuration
->
radioresourceconfig
[
CC_id
].
ue_TimersAndConstants_t310
;
(
*
sib2
)
->
ue_TimersAndConstants
.
n310
=
rrconfig
->
ue_TimersAndConstants_n310
;
=
configuration
->
radioresourceconfig
[
CC_id
].
ue_TimersAndConstants_n310
;
(
*
sib2
)
->
ue_TimersAndConstants
.
t311
=
rrconfig
->
ue_TimersAndConstants_t311
;
=
configuration
->
radioresourceconfig
[
CC_id
].
ue_TimersAndConstants_t311
;
(
*
sib2
)
->
ue_TimersAndConstants
.
n311
=
rrconfig
->
ue_TimersAndConstants_n311
;
=
configuration
->
radioresourceconfig
[
CC_id
].
ue_TimersAndConstants_n311
;
(
*
sib2
)
->
freqInfo
.
additionalSpectrumEmission
=
1
;
(
*
sib2
)
->
freqInfo
.
ul_CarrierFreq
=
NULL
;
...
...
openair3/SS/ss_eNB_sys_task.c
View file @
44492e84
...
...
@@ -551,7 +551,13 @@ int sys_add_reconfig_cell(struct SYSTEM_CTRL_REQ *req)
RRC_CONFIGURATION_REQ
(
msg_p
).
radioresourceconfig
[
cell_index
].
prach_high_speed
=
AddOrReconfigure
->
Basic
.
v
.
BcchConfig
.
v
.
BcchInfo
.
v
.
SIs
.
v
.
v
[
i
].
message
.
v
.
c1
.
v
.
systemInformation
.
criticalExtensions
.
v
.
systemInformation_r8
.
sib_TypeAndInfo
.
v
[
j
].
v
.
sib2
.
radioResourceConfigCommon
.
prach_Config
.
prach_ConfigInfo
.
highSpeedFlag
;
RRC_CONFIGURATION_REQ
(
msg_p
).
radioresourceconfig
[
cell_index
].
prach_zero_correlation
=
AddOrReconfigure
->
Basic
.
v
.
BcchConfig
.
v
.
BcchInfo
.
v
.
SIs
.
v
.
v
[
i
].
message
.
v
.
c1
.
v
.
systemInformation
.
criticalExtensions
.
v
.
systemInformation_r8
.
sib_TypeAndInfo
.
v
[
j
].
v
.
sib2
.
radioResourceConfigCommon
.
prach_Config
.
prach_ConfigInfo
.
zeroCorrelationZoneConfig
;
RRC_CONFIGURATION_REQ
(
msg_p
).
radioresourceconfig
[
cell_index
].
prach_freq_offset
=
AddOrReconfigure
->
Basic
.
v
.
BcchConfig
.
v
.
BcchInfo
.
v
.
SIs
.
v
.
v
[
i
].
message
.
v
.
c1
.
v
.
systemInformation
.
criticalExtensions
.
v
.
systemInformation_r8
.
sib_TypeAndInfo
.
v
[
j
].
v
.
sib2
.
radioResourceConfigCommon
.
prach_Config
.
prach_ConfigInfo
.
prach_FreqOffset
;
}
RRC_CONFIGURATION_REQ
(
msg_p
).
radioresourceconfig
[
cell_index
].
ue_TimersAndConstants_t300
=
AddOrReconfigure
->
Basic
.
v
.
BcchConfig
.
v
.
BcchInfo
.
v
.
SIs
.
v
.
v
[
i
].
message
.
v
.
c1
.
v
.
systemInformation
.
criticalExtensions
.
v
.
systemInformation_r8
.
sib_TypeAndInfo
.
v
[
j
].
v
.
sib2
.
ue_TimersAndConstants
.
t300
;
RRC_CONFIGURATION_REQ
(
msg_p
).
radioresourceconfig
[
cell_index
].
ue_TimersAndConstants_t301
=
AddOrReconfigure
->
Basic
.
v
.
BcchConfig
.
v
.
BcchInfo
.
v
.
SIs
.
v
.
v
[
i
].
message
.
v
.
c1
.
v
.
systemInformation
.
criticalExtensions
.
v
.
systemInformation_r8
.
sib_TypeAndInfo
.
v
[
j
].
v
.
sib2
.
ue_TimersAndConstants
.
t310
;
RRC_CONFIGURATION_REQ
(
msg_p
).
radioresourceconfig
[
cell_index
].
ue_TimersAndConstants_t310
=
AddOrReconfigure
->
Basic
.
v
.
BcchConfig
.
v
.
BcchInfo
.
v
.
SIs
.
v
.
v
[
i
].
message
.
v
.
c1
.
v
.
systemInformation
.
criticalExtensions
.
v
.
systemInformation_r8
.
sib_TypeAndInfo
.
v
[
j
].
v
.
sib2
.
ue_TimersAndConstants
.
t310
;
RRC_CONFIGURATION_REQ
(
msg_p
).
radioresourceconfig
[
cell_index
].
ue_TimersAndConstants_t311
=
AddOrReconfigure
->
Basic
.
v
.
BcchConfig
.
v
.
BcchInfo
.
v
.
SIs
.
v
.
v
[
i
].
message
.
v
.
c1
.
v
.
systemInformation
.
criticalExtensions
.
v
.
systemInformation_r8
.
sib_TypeAndInfo
.
v
[
j
].
v
.
sib2
.
ue_TimersAndConstants
.
t311
;
RRC_CONFIGURATION_REQ
(
msg_p
).
radioresourceconfig
[
cell_index
].
ue_TimersAndConstants_n310
=
AddOrReconfigure
->
Basic
.
v
.
BcchConfig
.
v
.
BcchInfo
.
v
.
SIs
.
v
.
v
[
i
].
message
.
v
.
c1
.
v
.
systemInformation
.
criticalExtensions
.
v
.
systemInformation_r8
.
sib_TypeAndInfo
.
v
[
j
].
v
.
sib2
.
ue_TimersAndConstants
.
n310
;
RRC_CONFIGURATION_REQ
(
msg_p
).
radioresourceconfig
[
cell_index
].
ue_TimersAndConstants_n311
=
AddOrReconfigure
->
Basic
.
v
.
BcchConfig
.
v
.
BcchInfo
.
v
.
SIs
.
v
.
v
[
i
].
message
.
v
.
c1
.
v
.
systemInformation
.
criticalExtensions
.
v
.
systemInformation_r8
.
sib_TypeAndInfo
.
v
[
j
].
v
.
sib2
.
ue_TimersAndConstants
.
n311
;
}
/* SIB3 */
if
(
SQN_SystemInformation_r8_IEs_sib_TypeAndInfo_s_sib3
==
AddOrReconfigure
->
Basic
.
v
.
BcchConfig
.
v
.
BcchInfo
.
v
.
SIs
.
v
.
v
[
i
].
message
.
v
.
c1
.
v
.
systemInformation
.
criticalExtensions
.
v
.
systemInformation_r8
.
sib_TypeAndInfo
.
v
[
j
].
d
)
{
...
...
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