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
spbro
OpenXG-RAN
Commits
ce8301ba
Commit
ce8301ba
authored
Sep 30, 2021
by
Melissa Elkadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Setting SR flag to 0 in NR UE to ensure we dont handle SRs
parent
b2d1052f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
openair1/SCHED_NR_UE/fapi_nr_ue_l1.c
openair1/SCHED_NR_UE/fapi_nr_ue_l1.c
+1
-0
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
+16
-2
No files found.
openair1/SCHED_NR_UE/fapi_nr_ue_l1.c
View file @
ce8301ba
...
...
@@ -182,6 +182,7 @@ int8_t nr_ue_scheduled_response_stub(nr_scheduled_response_t *scheduled_response
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
pdu_0_1
=
&
uci_ind
->
uci_list
[
j
].
pucch_pdu_format_0_1
;
uci_ind
->
uci_list
[
j
].
pdu_type
=
NFAPI_NR_UCI_FORMAT_0_1_PDU_TYPE
;
uci_ind
->
uci_list
[
j
].
pdu_size
=
sizeof
(
nfapi_nr_uci_pucch_pdu_format_0_1_t
);
memset
(
pdu_0_1
,
0
,
sizeof
(
*
pdu_0_1
));
pdu_0_1
->
pduBitmap
=
2
;
// (value->pduBitmap >> 1) & 0x01) == HARQ and (value->pduBitmap) & 0x01) == SR
pdu_0_1
->
handle
=
0
;
pdu_0_1
->
rnti
=
dl_config
->
dl_config_list
[
i
].
dlsch_config_pdu
.
rnti
;
...
...
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
View file @
ce8301ba
...
...
@@ -396,13 +396,26 @@ static void copy_ul_tti_data_req_to_dl_info(nr_downlink_indication_t *dl_info, n
pdu_list
->
pdu_type
,
ul_tti_req
->
pdus_list
[
i
].
pucch_pdu
.
rnti
);
if
(
pdu_list
->
pdu_type
==
NFAPI_NR_UL_CONFIG_PUCCH_PDU_TYPE
&&
pdu_list
->
pucch_pdu
.
rnti
==
mac
->
crnti
)
{
LOG_I
(
NR_MAC
,
"This is the number of UCIs in the queue %ld
\n
"
,
nr_uci_ind_queue
.
num_items
);
nfapi_nr_uci_indication_t
*
uci_ind
=
get_queue
(
&
nr_uci_ind_queue
);
if
(
uci_ind
)
{
LOG_I
(
NR_MAC
,
"This is the SFN/SF [%d, %d] of the UCI ind.
\n
"
,
uci_ind
->
sfn
,
uci_ind
->
slot
);
if
(
uci_ind
->
num_ucis
>
0
)
{
uci_ind
->
sfn
=
ul_tti_req
->
SFN
;
uci_ind
->
slot
=
ul_tti_req
->
Slot
;
if
(
pdu_list
->
pucch_pdu
.
sr_flag
)
{
for
(
int
j
=
0
;
j
<
uci_ind
->
num_ucis
;
j
++
)
{
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
pdu_0_1
=
&
uci_ind
->
uci_list
[
j
].
pucch_pdu_format_0_1
;
pdu_0_1
->
sr
=
CALLOC
(
1
,
sizeof
(
*
pdu_0_1
->
sr
));
pdu_0_1
->
sr
->
sr_confidence_level
=
0
;
pdu_0_1
->
sr
->
sr_indication
=
0
;
}
}
LOG_I
(
NR_MAC
,
"We have dequeued the previously filled uci_ind and updated the snf/slot to %d/%d.
\n
"
,
uci_ind
->
sfn
,
uci_ind
->
slot
);
NR_UL_IND_t
UL_INFO
=
{
...
...
@@ -410,9 +423,10 @@ static void copy_ul_tti_data_req_to_dl_info(nr_downlink_indication_t *dl_info, n
};
send_nsa_standalone_msg
(
&
UL_INFO
,
uci_ind
->
header
.
message_id
);
}
for
(
int
j
=
0
;
j
<
uci_ind
->
num_ucis
;
j
++
)
for
(
int
k
=
0
;
k
<
uci_ind
->
num_ucis
;
k
++
)
{
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
pdu_0_1
=
&
uci_ind
->
uci_list
[
j
].
pucch_pdu_format_0_1
;
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
pdu_0_1
=
&
uci_ind
->
uci_list
[
k
].
pucch_pdu_format_0_1
;
free
(
pdu_0_1
->
sr
);
free
(
pdu_0_1
->
harq
->
harq_list
);
free
(
pdu_0_1
->
harq
);
}
...
...
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