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
d5fceb8e
Commit
d5fceb8e
authored
Feb 03, 2025
by
Teodora
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Parsing RU M-plane info to xran
parent
430026f1
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
113 additions
and
26 deletions
+113
-26
radio/fhi_72/oran-config.c
radio/fhi_72/oran-config.c
+108
-24
radio/fhi_72/oran-config.h
radio/fhi_72/oran-config.h
+1
-1
radio/fhi_72/oran_isolate.c
radio/fhi_72/oran_isolate.c
+4
-1
No files found.
radio/fhi_72/oran-config.c
View file @
d5fceb8e
This diff is collapsed.
Click to expand it.
radio/fhi_72/oran-config.h
View file @
d5fceb8e
...
@@ -29,7 +29,7 @@ struct xran_fh_init;
...
@@ -29,7 +29,7 @@ struct xran_fh_init;
struct
xran_fh_config
;
struct
xran_fh_config
;
struct
openair0_config
;
struct
openair0_config
;
bool
get_xran_config
(
const
struct
openair0_config
*
openair0_cfg
,
struct
xran_fh_init
*
fh_init
,
struct
xran_fh_config
*
fh_config
);
bool
get_xran_config
(
void
*
mplane_api
,
const
struct
openair0_config
*
openair0_cfg
,
struct
xran_fh_init
*
fh_init
,
struct
xran_fh_config
*
fh_config
);
void
print_fh_init
(
const
struct
xran_fh_init
*
fh_init
);
void
print_fh_init
(
const
struct
xran_fh_init
*
fh_init
);
void
print_fh_config
(
const
struct
xran_fh_config
*
fh_config
);
void
print_fh_config
(
const
struct
xran_fh_config
*
fh_config
);
...
...
radio/fhi_72/oran_isolate.c
View file @
d5fceb8e
...
@@ -344,8 +344,11 @@ __attribute__((__visibility__("default"))) int transport_init(openair0_device *d
...
@@ -344,8 +344,11 @@ __attribute__((__visibility__("default"))) int transport_init(openair0_device *d
}
}
eth
->
mplane_priv
=
(
void
*
)
&
ru_session_list
;
eth
->
mplane_priv
=
(
void
*
)
&
ru_session_list
;
success
=
get_xran_config
((
void
*
)
&
ru_session_list
,
openair0_cfg
,
&
fh_init
,
fh_config
);
AssertFatal
(
success
,
"[MPLANE] Cannot configure xran with M-plane info.
\n
"
);
#else
#else
success
=
get_xran_config
(
openair0_cfg
,
&
fh_init
,
fh_config
);
success
=
get_xran_config
(
NULL
,
openair0_cfg
,
&
fh_init
,
fh_config
);
AssertFatal
(
success
,
"cannot get configuration for xran
\n
"
);
AssertFatal
(
success
,
"cannot get configuration for xran
\n
"
);
#endif
#endif
...
...
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