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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
dcdf057d
Commit
dcdf057d
authored
2 years ago
by
Roberto Louro Magueta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable T304 after receiving the reconfigurationWithSync
parent
342ea088
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
4 deletions
+32
-4
openair2/RRC/NR_UE/rrc_UE.c
openair2/RRC/NR_UE/rrc_UE.c
+32
-4
No files found.
openair2/RRC/NR_UE/rrc_UE.c
View file @
dcdf057d
...
...
@@ -1286,10 +1286,38 @@ nr_rrc_ue_process_masterCellGroup(
xer_fprint
(
stdout
,
&
asn_DEF_NR_CellGroupConfig
,
(
const
void
*
)
cellGroupConfig
);
}
if
(
cellGroupConfig
->
spCellConfig
!=
NULL
&&
cellGroupConfig
->
spCellConfig
->
reconfigurationWithSync
!=
NULL
){
//TODO (perform Reconfiguration with sync according to 5.3.5.5.2)
//TODO (resume all suspended radio bearers and resume SCG transmission for all radio bearers, if suspended)
// NSA procedures
// TS 38.331 - Section 5.3.5.5.2 Reconfiguration with sync
if
(
cellGroupConfig
->
spCellConfig
!=
NULL
&&
cellGroupConfig
->
spCellConfig
->
reconfigurationWithSync
!=
NULL
)
{
LOG_A
(
NR_RRC
,
"Received the reconfigurationWithSync in %s
\n
"
,
__FUNCTION__
);
NR_ReconfigurationWithSync_t
*
reconfigurationWithSync
=
cellGroupConfig
->
spCellConfig
->
reconfigurationWithSync
;
NR_UE_rrc_inst
[
ctxt_pP
->
module_id
].
Info
[
gNB_index
].
T304_active
=
1
;
switch
(
reconfigurationWithSync
->
t304
)
{
case
NR_ReconfigurationWithSync__t304_ms100
:
NR_UE_rrc_inst
[
ctxt_pP
->
module_id
].
Info
[
gNB_index
].
T304_cnt
=
100
;
break
;
case
NR_ReconfigurationWithSync__t304_ms150
:
NR_UE_rrc_inst
[
ctxt_pP
->
module_id
].
Info
[
gNB_index
].
T304_cnt
=
150
;
break
;
case
NR_ReconfigurationWithSync__t304_ms200
:
NR_UE_rrc_inst
[
ctxt_pP
->
module_id
].
Info
[
gNB_index
].
T304_cnt
=
200
;
break
;
case
NR_ReconfigurationWithSync__t304_ms500
:
NR_UE_rrc_inst
[
ctxt_pP
->
module_id
].
Info
[
gNB_index
].
T304_cnt
=
500
;
break
;
case
NR_ReconfigurationWithSync__t304_ms1000
:
NR_UE_rrc_inst
[
ctxt_pP
->
module_id
].
Info
[
gNB_index
].
T304_cnt
=
1000
;
break
;
case
NR_ReconfigurationWithSync__t304_ms2000
:
NR_UE_rrc_inst
[
ctxt_pP
->
module_id
].
Info
[
gNB_index
].
T304_cnt
=
2000
;
break
;
case
NR_ReconfigurationWithSync__t304_ms10000
:
NR_UE_rrc_inst
[
ctxt_pP
->
module_id
].
Info
[
gNB_index
].
T304_cnt
=
10000
;
break
;
default:
NR_UE_rrc_inst
[
ctxt_pP
->
module_id
].
Info
[
gNB_index
].
T304_cnt
=
50
;
}
}
if
(
NR_UE_rrc_inst
[
ctxt_pP
->
module_id
].
cell_group_config
==
NULL
){
...
...
This diff is collapsed.
Click to expand it.
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