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
littleBu
OpenXG-RAN
Commits
4a5d9243
Commit
4a5d9243
authored
10 months ago
by
Bartosz Podrygajlo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove accumulated_delta_PUCCH from UE nfapi interface.
parent
3fd119ff
Branches unavailable
2025.w08
2025.w07
2025.w06
2025.w05
2025.w04
2025.w03
2025.w02
2024.w51
2024.w50
2024.w49
2024.w48
2024.w47
2024.w46
2024.w45
2024.w44
2024.w43
2024.w42
2024.w41
2024.w40
2024.w39
2024.w38
2024.w36
2024.w35
2024.w34
2024.w33
2024.w32
2024.w31
2024.w30
2024.w29
2024.w28
2024.w27
2024.w26
2024.w25
2024.w24
2024.w23
2024.w22
2024.w21
v2.2.0
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
9 deletions
+6
-9
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_interface.h
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_interface.h
+0
-1
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
+6
-8
No files found.
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_interface.h
View file @
4a5d9243
...
...
@@ -474,7 +474,6 @@ typedef struct {
vrb_to_prb_mapping_t
vrb_to_prb_mapping
;
uint8_t
dai
;
double
scaling_factor_S
;
int8_t
accumulated_delta_PUCCH
;
uint8_t
pucch_resource_id
;
uint8_t
pdsch_to_harq_feedback_time_ind
;
uint8_t
n_dmrs_cdm_groups
;
...
...
This diff is collapsed.
Click to expand it.
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
View file @
4a5d9243
...
...
@@ -762,8 +762,7 @@ static int nr_ue_process_dci_dl_10(NR_UE_MAC_INST_t *mac,
LOG_E
(
MAC
,
"invalid tpc %d
\n
"
,
dci
->
tpc
);
return
-
1
;
}
const
int
tcp
[]
=
{
-
1
,
0
,
1
,
3
};
dlsch_pdu
->
accumulated_delta_PUCCH
=
tcp
[
dci
->
tpc
];
// Sanity check for pucch_resource_indicator value received to check for false DCI.
bool
valid
=
false
;
NR_PUCCH_Config_t
*
pucch_Config
=
mac
->
current_UL_BWP
?
mac
->
current_UL_BWP
->
pucch_Config
:
NULL
;
...
...
@@ -792,12 +791,12 @@ static int nr_ue_process_dci_dl_10(NR_UE_MAC_INST_t *mac,
"PDSCH to HARQ feedback time (%d) needs to be higher than DURATION_RX_TO_TX (%d).
\n
"
,
1
+
dci
->
pdsch_to_harq_feedback_timing_indicator
.
val
,
DURATION_RX_TO_TX
);
// set the harq status at MAC for feedback
const
int
tpc
[]
=
{
-
1
,
0
,
1
,
3
};
set_harq_status
(
mac
,
dci
->
pucch_resource_indicator
,
dci
->
harq_pid
,
dlsch_pdu
->
accumulated_delta_PUCCH
,
tpc
[
dci
->
tpc
]
,
1
+
dci
->
pdsch_to_harq_feedback_timing_indicator
.
val
,
dci
->
dai
[
0
].
val
,
dci_ind
->
n_CCE
,
...
...
@@ -830,7 +829,7 @@ static int nr_ue_process_dci_dl_10(NR_UE_MAC_INST_t *mac,
dlsch_pdu
->
harq_process_nbr
,
dci
->
dai
[
0
].
val
,
dlsch_pdu
->
scaling_factor_S
,
d
lsch_pdu
->
accumulated_delta_PUCCH
,
d
ci
->
tpc
,
dci
->
pucch_resource_indicator
,
1
+
dci
->
pdsch_to_harq_feedback_timing_indicator
.
val
);
...
...
@@ -1015,8 +1014,6 @@ static int nr_ue_process_dci_dl_11(NR_UE_MAC_INST_t *mac,
LOG_E
(
MAC
,
"invalid tpc %d
\n
"
,
dci
->
tpc
);
return
-
1
;
}
const
int
tcp
[]
=
{
-
1
,
0
,
1
,
3
};
dlsch_pdu
->
accumulated_delta_PUCCH
=
tcp
[
dci
->
tpc
];
// Sanity check for pucch_resource_indicator value received to check for false DCI.
bool
valid
=
false
;
...
...
@@ -1127,10 +1124,11 @@ static int nr_ue_process_dci_dl_11(NR_UE_MAC_INST_t *mac,
DURATION_RX_TO_TX
);
// set the harq status at MAC for feedback
const
int
tpc
[]
=
{
-
1
,
0
,
1
,
3
};
set_harq_status
(
mac
,
dci
->
pucch_resource_indicator
,
dci
->
harq_pid
,
dlsch_pdu
->
accumulated_delta_PUCCH
,
tpc
[
dci
->
tpc
]
,
feedback_ti
,
dci
->
dai
[
0
].
val
,
dci_ind
->
n_CCE
,
...
...
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