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
38dd2a60
Commit
38dd2a60
authored
Apr 21, 2023
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fixes after ASAN
parent
1f548532
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
+5
-5
No files found.
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
View file @
38dd2a60
...
...
@@ -2010,7 +2010,7 @@ void nr_pusch_symbol_processing_noprecoding(void *arg)
gNB
->
pusch_vars
[
ulsch_id
].
dmrs_symbol
=
symbol
;
}
LOG_
D
(
PHY
,
"symbol %d: nb_re_pusch %d, DMRS symbl used for Chest :%d
\n
"
,
symbol
,
nb_re_pusch
,
gNB
->
pusch_vars
[
ulsch_id
].
dmrs_symbol
);
LOG_
I
(
PHY
,
"symbol %d: nb_re_pusch %d, DMRS symbl used for Chest :%d
\n
"
,
symbol
,
nb_re_pusch
,
gNB
->
pusch_vars
[
ulsch_id
].
dmrs_symbol
);
if
(
nb_re_pusch
==
0
)
continue
;
...
...
@@ -2025,9 +2025,9 @@ void nr_pusch_symbol_processing_noprecoding(void *arg)
rel15_ul
->
qam_mod_order
,
rel15_ul
->
dmrs_config_type
);
int
soffset
=
(
slot
&
3
)
*
frame_parms
->
symbols_per_slot
*
frame_parms
->
ofdm_symbol_size
;
int32_t
rxFext
[
nb_re_pusch
]
__attribute__
((
aligned
(
32
)));
int32_t
chFext
[
nb_re_pusch
]
__attribute__
((
aligned
(
32
)));
int16_t
llr16
[
nb_re_pusch
*
rel15_ul
->
qam_mod_order
]
__attribute__
((
aligned
(
32
)));
int32_t
rxFext
[
nb_re_pusch
+
8
]
__attribute__
((
aligned
(
32
)));
int32_t
chFext
[
nb_re_pusch
+
8
]
__attribute__
((
aligned
(
32
)));
int16_t
llr16
[
(
nb_re_pusch
*
rel15_ul
->
qam_mod_order
)
+
16
]
__attribute__
((
aligned
(
32
)));
for
(
int
aa
=
0
;
aa
<
frame_parms
->
nb_antennas_rx
;
aa
++
)
{
nr_ulsch_extract_rbs0
(
gNB
->
common_vars
.
rxdataF
[
aa
],
gNB
->
pusch_vars
[
ulsch_id
].
ul_ch_estimates
[
aa
],
...
...
@@ -3253,7 +3253,7 @@ int nr_rx_pusch_tp(PHY_VARS_gNB *gNB,
rel15_ul
->
qam_mod_order
,
rel15_ul
->
nrOfLayers
);
// initialize scrambling sequence
int16_t
s
[
G
+
1
6
]
__attribute__
((
aligned
(
32
)));
int16_t
s
[
G
+
9
6
]
__attribute__
((
aligned
(
32
)));
nr_codeword_unscrambling_init
(
s
,
G
,
0
,
rel15_ul
->
data_scrambling_id
,
rel15_ul
->
rnti
);
void
(
*
nr_pusch_symbol_processing_ptr
)(
void
*
)
=
&
nr_pusch_symbol_processing_noprecoding
;
...
...
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