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
11577f6b
Commit
11577f6b
authored
Mar 25, 2022
by
rmagueta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix DU to CU RRC message encode
parent
a1739a11
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
openair2/COMMON/f1ap_messages_types.h
openair2/COMMON/f1ap_messages_types.h
+4
-2
openair2/RRC/NR/L2_nr_interface.c
openair2/RRC/NR/L2_nr_interface.c
+4
-4
No files found.
openair2/COMMON/f1ap_messages_types.h
View file @
11577f6b
...
@@ -61,6 +61,8 @@
...
@@ -61,6 +61,8 @@
#define F1AP_MAX_NO_OF_TNL_ASSOCIATIONS 32
#define F1AP_MAX_NO_OF_TNL_ASSOCIATIONS 32
#define F1AP_MAX_NO_UE_ID 1024
#define F1AP_MAX_NO_UE_ID 1024
#define F1AP_MAX_DU2CU_RRC_LENGTH 1024
typedef
struct
f1ap_net_ip_address_s
{
typedef
struct
f1ap_net_ip_address_s
{
unsigned
ipv4
:
1
;
unsigned
ipv4
:
1
;
unsigned
ipv6
:
1
;
unsigned
ipv6
:
1
;
...
@@ -307,7 +309,7 @@ typedef struct f1ap_initial_ul_rrc_message_s {
...
@@ -307,7 +309,7 @@ typedef struct f1ap_initial_ul_rrc_message_s {
uint16_t
crnti
;
uint16_t
crnti
;
uint8_t
*
rrc_container
;
uint8_t
*
rrc_container
;
int
rrc_container_length
;
int
rrc_container_length
;
char
du2cu_rrc_container
[
200
];
char
du2cu_rrc_container
[
F1AP_MAX_DU2CU_RRC_LENGTH
];
int
du2cu_rrc_container_length
;
int
du2cu_rrc_container_length
;
}
f1ap_initial_ul_rrc_message_t
;
}
f1ap_initial_ul_rrc_message_t
;
...
...
openair2/RRC/NR/L2_nr_interface.c
View file @
11577f6b
...
@@ -346,7 +346,7 @@ int8_t nr_mac_rrc_data_ind(const module_id_t module_idP,
...
@@ -346,7 +346,7 @@ int8_t nr_mac_rrc_data_ind(const module_id_t module_idP,
NULL
,
NULL
,
(
void
*
)
&
cellGroupConfig
,
(
void
*
)
&
cellGroupConfig
,
msg
->
du2cu_rrc_container
,
msg
->
du2cu_rrc_container
,
1024
);
//sizeof(msg->du2cu_rrc_container)
);
F1AP_MAX_DU2CU_RRC_LENGTH
);
if
(
enc_rval
.
encoded
==
-
1
)
{
if
(
enc_rval
.
encoded
==
-
1
)
{
LOG_E
(
F1AP
,
"Could not encoded cellGroupConfig, failed element %s
\n
"
,
enc_rval
.
failed_type
->
name
);
LOG_E
(
F1AP
,
"Could not encoded cellGroupConfig, failed element %s
\n
"
,
enc_rval
.
failed_type
->
name
);
...
...
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