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
a25c06ed
Commit
a25c06ed
authored
Jan 16, 2020
by
Dr.-Ing. Javier Morgade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUGFIX feptx0
- New slot numbering approach was missing for PMCH case
parent
b3dbce6d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
openair1/SCHED/ru_procedures.c
openair1/SCHED/ru_procedures.c
+3
-3
No files found.
openair1/SCHED/ru_procedures.c
View file @
a25c06ed
...
...
@@ -92,12 +92,12 @@ void feptx0(RU_t *ru,
CYCLIC_PREFIX
);
}
else
{
if
(
is_pmch_subframe
(
ru
->
proc
.
frame_tx
,
subframe
,
fp
)){
if
(
slot
==
0
)
{
//just use one slot chance
normal_prefix_mod
(
&
ru
->
common
.
txdataF_BF
[
aa
][
slot
*
slot_sizeF
],
if
(
(
slot
&
1
)
==
0
)
{
//just use one slot chance
normal_prefix_mod
(
&
ru
->
common
.
txdataF_BF
[
aa
][
(
slot
&
1
)
*
slot_sizeF
],
(
int
*
)
&
ru
->
common
.
txdata
[
aa
][
slot_offset
],
2
,
fp
);
PHY_ofdm_mod
(
&
ru
->
common
.
txdataF_BF
[
aa
][
slot
*
slot_sizeF
+
fp
->
ofdm_symbol_size
*
2
],
PHY_ofdm_mod
(
&
ru
->
common
.
txdataF_BF
[
aa
][
(
slot
&
1
)
*
slot_sizeF
+
fp
->
ofdm_symbol_size
*
2
],
(
int
*
)
&
ru
->
common
.
txdata
[
aa
][
slot_offset
+
((
fp
->
ofdm_symbol_size
>>
2
)
*
2
+
fp
->
ofdm_symbol_size
*
2
)],
fp
->
ofdm_symbol_size
,
10
,
...
...
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