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
spbro
OpenXG-RAN
Commits
1eb683f6
Commit
1eb683f6
authored
Aug 04, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/NR_UE_fix_dl_chan_est' into integration_2023_w31
parents
251a1c6e
c0135921
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
10 deletions
+7
-10
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.h
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.h
+1
-6
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
+6
-4
No files found.
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.h
View file @
1eb683f6
...
...
@@ -252,12 +252,7 @@ static const short filt8_rep4[8] = {16384, 16384, 16384, 16384, 0, 0, 0, 0};
// DL
// DMRS_Type1
static
const
short
filt16_dl_first
[
16
]
=
{
12228
,
12228
,
12228
,
12228
,
8192
,
8192
,
8192
,
8192
,
4096
,
4096
,
4096
,
4096
,
0
,
0
,
0
,
0
};
static
const
short
filt16_dl_middle
[
16
]
=
{
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
};
static
const
short
filt16_dl_last
[
16
]
=
{
4096
,
4096
,
4096
,
4096
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
};
// using UL filter
// DMRS_Type2
static
const
short
filt16_dl_first_type2
[
16
]
=
{
16384
,
16384
,
16384
,
8192
,
8192
,
8192
,
8192
,
8192
,
8192
,
0
,
0
,
0
,
0
,
0
,
0
};
...
...
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
View file @
1eb683f6
...
...
@@ -1300,13 +1300,15 @@ void NFAPI_NR_DMRS_TYPE1_linear_interp(NR_DL_FRAME_PARMS *frame_parms,
#endif
if
(
pilot_cnt
==
0
)
{
// Treat first pilot
c16multaddVectRealComplex
(
filt16_dl_first
,
&
ch
,
dl_ch
,
16
);
c16multaddVectRealComplex
(
filt16_ul_p0
,
&
ch
,
dl_ch
,
16
);
}
else
if
(
pilot_cnt
==
1
||
pilot_cnt
==
2
)
{
c16multaddVectRealComplex
(
filt16_ul_p1p2
,
&
ch
,
dl_ch
,
16
);
}
else
if
(
pilot_cnt
==
6
*
nb_rb_pdsch
-
1
)
{
// Treat last pilot
c16multaddVectRealComplex
(
filt16_
d
l_last
,
&
ch
,
dl_ch
,
16
);
c16multaddVectRealComplex
(
filt16_
u
l_last
,
&
ch
,
dl_ch
,
16
);
}
else
{
// Treat middle pilots
c16multaddVectRealComplex
(
filt16_
d
l_middle
,
&
ch
,
dl_ch
,
16
);
c16multaddVectRealComplex
(
filt16_
u
l_middle
,
&
ch
,
dl_ch
,
16
);
if
(
pilot_cnt
%
2
==
0
)
{
dl_ch
+=
4
;
dl_ch
+=
4
;
}
}
}
...
...
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