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
6a8272ef
Commit
6a8272ef
authored
Jan 23, 2018
by
Xu Bo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix issue about nb_rb=0 assertion failed
parent
b86461bf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
openair1/PHY/LTE_TRANSPORT/dci_tools.c
openair1/PHY/LTE_TRANSPORT/dci_tools.c
+4
-1
No files found.
openair1/PHY/LTE_TRANSPORT/dci_tools.c
View file @
6a8272ef
...
@@ -2672,7 +2672,10 @@ void fill_ulsch(PHY_VARS_eNB *eNB,int UE_id,nfapi_ul_config_ulsch_pdu *ulsch_pdu
...
@@ -2672,7 +2672,10 @@ void fill_ulsch(PHY_VARS_eNB *eNB,int UE_id,nfapi_ul_config_ulsch_pdu *ulsch_pdu
ulsch
->
harq_processes
[
harq_pid
]
->
first_rb
=
ulsch_pdu
->
ulsch_pdu_rel8
.
resource_block_start
;
ulsch
->
harq_processes
[
harq_pid
]
->
first_rb
=
ulsch_pdu
->
ulsch_pdu_rel8
.
resource_block_start
;
ulsch
->
harq_processes
[
harq_pid
]
->
nb_rb
=
ulsch_pdu
->
ulsch_pdu_rel8
.
number_of_resource_blocks
;
ulsch
->
harq_processes
[
harq_pid
]
->
nb_rb
=
ulsch_pdu
->
ulsch_pdu_rel8
.
number_of_resource_blocks
;
AssertFatal
(
ulsch
->
harq_processes
[
harq_pid
]
->
nb_rb
>
0
,
"nb_rb = 0
\n
"
);
//AssertFatal(ulsch->harq_processes[harq_pid]->nb_rb>0,"nb_rb = 0\n");
if
(
ulsch
->
harq_processes
[
harq_pid
]
->
nb_rb
==
0
){
LOG_E
(
PHY
,
"fill_ulsch UE_id %d nb_rb = 0
\n
"
,
UE_id
);
}
ulsch
->
harq_processes
[
harq_pid
]
->
dci_alloc
=
1
;
ulsch
->
harq_processes
[
harq_pid
]
->
dci_alloc
=
1
;
ulsch
->
harq_processes
[
harq_pid
]
->
rar_alloc
=
0
;
ulsch
->
harq_processes
[
harq_pid
]
->
rar_alloc
=
0
;
...
...
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