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
wangjie
OpenXG-RAN
Commits
681c0366
Commit
681c0366
authored
Mar 08, 2021
by
Thomas Schlichter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NR: fix init_symbol_rotation() for UL
parent
2411743f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
openair1/PHY/MODULATION/nr_modulation.c
openair1/PHY/MODULATION/nr_modulation.c
+6
-5
No files found.
openair1/PHY/MODULATION/nr_modulation.c
View file @
681c0366
...
@@ -602,17 +602,17 @@ void init_symbol_rotation(NR_DL_FRAME_PARMS *fp) {
...
@@ -602,17 +602,17 @@ void init_symbol_rotation(NR_DL_FRAME_PARMS *fp) {
const
double
Nu
=
2048
*
64
*
(
1
/
(
float
)(
1
<<
fp
->
numerology_index
));
const
double
Nu
=
2048
*
64
*
(
1
/
(
float
)(
1
<<
fp
->
numerology_index
));
const
double
Ncp0
=
16
*
64
+
(
144
*
64
*
(
1
/
(
float
)(
1
<<
fp
->
numerology_index
)));
const
double
Ncp0
=
16
*
64
+
(
144
*
64
*
(
1
/
(
float
)(
1
<<
fp
->
numerology_index
)));
const
double
Ncp1
=
(
144
*
64
*
(
1
/
(
float
)(
1
<<
fp
->
numerology_index
)));
const
double
Ncp1
=
(
144
*
64
*
(
1
/
(
float
)(
1
<<
fp
->
numerology_index
)));
double
tl
=
0
,
poff
,
exp_re
,
exp_im
;
double
Ncp
,
Ncpm1
=
Ncp0
;
for
(
uint8_t
ll
=
0
;
ll
<
2
;
ll
++
){
for
(
uint8_t
ll
=
0
;
ll
<
2
;
ll
++
){
double
f0
=
f
[
ll
];
double
f0
=
f
[
ll
];
double
Ncpm1
=
Ncp0
;
int16_t
*
symbol_rotation
=
fp
->
symbol_rotation
[
ll
];
int16_t
*
symbol_rotation
=
fp
->
symbol_rotation
[
ll
];
poff
=
2
*
M_PI
*
((
Ncp0
*
Tc
))
*
f0
;
double
tl
=
0
;
exp_re
=
cos
(
poff
);
double
poff
=
2
*
M_PI
*
((
Ncp0
*
Tc
))
*
f0
;
exp_im
=
sin
(
-
poff
);
double
exp_re
=
cos
(
poff
);
double
exp_im
=
sin
(
-
poff
);
symbol_rotation
[
0
]
=
(
int16_t
)
floor
(
exp_re
*
32767
);
symbol_rotation
[
0
]
=
(
int16_t
)
floor
(
exp_re
*
32767
);
symbol_rotation
[
1
]
=
(
int16_t
)
floor
(
exp_im
*
32767
);
symbol_rotation
[
1
]
=
(
int16_t
)
floor
(
exp_im
*
32767
);
LOG_I
(
PHY
,
"Doing symbol rotation calculation for gNB TX/RX, f0 %f Hz, Nsymb %d
\n
"
,
f0
,
nsymb
);
LOG_I
(
PHY
,
"Doing symbol rotation calculation for gNB TX/RX, f0 %f Hz, Nsymb %d
\n
"
,
f0
,
nsymb
);
...
@@ -624,6 +624,7 @@ void init_symbol_rotation(NR_DL_FRAME_PARMS *fp) {
...
@@ -624,6 +624,7 @@ void init_symbol_rotation(NR_DL_FRAME_PARMS *fp) {
for
(
int
l
=
1
;
l
<
nsymb
;
l
++
)
{
for
(
int
l
=
1
;
l
<
nsymb
;
l
++
)
{
double
Ncp
;
if
(
l
==
(
7
*
(
1
<<
fp
->
numerology_index
)))
{
if
(
l
==
(
7
*
(
1
<<
fp
->
numerology_index
)))
{
Ncp
=
Ncp0
;
Ncp
=
Ncp0
;
}
else
{
}
else
{
...
...
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