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
d21aa79f
Commit
d21aa79f
authored
Jul 17, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor F1 Setup Req: MeasurementTimingInformation is part of cell info
parent
85d89164
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
openair2/COMMON/f1ap_messages_types.h
openair2/COMMON/f1ap_messages_types.h
+2
-3
openair2/F1AP/f1ap_du_interface_management.c
openair2/F1AP/f1ap_du_interface_management.c
+1
-1
openair2/GNB_APP/gnb_config.c
openair2/GNB_APP/gnb_config.c
+2
-2
No files found.
openair2/COMMON/f1ap_messages_types.h
View file @
d21aa79f
...
...
@@ -135,6 +135,8 @@ typedef struct f1ap_served_cell_info_t {
f1ap_fdd_info_t
fdd
;
f1ap_tdd_info_t
tdd
;
};
char
*
measurement_timing_information
;
}
f1ap_served_cell_info_t
;
typedef
struct
f1ap_setup_req_s
{
...
...
@@ -150,9 +152,6 @@ typedef struct f1ap_setup_req_s {
}
cell
[
F1AP_MAX_NB_CELLS
];
char
*
measurement_timing_information
[
F1AP_MAX_NB_CELLS
];
uint8_t
ranac
[
F1AP_MAX_NB_CELLS
];
// System Information
uint8_t
*
mib
[
F1AP_MAX_NB_CELLS
];
int
mib_length
[
F1AP_MAX_NB_CELLS
];
...
...
openair2/F1AP/f1ap_du_interface_management.c
View file @
d21aa79f
...
...
@@ -275,7 +275,7 @@ int DU_send_F1_SETUP_REQUEST(instance_t instance, f1ap_setup_req_t *setup_req)
}
/* - measurementTimingConfiguration */
char
*
measurementTimingConfiguration
=
setup_req
->
measurement_timing_information
[
i
]
;
// sept. 2018
char
*
measurementTimingConfiguration
=
cell
->
measurement_timing_information
;
// sept. 2018
OCTET_STRING_fromBuf
(
&
served_cell_information
->
measurementTimingConfiguration
,
measurementTimingConfiguration
,
strlen
(
measurementTimingConfiguration
));
...
...
openair2/GNB_APP/gnb_config.c
View file @
d21aa79f
...
...
@@ -2009,8 +2009,8 @@ int RCconfig_NR_DU_F1(MessageDef *msg_p, uint32_t i) {
/***************** for test *****************/
}
f1Setup
->
measurement_timing_information
[
k
]
=
"0"
;
f1Setup
->
ranac
[
k
]
=
0
;
f1Setup
->
cell
[
k
].
info
.
measurement_timing_information
=
"0"
;
DevAssert
(
rrc
->
carrier
.
mib
!=
NULL
);
int
buf_len
=
3
;
// this is what we assume in monolithic
f1Setup
->
mib
[
k
]
=
calloc
(
buf_len
,
sizeof
(
*
f1Setup
->
mib
[
k
]));
...
...
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