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
Shweta Shrivastava
openairinterface5G
Commits
cd20e908
Commit
cd20e908
authored
Feb 03, 2020
by
Thomas Laurent
Browse files
fix compilation error for Lime driver
parent
aa8f04e3
Changes
2
Hide whitespace changes
Inline
Side-by-side
openair1/PHY/TOOLS/tools_defs.h
View file @
cd20e908
...
...
@@ -29,6 +29,10 @@
*/
#ifdef __cplusplus
extern
"C"
{
#endif
#include <stdint.h>
#include "PHY/sse_intrin.h"
...
...
@@ -428,4 +432,8 @@ double interp(double x, double *xs, double *ys, int count);
int
write_output
(
const
char
*
fname
,
const
char
*
vname
,
void
*
data
,
int
length
,
int
dec
,
char
format
);
#ifdef __cplusplus
}
#endif
#endif //__PHY_TOOLS_DEFS__H__
targets/ARCH/LMSSDR/USERSPACE/LIB/lms_lib.cpp
View file @
cd20e908
...
...
@@ -178,7 +178,7 @@ int trx_lms_start(openair0_device *device){
}
LMS_Init
(
lms_device
);
LMS_EnableCa
libCa
che
(
lms_device
,
false
);
LMS_EnableCache
(
lms_device
,
false
);
if
(
LMS_LoadConfig
(
lms_device
,
device
->
openair0_cfg
[
0
].
configFilename
)
!=
0
)
{
...
...
@@ -277,6 +277,7 @@ int trx_lms_stop(openair0_device *device) {
LMS_DestroyStream
(
lms_device
,
&
rx_stream
);
LMS_DestroyStream
(
lms_device
,
&
tx_stream
);
LMS_Close
(
lms_device
);
return
0
;
}
/*! \brief Set frequencies (TX/RX)
...
...
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