Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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-RAN
Commits
a194009e
Commit
a194009e
authored
Mar 13, 2017
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
integration fix: put dlsch_demod_shift into dlsch_demodulation
parent
947e50f3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
+6
-1
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+4
-3
No files found.
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
View file @
a194009e
...
...
@@ -42,7 +42,12 @@
#define NOCYGWIN_STATIC
#endif
extern
int16_t
dlsch_demod_shift
;
/* dynamic shift for LLR computation for TM3/4
* set as command line argument, see lte-softmodem.c
* default value: 0
*/
int16_t
dlsch_demod_shift
=
0
;
//#define DEBUG_HARQ
//#undef LOG_D
...
...
targets/RT/USER/lte-softmodem.c
View file @
a194009e
...
...
@@ -151,8 +151,6 @@ uint8_t usim_test = 0;
uint8_t
nb_antenna_tx
=
1
;
uint8_t
nb_antenna_rx
=
1
;
int16_t
dlsch_demod_shift
=
0
;
char
ref
[
128
]
=
"internal"
;
char
channels
[
128
]
=
"0"
;
...
...
@@ -323,6 +321,7 @@ void help (void) {
printf
(
" --ue-txgain set UE TX gain
\n
"
);
printf
(
" --ue-nb-ant-rx set UE number of rx antennas "
);
printf
(
" --ue-scan_carrier set UE to scan around carrier
\n
"
);
printf
(
" --dlsch-demod-shift dynamic shift for LLR compuation for TM3/4 (default 0)
\n
"
);
printf
(
" --loop-memory get softmodem (UE) to loop through memory instead of acquiring from HW
\n
"
);
printf
(
" --mmapped-dma sets flag for improved EXMIMO UE performance
\n
"
);
printf
(
" --external-clock tells hardware to use an external clock reference
\n
"
);
...
...
@@ -804,9 +803,11 @@ static void get_options (int argc, char **argv) {
case
LONG_OPTION_THREADEVENSUBFRAME
:
threads
.
even
=
atoi
(
optarg
);
break
;
case
LONG_OPTION_DEMOD_SHIFT
:
case
LONG_OPTION_DEMOD_SHIFT
:
{
extern
int16_t
dlsch_demod_shift
;
dlsch_demod_shift
=
atof
(
optarg
);
break
;
}
#if T_TRACER
case
LONG_OPTION_T_PORT
:
{
extern
int
T_port
;
...
...
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