Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
b8dde7ba
Commit
b8dde7ba
authored
Feb 10, 2016
by
Rohit Gupta
Browse files
EXMIMO handling special case for device library
parent
6b517988
Changes
1
Show whitespace changes
Inline
Side-by-side
targets/ARCH/COMMON/common_lib.c
View file @
b8dde7ba
...
...
@@ -151,6 +151,9 @@ int openair0_device_load(openair0_device *device, openair0_config_t *openair0_cf
int
openair0_transport_load
(
openair0_device
*
device
,
openair0_config_t
*
openair0_cfg
,
eth_params_t
*
eth_params
)
{
int
rc
;
//ToDo: EXMIMO library is still not harmonized with rest of HW Targets (USRP, BladeRF).
if
(
device
->
type
!=
EXMIMO_DEV
)
{
rc
=
load_lib
(
device
,
openair0_cfg
,
eth_params
,
BBU_REMOTE_RADIO_HEAD
);
if
(
rc
>=
0
)
{
if
(
set_transport
(
device
)
<
0
)
{
...
...
@@ -158,7 +161,11 @@ int openair0_transport_load(openair0_device *device, openair0_config_t *openair0
return
-
1
;
}
}
}
else
{
device_init
(
device
,
openair0_cfg
);
}
return
0
;
}
...
...
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