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
9d719218
Commit
9d719218
authored
Nov 23, 2020
by
Florian Kaltenberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing in UE processing of coreset_freq_dom
parent
e3b3fa82
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
openair1/PHY/NR_UE_TRANSPORT/dci_nr.c
openair1/PHY/NR_UE_TRANSPORT/dci_nr.c
+4
-1
No files found.
openair1/PHY/NR_UE_TRANSPORT/dci_nr.c
View file @
9d719218
...
...
@@ -373,7 +373,10 @@ void nr_pdcch_extract_rbs_single(int32_t **rxdataF,
for
(
int
rb
=
0
;
rb
<
coreset_nbr_rb
;
rb
++
,
c_rb
++
)
{
c_rb_by6
=
c_rb
/
6
;
// skip zeros in frequency domain bitmap
while
((
coreset_freq_dom
[
c_rb_by6
>>
3
]
&
(
1
<<
(
c_rb_by6
&
7
)))
==
0
)
c_rb
+=
6
;
while
((
coreset_freq_dom
[
c_rb_by6
>>
3
]
&
(
1
<<
(
7
-
(
c_rb_by6
&
7
))))
==
0
)
{
c_rb
+=
6
;
c_rb_by6
=
c_rb
/
6
;
}
LOG_DDD
(
"c_rb=%d
\n
"
,
c_rb
);
rxF
=
NULL
;
...
...
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