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
6ba8cd70
Commit
6ba8cd70
authored
May 20, 2019
by
Javier Morgade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DCI Format1A 0xfff9 false decoding
parent
fe89f107
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
openair1/PHY/LTE_UE_TRANSPORT/dci_ue.c
openair1/PHY/LTE_UE_TRANSPORT/dci_ue.c
+2
-2
openair1/SCHED_UE/phy_procedures_lte_ue.c
openair1/SCHED_UE/phy_procedures_lte_ue.c
+3
-2
No files found.
openair1/PHY/LTE_UE_TRANSPORT/dci_ue.c
View file @
6ba8cd70
...
...
@@ -1930,7 +1930,7 @@ void dci_decoding_procedure0(LTE_UE_PDCCH **pdcch_vars,
if
(((
L
>
1
)
&&
((
crc
==
si_rnti
)
||
(
crc
==
p_rnti
)
||
(
crc
==
ra_rnti
)
||
(
crc
==
0xfff9
)
))
||
(
crc
==
ra_rnti
)
/*||(crc == 0xfff9)*/
))
||
(
crc
==
pdcch_vars
[
eNB_id
]
->
crnti
))
{
dci_alloc
[
*
dci_cnt
].
dci_length
=
sizeof_bits
;
dci_alloc
[
*
dci_cnt
].
rnti
=
crc
;
...
...
@@ -1965,7 +1965,7 @@ void dci_decoding_procedure0(LTE_UE_PDCCH **pdcch_vars,
#endif
}
if
(
crc
==
si_rnti
||
crc
==
0xfff9
)
{
if
(
crc
==
si_rnti
/*|| crc==0xfff9*/
)
{
dci_alloc
[
*
dci_cnt
].
format
=
format_si
;
*
dci_cnt
=
*
dci_cnt
+
1
;
}
else
if
(
crc
==
p_rnti
)
{
...
...
openair1/SCHED_UE/phy_procedures_lte_ue.c
View file @
6ba8cd70
...
...
@@ -2664,7 +2664,7 @@ int ue_pdcch_procedures(uint8_t eNB_id,PHY_VARS_UE *ue,UE_rxtx_proc_t *proc,uint
LOG_E
(
PHY
,
"[UE %d] Frame %d, subframe %d: Problem in DCI!
\n
"
,
ue
->
Mod_id
,
frame_rx
,
subframe_rx
);
dump_dci
(
&
ue
->
frame_parms
,
&
dci_alloc_rx
[
i
]);
}
}
else
if
((
dci_alloc_rx
[
i
].
rnti
==
SI_RNTI
||
dci_alloc_rx
[
i
].
rnti
==
0xfff9
)
&&
}
else
if
((
dci_alloc_rx
[
i
].
rnti
==
SI_RNTI
/*|| dci_alloc_rx[i].rnti == 0xfff9*/
)
&&
((
dci_alloc_rx
[
i
].
format
==
format1A
)
||
(
dci_alloc_rx
[
i
].
format
==
format1C
)))
{
if
(
LOG_DEBUGFLAG
(
DEBUG_UE_PHYPROC
))
{
LOG_D
(
PHY
,
"[UE %d] subframe %d: Found rnti %x, format 1%s, dci_cnt %d
\n
"
,
ue
->
Mod_id
,
subframe_rx
,
dci_alloc_rx
[
i
].
rnti
,
dci_alloc_rx
[
i
].
format
==
format1A
?
"A"
:
"C"
,
i
);
...
...
@@ -2673,7 +2673,8 @@ int ue_pdcch_procedures(uint8_t eNB_id,PHY_VARS_UE *ue,UE_rxtx_proc_t *proc,uint
if
(
generate_ue_dlsch_params_from_dci
(
frame_rx
,
subframe_rx
,
(
void
*
)
&
dci_alloc_rx
[
i
].
dci_pdu
,
dci_alloc_rx
[
i
].
rnti
,
//SI_RNTI (to enable MBMS dedicated SI-RNTI = 0xfff9
//dci_alloc_rx[i].rnti,//SI_RNTI (to enable MBMS dedicated SI-RNTI = 0xfff9
SI_RNTI
,
dci_alloc_rx
[
i
].
format
,
ue
->
pdcch_vars
[
ue
->
current_thread_id
[
subframe_rx
]][
eNB_id
],
ue
->
pdsch_vars_SI
[
eNB_id
],
...
...
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