Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
ea4f2948
Commit
ea4f2948
authored
Nov 09, 2016
by
Gabriel
Browse files
[OAI-UE] fix for issue#19: DCI0 detction with wrong RIV
parent
de98c17e
Changes
1
Hide whitespace changes
Inline
Side-by-side
openair1/PHY/LTE_TRANSPORT/dci_tools.c
View file @
ea4f2948
...
...
@@ -6384,8 +6384,10 @@ int generate_ue_ulsch_params_from_dci(void *dci_pdu,
if
(
rballoc
>
RIV_max
)
{
LOG_E
(
PHY
,
"frame %d, subframe %d, rnti %x, format %d: FATAL ERROR: generate_ue_ulsch_params_from_dci, rb_alloc > RIV_max
\n
"
,
proc
->
frame_rx
,
subframe
,
rnti
,
dci_format
);
LOG_E
(
PHY
,
"frame %d, subframe %d, rnti %x, format %d: FATAL ERROR: generate_ue_ulsch_params_from_dci, rb_alloc[%d] > RIV_max[%d]
\n
"
,
proc
->
frame_rx
,
subframe
,
rnti
,
dci_format
,
rballoc
,
RIV_max
);
LOG_E
(
PHY
,
"Wrong DCI0 detection, do not transmit PUSCH for HARQID: %d
\n
"
,
harq_pid
);
ulsch
->
harq_processes
[
harq_pid
]
->
subframe_scheduling_flag
=
0
;
return
(
-
1
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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