Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
81411bf0
Commit
81411bf0
authored
Jul 06, 2016
by
Xiwen JIANG
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dci decoding procedure
parent
00925ef8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
openair1/PHY/INIT/lte_init.c
openair1/PHY/INIT/lte_init.c
+2
-2
openair1/PHY/LTE_TRANSPORT/dci.c
openair1/PHY/LTE_TRANSPORT/dci.c
+2
-2
No files found.
openair1/PHY/INIT/lte_init.c
View file @
81411bf0
...
...
@@ -473,7 +473,7 @@ void phy_config_dedicated_eNB_step2(PHY_VARS_eNB *phy_vars_eNB)
if
(
physicalConfigDedicated
->
antennaInfo
)
{
phy_vars_eNB
->
transmission_mode
[
UE_id
]
=
1
+
(
physicalConfigDedicated
->
antennaInfo
->
choice
.
explicitValue
.
transmissionMode
);
LOG_D
(
PHY
,
"Transmission Mode %d
\n
"
,
phy_vars_eNB
->
transmission_mode
[
UE_id
]);
LOG_D
(
PHY
,
"
eNB:
Transmission Mode %d
\n
"
,
phy_vars_eNB
->
transmission_mode
[
UE_id
]);
LOG_D
(
PHY
,
"
\n
"
);
}
...
...
@@ -845,7 +845,7 @@ void phy_config_dedicated_ue(uint8_t Mod_id,int CC_id,uint8_t CH_index,
if
(
physicalConfigDedicated
->
antennaInfo
)
{
phy_vars_ue
->
transmission_mode
[
CH_index
]
=
1
+
(
physicalConfigDedicated
->
antennaInfo
->
choice
.
explicitValue
.
transmissionMode
);
LOG_D
(
PHY
,
"Transmission Mode %d
\n
"
,
phy_vars_ue
->
transmission_mode
[
CH_index
]);
LOG_D
(
PHY
,
"
UE:
Transmission Mode %d
\n
"
,
phy_vars_ue
->
transmission_mode
[
CH_index
]);
LOG_D
(
PHY
,
"
\n
"
);
switch
(
physicalConfigDedicated
->
antennaInfo
->
choice
.
explicitValue
.
transmissionMode
)
{
case
AntennaInfoDedicated__transmissionMode_tm1
:
...
...
openair1/PHY/LTE_TRANSPORT/dci.c
View file @
81411bf0
...
...
@@ -3339,7 +3339,7 @@ uint16_t dci_decoding_procedure(PHY_VARS_UE *phy_vars_ue,
// These are for CRNTI based on transmission mode
if
(
tmode
<
3
)
{
if
(
(
tmode
<
3
)
||
(
tmode
==
7
)
)
{
// Now check UE_SPEC format 1 search spaces at aggregation 1
old_dci_cnt
=
dci_cnt
;
dci_decoding_procedure0
(
lte_ue_pdcch_vars
,
0
,
subframe
,
...
...
@@ -3684,7 +3684,7 @@ uint16_t dci_decoding_procedure(PHY_VARS_UE *phy_vars_ue,
&
CCEmap1
,
&
CCEmap2
);
//#endif
}
else
if
(
tmode
>=
5
)
{
// This is MU-MIMO
}
else
if
(
(
tmode
==
5
)
||
(
tmode
==
6
)
)
{
// This is MU-MIMO
// Now check UE_SPEC format 1E_2A_M10PRB search spaces aggregation 1
#ifdef DEBUG_DCI_DECODING
...
...
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