Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
29684b08
Commit
29684b08
authored
Dec 14, 2017
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor: FlexRAN reads eNB configuration automatically
parent
ec354514
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
openair2/ENB_APP/flexran_agent.c
openair2/ENB_APP/flexran_agent.c
+3
-2
openair2/ENB_APP/flexran_agent.h
openair2/ENB_APP/flexran_agent.h
+1
-1
openair2/ENB_APP/flexran_agent_ran_api.c
openair2/ENB_APP/flexran_agent_ran_api.c
+1
-2
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+1
-1
No files found.
openair2/ENB_APP/flexran_agent.c
View file @
29684b08
...
...
@@ -187,9 +187,10 @@ pthread_t new_thread(void *(*f)(void *), void *b) {
}
int
channel_container_init
=
0
;
int
flexran_agent_start
(
mid_t
mod_id
,
const
Enb_properties_array_t
*
enb_properties
){
int
flexran_agent_start
(
mid_t
mod_id
)
{
int
channel_id
;
Enb_properties_array_t
*
enb_properties
=
enb_config_get
();
flexran_set_enb_vars
(
mod_id
,
RAN_LTE_OAI
);
flexran_agent
[
mod_id
].
enb_id
=
mod_id
;
...
...
openair2/ENB_APP/flexran_agent.h
View file @
29684b08
...
...
@@ -46,7 +46,7 @@
/* Initiation and termination of the eNodeB agent */
int
flexran_agent_start
(
mid_t
mod_id
,
const
Enb_properties_array_t
*
enb_properties
);
int
flexran_agent_start
(
mid_t
mod_id
);
int
flexran_agent_stop
(
mid_t
mod_id
);
/*
...
...
openair2/ENB_APP/flexran_agent_ran_api.c
View file @
29684b08
...
...
@@ -44,16 +44,15 @@ void flexran_set_enb_vars(mid_t mod_id, ran_name_t ran){
switch
(
ran
){
case
RAN_LTE_OAI
:
enb_properties
=
enb_config_get
();
if
(
eNB_mac_inst
==
NULL
){
enb
[
mod_id
]
=
NULL
;
enb_ue
[
mod_id
]
=
NULL
;
enb_rrc
[
mod_id
]
=
NULL
;
enb_properties
=
NULL
;
}
else
{
enb
[
mod_id
]
=
(
void
*
)
&
eNB_mac_inst
[
mod_id
];
enb_ue
[
mod_id
]
=
(
void
*
)
&
eNB_mac_inst
[
mod_id
].
UE_list
;
enb_rrc
[
mod_id
]
=
(
void
*
)
&
eNB_rrc_inst
[
mod_id
];
enb_properties
=
(
Enb_properties_array_t
*
)
enb_config_get
();
}
break
;
default
:
...
...
targets/RT/USER/lte-softmodem.c
View file @
29684b08
...
...
@@ -1800,7 +1800,7 @@ int main( int argc, char **argv ) {
pthread_cond_init
(
&
cond_node_ctrl
,
NULL
);
for
(
i
=
0
;
i
<
NB_eNB_INST
;
i
++
)
{
flexran_agent_start
(
i
,
enb_config_get
()
);
flexran_agent_start
(
i
);
}
LOG_I
(
ENB_APP
,
" * Waiting for FlexRAN RTController command *
\n
"
);
...
...
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