Skip to content
Snippets Groups Projects
Commit b8dde7ba authored by Rohit Gupta's avatar Rohit Gupta
Browse files

EXMIMO handling special case for device library

parent 6b517988
No related branches found
No related tags found
No related merge requests found
......@@ -151,14 +151,21 @@ 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;
rc=load_lib(device, openair0_cfg, eth_params, BBU_REMOTE_RADIO_HEAD);
if ( rc >= 0) {
if ( set_transport(device) < 0) {
//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) {
fprintf(stderr, "%s %d:Unsupported transport protocol\n",__FILE__, __LINE__);
return -1;
}
}
}
}
else
{
device_init(device, openair0_cfg);
}
return 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment