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
ZhouShuya
OpenXG-RAN
Commits
9cf288f6
Commit
9cf288f6
authored
May 19, 2017
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pre-integration fix: minor improvement
we can compute CCE_max_used_index out of the loop.
parent
685464c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
openair1/PHY/LTE_TRANSPORT/dci.c
openair1/PHY/LTE_TRANSPORT/dci.c
+3
-5
No files found.
openair1/PHY/LTE_TRANSPORT/dci.c
View file @
9cf288f6
...
...
@@ -2000,13 +2000,11 @@ uint8_t get_num_pdcch_symbols(uint8_t num_dci,
numCCE
+=
(
1
<<
(
dci_alloc
[
i
].
L
));
if
(
firstCCE_max
<
dci_alloc
[
i
].
firstCCE
)
{
firstCCE_max
=
dci_alloc
[
i
].
firstCCE
;
L
=
dci_alloc
[
i
].
L
;
}
if
(
i
==
(
num_dci
-
1
))
{
CCE_max_used_index
=
firstCCE_max
+
(
1
<<
L
)
-
1
;
firstCCE_max
=
dci_alloc
[
i
].
firstCCE
;
L
=
dci_alloc
[
i
].
L
;
}
}
CCE_max_used_index
=
firstCCE_max
+
(
1
<<
L
)
-
1
;
//if ((9*numCCE) <= (frame_parms->N_RB_DL*2))
if
(
CCE_max_used_index
<
get_nCCE
(
1
,
frame_parms
,
get_mi
(
frame_parms
,
subframe
)))
...
...
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