Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Worker.N
openairinterface5G
Commits
5da3dd5d
Commit
5da3dd5d
authored
5 years ago
by
Louis Adrien Dufrene
Browse files
Options
Downloads
Patches
Plain Diff
Some formats + CDRX added to feature_set.md
parent
34447c0e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/FEATURE_SET.md
+1
-0
1 addition, 0 deletions
doc/FEATURE_SET.md
openair2/PHY_INTERFACE/IF_Module.c
+5
-6
5 additions, 6 deletions
openair2/PHY_INTERFACE/IF_Module.c
with
6 additions
and
6 deletions
doc/FEATURE_SET.md
+
1
−
0
View file @
5da3dd5d
...
...
@@ -72,6 +72,7 @@ The MAC layer implements a subset of the **3GPP 36.321** release v8.6 in support
-
RLC interface (AM, UM)
-
UL power control
-
Link adaptation
-
Connected DRX (CDRX) support for FDD LTE UE. Compatible with R13 from 3GPP. Support for Cat-M1 UE comming soon.
## eNB RLC Layer ##
...
...
This diff is collapsed.
Click to expand it.
openair2/PHY_INTERFACE/IF_Module.c
+
5
−
6
View file @
5da3dd5d
...
...
@@ -114,26 +114,25 @@ void handle_cqi(UL_IND_t *UL_info) {
}
void
handle_harq
(
UL_IND_t
*
UL_info
)
{
int
i
;
if
(
NFAPI_MODE
==
NFAPI_MODE_PNF
&&
UL_info
->
harq_ind
.
harq_indication_body
.
number_of_harqs
>
0
)
{
// PNF
if
(
NFAPI_MODE
==
NFAPI_MODE_PNF
&&
UL_info
->
harq_ind
.
harq_indication_body
.
number_of_harqs
>
0
)
{
// PNF
//LOG_D(PHY, "UL_info->harq_ind.harq_indication_body.number_of_harqs:%d Send to VNF\n", UL_info->harq_ind.harq_indication_body.number_of_harqs);
int
retval
=
oai_nfapi_harq_indication
(
&
UL_info
->
harq_ind
);
if
(
retval
!=
0
)
{
if
(
retval
!=
0
)
{
LOG_E
(
PHY
,
"Failed to encode NFAPI HARQ_IND retval:%d
\n
"
,
retval
);
}
UL_info
->
harq_ind
.
harq_indication_body
.
number_of_harqs
=
0
;
}
else
{
for
(
i
=
0
;
i
<
UL_info
->
harq_ind
.
harq_indication_body
.
number_of_harqs
;
i
++
)
for
(
int
i
=
0
;
i
<
UL_info
->
harq_ind
.
harq_indication_body
.
number_of_harqs
;
i
++
)
harq_indication
(
UL_info
->
module_id
,
UL_info
->
CC_id
,
NFAPI_SFNSF2SFN
(
UL_info
->
harq_ind
.
sfn_sf
),
NFAPI_SFNSF2SF
(
UL_info
->
harq_ind
.
sfn_sf
),
&
UL_info
->
harq_ind
.
harq_indication_body
.
harq_pdu_list
[
i
]);
UL_info
->
harq_ind
.
harq_indication_body
.
number_of_harqs
=
0
;
UL_info
->
harq_ind
.
harq_indication_body
.
number_of_harqs
=
0
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment