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
wangjie
OpenXG-RAN
Commits
ad9a2460
Commit
ad9a2460
authored
Nov 27, 2016
by
Elena_Lukashova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding HARQ support for PIA detection.
parent
afe698db
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
244 additions
and
99 deletions
+244
-99
openair1/PHY/LTE_TRANSPORT/dci_tools.c
openair1/PHY/LTE_TRANSPORT/dci_tools.c
+23
-6
openair1/SIMULATION/LTE_PHY/dlsim.c
openair1/SIMULATION/LTE_PHY/dlsim.c
+221
-93
No files found.
openair1/PHY/LTE_TRANSPORT/dci_tools.c
View file @
ad9a2460
...
...
@@ -1558,6 +1558,9 @@ int generate_eNB_dlsch_params_from_dci(int frame,
dlsch0_harq
->
codeword
=
0
;
dlsch1
=
NULL
;
dlsch1_harq
=
NULL
;
#ifdef DEBUG_HARQ
printf
(
"
\n
ENB: TB1 is deactivated, retransmit TB0 transmit in TM6
\n
"
);
#endif
}
else
if
((
TB0_active
==
0
)
&&
TB1_active
)
{
dlsch1
=
dlsch
[
1
];
...
...
@@ -4945,6 +4948,9 @@ int generate_ue_dlsch_params_from_dci(int frame,
dlsch0_harq
->
codeword
=
0
;
dlsch1
=
NULL
;
dlsch1_harq
=
NULL
;
#ifdef DEBUG_HARQ
printf
(
"[DCI UE]: TB1 is deactivated, retransmit TB0 transmit in TM6
\n
"
);
#endif
}
else
if
((
TB0_active
==
0
)
&&
TB1_active
)
{
dlsch1
=
dlsch
[
1
];
...
...
@@ -5094,14 +5100,23 @@ int generate_ue_dlsch_params_from_dci(int frame,
dlsch0_harq
->
mimo_mode
=
PUSCH_PRECODING0
;
// pmi stored from ulsch allocation routine
// we need to extract the first column of precoding matrix (which was computed assuming rank==2)
dlsch0_harq
->
pmi_alloc
=
0
;
//pmi_convert(frame_parms,dlsch0->pmi_alloc,0);
dlsch0_harq
->
pmi_alloc
=
dlsch0
->
pmi_alloc
;
;
//pmi_convert(frame_parms,dlsch0->pmi_alloc,0);
//LOG_I(PHY,"XXX using PMI %x\n",pmi2hex_2Ar1(dlsch0_harq->pmi_alloc));
#ifdef DEBUG_HARQ
printf
(
"[DCI UE] I am calling from the UE side pmi_alloc_new = %d
\n
"
,
dlsch0
->
pmi_alloc
);
#endif
break
;
case
6
:
dlsch0_harq
->
mimo_mode
=
PUSCH_PRECODING1
;
// we need to extract the second column of precoding matrix (which was computed assuming rank==2)
dlsch0_harq
->
pmi_alloc
=
0
;
//pmi_convert(frame_parms,dlsch0->pmi_alloc,1);
dlsch0_harq
->
pmi_alloc
=
dlsch0
->
pmi_alloc
;;
//pmi_convert(frame_parms,dlsch0->pmi_alloc,1);
#ifdef DEBUG_HARQ
printf
(
"[DCI UE] I am calling from the UE side pmi_alloc_new = %d
\n
"
,
dlsch0
->
pmi_alloc
);
#endif
break
;
#ifdef DEBUG_HARQ
printf
(
"[DCI UE] harq0 MIMO mode = %d
\n
"
,
dlsch0_harq
->
mimo_mode
);
#endif
}
}
else
{
dlsch1_harq
->
dl_power_off
=
1
;
...
...
@@ -5144,10 +5159,10 @@ int generate_ue_dlsch_params_from_dci(int frame,
return
(
-
1
);
break
;
}
}
#ifdef DEBUG_HARQ
printf
(
"[DCI UE] harq1 MIMO mode = %d
\n
"
,
dlsch1_harq
->
mimo_mode
);
#endif
}
//printf(" UE DCI harq0 MIMO mode = %d\n", dlsch0_harq->mimo_mode);
if
((
frame_parms
->
mode1_flag
==
1
)
&&
(
dlsch0_harq
!=
NULL
))
dlsch0_harq
->
mimo_mode
=
SISO
;
...
...
@@ -5233,10 +5248,12 @@ int generate_ue_dlsch_params_from_dci(int frame,
dlsch1
->
rnti
=
rnti
;
}
#ifdef DEBUG_HARQ
if
(
dlsch0
!=
NULL
)
if
(
dlsch0
!=
NULL
&&
dlsch1
!=
NULL
)
printf
(
"[DCI UE] dlsch0_harq status = %d, dlsch1_harq status = %d
\n
"
,
dlsch0_harq
->
status
,
dlsch1_harq
->
status
);
else
printf
(
"[DCI UE] dlsch1_harq status = %d
\n
"
,
dlsch1_harq
->
status
);
else
if
(
dlsch0
==
NULL
&&
dlsch1
!=
NULL
)
printf
(
"[DCI UE] dlsch0_harq NULL dlsch1_harq status = %d
\n
"
,
dlsch1_harq
->
status
);
else
if
(
dlsch0
!=
NULL
&&
dlsch1
==
NULL
)
printf
(
"[DCI UE] dlsch1_harq NULL dlsch0_harq status = %d
\n
"
,
dlsch0_harq
->
status
);
#endif
break
;
...
...
openair1/SIMULATION/LTE_PHY/dlsim.c
View file @
ad9a2460
This diff is collapsed.
Click to expand it.
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