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
d40db13e
Commit
d40db13e
authored
Jul 03, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make reconfiguration work
parent
63379511
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+8
-4
No files found.
openair2/RRC/NR/rrc_gNB.c
View file @
d40db13e
...
...
@@ -1218,18 +1218,22 @@ int nr_rrc_reconfiguration_req(rrc_gNB_ue_context_t *const ue_context_pP
NULL
,
masterCellGroup
);
nr_rrc_mac_update_cellgroup
(
ue_context_pP
->
ue_context
.
rnti
,
masterCellGroup
);
gNB_RRC_INST
*
rrc
=
RC
.
nrrrc
[
ctxt_pP
->
module_id
];
nr_rrc_transfer_protected_rrc_message
(
rrc
,
ue_p
,
DCCH
,
buffer
,
size
);
if
(
NODE_IS_DU
(
rrc
->
node_type
)
||
NODE_IS_MONOLITHIC
(
rrc
->
node_type
))
{
uint32_t
delay_ms
=
ue_p
->
masterCellGroup
&&
ue_p
->
masterCellGroup
->
spCellConfig
&&
ue_p
->
masterCellGroup
->
spCellConfig
->
spCellConfigDedicated
nr_rrc_mac_update_cellgroup
(
ue_context_pP
->
ue_context
.
rnti
,
masterCellGroup
);
uint32_t
delay_ms
=
ue_p
->
masterCellGroup
&&
ue_p
->
masterCellGroup
->
spCellConfig
&&
ue_p
->
masterCellGroup
->
spCellConfig
->
spCellConfigDedicated
&&
ue_p
->
masterCellGroup
->
spCellConfig
->
spCellConfigDedicated
->
downlinkBWP_ToAddModList
?
NR_RRC_RECONFIGURATION_DELAY_MS
+
NR_RRC_BWP_SWITCHING_DELAY_MS
:
NR_RRC_RECONFIGURATION_DELAY_MS
;
nr_mac_enable_ue_rrc_processing_timer
(
ctxt_pP
->
module_id
,
ue_p
->
rnti
,
*
rrc
->
carrier
.
servingcellconfigcommon
->
ssbSubcarrierSpacing
,
delay_ms
);
nr_mac_enable_ue_rrc_processing_timer
(
ctxt_pP
->
module_id
,
ue_p
->
rnti
,
*
rrc
->
carrier
.
servingcellconfigcommon
->
ssbSubcarrierSpacing
,
delay_ms
);
}
return
0
;
...
...
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