Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
openairinterface-6g
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
OpenXG
openairinterface-6g
Commits
88baba89
Commit
88baba89
authored
Nov 08, 2025
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do not handle not decoded cellGroupConfig (issue #1031)
parent
566da531
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
13 deletions
+12
-13
openair2/RRC/NR_UE/rrc_UE.c
openair2/RRC/NR_UE/rrc_UE.c
+12
-13
No files found.
openair2/RRC/NR_UE/rrc_UE.c
View file @
88baba89
...
...
@@ -1161,20 +1161,19 @@ static void nr_rrc_ue_process_rrcReconfiguration(NR_UE_RRC_INST_t *rrc, int gNB_
LOG_E
(
NR_RRC
,
"
\n
"
);
// free the memory
SEQUENCE_free
(
&
asn_DEF_NR_CellGroupConfig
,
(
void
*
)
cellGroupConfig
,
1
);
}
else
{
if
(
LOG_DEBUGFLAG
(
DEBUG_ASN1
))
xer_fprint
(
stdout
,
&
asn_DEF_NR_CellGroupConfig
,
(
const
void
*
)
cellGroupConfig
);
nr_rrc_cellgroup_configuration
(
rrc
,
cellGroupConfig
,
gNB_index
);
AssertFatal
(
!
IS_SA_MODE
(
get_softmodem_params
()),
"secondaryCellGroup only used in NSA for now
\n
"
);
nr_mac_rrc_message_t
rrc_msg
=
{
0
};
rrc_msg
.
payload_type
=
NR_MAC_RRC_CONFIG_CG
;
nr_mac_rrc_config_cg_t
*
config_cg
=
&
rrc_msg
.
payload
.
config_cg
;
config_cg
->
cellGroupConfig
=
cellGroupConfig
;
config_cg
->
UE_NR_Capability
=
rrc
->
UECap
.
UE_NR_Capability
;
nr_rrc_send_msg_to_mac
(
rrc
,
&
rrc_msg
);
}
if
(
LOG_DEBUGFLAG
(
DEBUG_ASN1
))
xer_fprint
(
stdout
,
&
asn_DEF_NR_CellGroupConfig
,
(
const
void
*
)
cellGroupConfig
);
nr_rrc_cellgroup_configuration
(
rrc
,
cellGroupConfig
,
gNB_index
);
AssertFatal
(
!
IS_SA_MODE
(
get_softmodem_params
()),
"secondaryCellGroup only used in NSA for now
\n
"
);
nr_mac_rrc_message_t
rrc_msg
=
{
0
};
rrc_msg
.
payload_type
=
NR_MAC_RRC_CONFIG_CG
;
nr_mac_rrc_config_cg_t
*
config_cg
=
&
rrc_msg
.
payload
.
config_cg
;
config_cg
->
cellGroupConfig
=
cellGroupConfig
;
config_cg
->
UE_NR_Capability
=
rrc
->
UECap
.
UE_NR_Capability
;
nr_rrc_send_msg_to_mac
(
rrc
,
&
rrc_msg
);
}
if
(
ie
->
measConfig
)
{
LOG_I
(
NR_RRC
,
"RRCReconfiguration includes Measurement Configuration
\n
"
);
...
...
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