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
4b858feb
Commit
4b858feb
authored
Mar 28, 2017
by
Cedric Roux
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/lmssdr-fix-w13' into develop_integration_w13
parents
57e84918
8bcf6b54
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
targets/ARCH/LMSSDR/USERSPACE/LIB/lms_lib.cpp
targets/ARCH/LMSSDR/USERSPACE/LIB/lms_lib.cpp
+15
-1
No files found.
targets/ARCH/LMSSDR/USERSPACE/LIB/lms_lib.cpp
View file @
4b858feb
...
@@ -45,6 +45,14 @@ lms_device_t* lms_device;
...
@@ -45,6 +45,14 @@ lms_device_t* lms_device;
lms_stream_t
rx_stream
;
lms_stream_t
rx_stream
;
lms_stream_t
tx_stream
;
lms_stream_t
tx_stream
;
/* We have a strange behavior when we just start reading
* from the device (inconsistent values of the timestamp).
* A quick solution is to discard the very first read packet
* after a "start".
* The following global variable "first_rx" serves that purpose.
*/
static
int
first_rx
=
0
;
#define RXDCLENGTH 4096
#define RXDCLENGTH 4096
#define NUMBUFF 32
#define NUMBUFF 32
...
@@ -94,6 +102,10 @@ int trx_lms_read(openair0_device *device, openair0_timestamp *ptimestamp, void *
...
@@ -94,6 +102,10 @@ int trx_lms_read(openair0_device *device, openair0_timestamp *ptimestamp, void *
meta
.
flushPartialPacket
=
false
;
meta
.
flushPartialPacket
=
false
;
int
ret
;
int
ret
;
if
(
first_rx
==
1
)
{
first_rx
=
0
;
ret
=
LMS_RecvStream
(
&
rx_stream
,
buff
[
0
],
nsamps
,
&
meta
,
50
);
}
ret
=
LMS_RecvStream
(
&
rx_stream
,
buff
[
0
],
nsamps
,
&
meta
,
50
);
ret
=
LMS_RecvStream
(
&
rx_stream
,
buff
[
0
],
nsamps
,
&
meta
,
50
);
*
ptimestamp
=
meta
.
timestamp
;
*
ptimestamp
=
meta
.
timestamp
;
return
ret
;
return
ret
;
...
@@ -223,6 +235,8 @@ int trx_lms_start(openair0_device *device){
...
@@ -223,6 +235,8 @@ int trx_lms_start(openair0_device *device){
}
}
first_rx
=
1
;
rx_stream
.
channel
=
0
;
rx_stream
.
channel
=
0
;
rx_stream
.
fifoSize
=
256
*
1024
;
rx_stream
.
fifoSize
=
256
*
1024
;
rx_stream
.
throughputVsLatency
=
0.1
;
rx_stream
.
throughputVsLatency
=
0.1
;
...
@@ -355,7 +369,7 @@ int device_init(openair0_device *device, openair0_config_t *openair0_cfg){
...
@@ -355,7 +369,7 @@ int device_init(openair0_device *device, openair0_config_t *openair0_cfg){
break
;
break
;
case
15360000
:
case
15360000
:
openair0_cfg
[
0
].
samples_per_packet
=
2048
;
openair0_cfg
[
0
].
samples_per_packet
=
2048
;
openair0_cfg
[
0
].
tx_sample_advance
=
450
;
openair0_cfg
[
0
].
tx_sample_advance
=
50
;
/* TODO: to be refined */
openair0_cfg
[
0
].
tx_bw
=
15.36e6
;
openair0_cfg
[
0
].
tx_bw
=
15.36e6
;
openair0_cfg
[
0
].
rx_bw
=
15.36e6
;
openair0_cfg
[
0
].
rx_bw
=
15.36e6
;
break
;
break
;
...
...
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