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
2b92af5e
Commit
2b92af5e
authored
Apr 08, 2021
by
rmagueta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix issue due to cherry pick
parent
18917d45
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
12 deletions
+0
-12
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
+0
-11
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
+0
-1
No files found.
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
View file @
2b92af5e
...
...
@@ -1353,17 +1353,6 @@ int nr_rx_pusch(PHY_VARS_gNB *gNB,
#else
int
off
=
0
;
#endif
double
p_shift
=
0
.
004761
90476190476
;
short
*
IQ_temp
=
(
short
*
)
&
gNB
->
pusch_vars
[
ulsch_id
]
->
rxdataF_comp
[
0
][
rel15_ul
->
start_symbol_index
*
(
off
+
rel15_ul
->
rb_size
*
NR_NB_SC_PER_RB
)];
double
ttt
[
2
];
if
(
rel15_ul
->
num_dmrs_cdm_grps_no_data
==
1
){
for
(
int
pp
=
0
;
pp
<
rel15_ul
->
nr_of_symbols
*
rel15_ul
->
rb_size
*
NR_NB_SC_PER_RB
;
pp
++
){
ttt
[
0
]
=
(
double
)
IQ_temp
[
pp
*
2
]
*
cos
(
pp
*
p_shift
)
-
(
double
)
IQ_temp
[
pp
*
2
+
1
]
*
sin
(
pp
*
p_shift
);
ttt
[
1
]
=
(
double
)
IQ_temp
[
pp
*
2
]
*
sin
(
pp
*
p_shift
)
+
(
double
)
IQ_temp
[
pp
*
2
+
1
]
*
cos
(
pp
*
p_shift
);
IQ_temp
[
pp
*
2
]
=
(
short
)
ttt
[
0
];
IQ_temp
[
pp
*
2
+
1
]
=
(
short
)
ttt
[
1
];
}
}
uint32_t
rxdataF_ext_offset
=
0
;
for
(
uint8_t
i
=
rel15_ul
->
start_symbol_index
;
i
<
(
rel15_ul
->
start_symbol_index
+
rel15_ul
->
nr_of_symbols
);
i
++
)
{
start_meas
(
&
gNB
->
ulsch_llr_stats
);
...
...
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
View file @
2b92af5e
...
...
@@ -652,7 +652,6 @@ void pf_ul(module_id_t module_id,
for
(
int
UE_id
=
UE_list
->
head
;
UE_id
>=
0
;
UE_id
=
UE_list
->
next
[
UE_id
])
{
NR_UE_sched_ctrl_t
*
sched_ctrl
=
&
UE_info
->
UE_sched_ctrl
[
UE_id
];
int
rbStart
=
NRRIV2PRBOFFSET
(
sched_ctrl
->
active_bwp
->
bwp_Common
->
genericParameters
.
locationAndBandwidth
,
MAX_BWP_SIZE
);
rbStart
+=
27
;
const
uint16_t
bwpSize
=
NRRIV2BW
(
sched_ctrl
->
active_ubwp
->
bwp_Common
->
genericParameters
.
locationAndBandwidth
,
MAX_BWP_SIZE
);
/* Calculate throughput */
...
...
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