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
9fbe6d9e
Commit
9fbe6d9e
authored
Aug 17, 2022
by
Vaibhav Shrivastava
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gNB Config Changes
parent
4d5334ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
openair2/GNB_APP/gnb_config.c
openair2/GNB_APP/gnb_config.c
+6
-6
No files found.
openair2/GNB_APP/gnb_config.c
View file @
9fbe6d9e
...
@@ -723,15 +723,15 @@ void RCconfig_NR_L1(void) {
...
@@ -723,15 +723,15 @@ void RCconfig_NR_L1(void) {
void
RCconfig_nr_ssparam
(
void
)
{
void
RCconfig_nr_ssparam
(
void
)
{
paramdef_t
SSConfig_Params
[]
=
GNB_SSPARAMS_DESC
;
paramdef_t
SSConfig_Params
[]
=
GNB_SSPARAMS_DESC
;
paramlist_def_t
SSConfig_ParamList
=
{
CONFIG_SS
,
NULL
,
0
};
paramlist_def_t
SSConfig_ParamList
=
{
GNB_
CONFIG_SS
,
NULL
,
0
};
config_getlist
(
&
SSConfig_ParamList
,
SSConfig_Params
,
sizeof
(
SSConfig_Params
)
/
sizeof
(
paramdef_t
),
NULL
);
config_getlist
(
&
SSConfig_ParamList
,
SSConfig_Params
,
sizeof
(
SSConfig_Params
)
/
sizeof
(
paramdef_t
),
NULL
);
if
(
SSConfig_ParamList
.
numelt
>
0
)
{
if
(
SSConfig_ParamList
.
numelt
>
0
)
{
RC
.
ss
.
hostIp
=
strdup
(
*
(
SSConfig_ParamList
.
paramarray
[
0
][
CONFIG_SS_HOSTIP_IDX
].
strptr
));
RC
.
ss
.
hostIp
=
strdup
(
*
(
SSConfig_ParamList
.
paramarray
[
0
][
GNB_
CONFIG_SS_HOSTIP_IDX
].
strptr
));
RC
.
ss
.
Sysport
=
*
(
SSConfig_ParamList
.
paramarray
[
0
][
CONFIG_SS_SYSPORT_IDX
].
iptr
);
RC
.
ss
.
Sysport
=
*
(
SSConfig_ParamList
.
paramarray
[
0
][
GNB_
CONFIG_SS_SYSPORT_IDX
].
iptr
);
RC
.
ss
.
Srbport
=
*
(
SSConfig_ParamList
.
paramarray
[
0
][
CONFIG_SS_SRBPORT_IDX
].
iptr
);
RC
.
ss
.
Srbport
=
*
(
SSConfig_ParamList
.
paramarray
[
0
][
GNB_
CONFIG_SS_SRBPORT_IDX
].
iptr
);
RC
.
ss
.
Vngport
=
*
(
SSConfig_ParamList
.
paramarray
[
0
][
CONFIG_SS_VNGPORT_IDX
].
iptr
);
RC
.
ss
.
Vngport
=
*
(
SSConfig_ParamList
.
paramarray
[
0
][
GNB_
CONFIG_SS_VNGPORT_IDX
].
iptr
);
RC
.
ss
.
mode
=
*
(
SSConfig_ParamList
.
paramarray
[
0
][
CONFIG_SS_MODE_IDX
].
iptr
);
RC
.
ss
.
mode
=
*
(
SSConfig_ParamList
.
paramarray
[
0
][
GNB_
CONFIG_SS_MODE_IDX
].
iptr
);
}
}
LOG_A
(
GNB_APP
,
"SS_Config:SSMode %d, hostIp=%s, Sysport=%d, Srbport=%d Vngport=%d
\n
"
,
LOG_A
(
GNB_APP
,
"SS_Config:SSMode %d, hostIp=%s, Sysport=%d, Srbport=%d Vngport=%d
\n
"
,
RC
.
ss
.
mode
,
RC
.
ss
.
hostIp
,
RC
.
ss
.
Sysport
,
RC
.
ss
.
Srbport
,
RC
.
ss
.
Vngport
);
RC
.
ss
.
mode
,
RC
.
ss
.
hostIp
,
RC
.
ss
.
Sysport
,
RC
.
ss
.
Srbport
,
RC
.
ss
.
Vngport
);
...
...
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