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
spbro
OpenXG-RAN
Commits
fde10b92
Commit
fde10b92
authored
Sep 03, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use u64 for neighbour nr_cellid: is up to 38 bits
parent
327baf29
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
openair2/GNB_APP/gnb_config.c
openair2/GNB_APP/gnb_config.c
+1
-1
openair2/RRC/NR/nr_rrc_defs.h
openair2/RRC/NR/nr_rrc_defs.h
+1
-1
No files found.
openair2/GNB_APP/gnb_config.c
View file @
fde10b92
...
...
@@ -1598,7 +1598,7 @@ static void fill_neighbour_cell_configuration(uint8_t gnb_idx, gNB_RRC_INST *rrc
paramdef_t
NeighbourCellParams
[]
=
GNBNEIGHBOURCELLPARAMS_DESC
;
paramlist_def_t
NeighbourCellParamList
=
{
GNB_CONFIG_STRING_NEIGHBOUR_CELL_LIST
,
NULL
,
0
};
config_getlist
(
config_get_if
(),
&
NeighbourCellParamList
,
NeighbourCellParams
,
sizeofArray
(
NeighbourCellParams
),
neighbourpath
);
LOG_D
(
GNB_APP
,
"HO LOG: For the Cell: %d Neighbour Cell ELM NUM: %d
\n
"
,
cell
->
nr_cell_id
,
NeighbourCellParamList
.
numelt
);
LOG_D
(
GNB_APP
,
"HO LOG: For the Cell: %
l
d Neighbour Cell ELM NUM: %d
\n
"
,
cell
->
nr_cell_id
,
NeighbourCellParamList
.
numelt
);
if
(
NeighbourCellParamList
.
numelt
<
1
)
continue
;
...
...
openair2/RRC/NR/nr_rrc_defs.h
View file @
fde10b92
...
...
@@ -367,7 +367,7 @@ typedef struct {
}
nr_neighbour_gnb_configuration_t
;
typedef
struct
neighbour_cell_configuration_s
{
in
t
nr_cell_id
;
uint64_
t
nr_cell_id
;
seq_arr_t
*
neighbour_cells
;
}
neighbour_cell_configuration_t
;
...
...
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