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
lizhongxiao
OpenXG-RAN
Commits
4998b6ae
Commit
4998b6ae
authored
Jun 19, 2019
by
Rakesh
Committed by
Florian Kaltenberger
Jul 08, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding FFT/IFFT sizes for threequarter sampling rate
parent
47f50281
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
openair1/PHY/MODULATION/slot_fep_nr.c
openair1/PHY/MODULATION/slot_fep_nr.c
+6
-2
openair1/PHY/NR_UE_TRANSPORT/pss_nr.c
openair1/PHY/NR_UE_TRANSPORT/pss_nr.c
+4
-0
No files found.
openair1/PHY/MODULATION/slot_fep_nr.c
View file @
4998b6ae
...
...
@@ -89,6 +89,10 @@ int nr_slot_fep(PHY_VARS_NR_UE *ue,
dft
=
dft2048
;
break
;
case
3072
:
dft
=
dft3072
;
break
;
case
4096
:
dft
=
dft4096
;
break
;
...
...
@@ -98,8 +102,8 @@ int nr_slot_fep(PHY_VARS_NR_UE *ue,
break
;
default:
dft
=
dft512
;
break
;
printf
(
"unsupported ofdm symbol size
\n
"
)
;
assert
(
0
)
;
}
if
(
no_prefix
)
{
...
...
openair1/PHY/NR_UE_TRANSPORT/pss_nr.c
View file @
4998b6ae
...
...
@@ -89,6 +89,10 @@ void *get_idft(int ofdm_symbol_size)
idft
=
idft2048
;
break
;
case
3072
:
idft
=
idft3072
;
break
;
case
4096
:
idft
=
idft4096
;
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