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
Michael Black
OpenXG-RAN
Commits
68d4daf7
Commit
68d4daf7
authored
Jan 11, 2022
by
luis_pereira87
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix variable wrongly replaced during the merge with develop
parent
87c75ebc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
+9
-9
No files found.
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
View file @
68d4daf7
...
...
@@ -624,8 +624,8 @@ int8_t nr_ue_process_dci(module_id_t module_id, int cc_id, uint8_t gNB_index, fr
RA_config_t
*
ra
=
&
mac
->
ra
;
fapi_nr_dl_config_request_t
*
dl_config
=
&
mac
->
dl_config_request
;
uint8_t
is_Msg3
=
0
;
NR_BWP_Id_t
dl_bwp_id
=
mac
->
DL_BWP_Id
;
NR_BWP_Id_t
ul_bwp_id
=
mac
->
UL_BWP_Id
;
NR_BWP_Id_t
dl_bwp_id
=
mac
->
DL_BWP_Id
;
NR_BWP_Id_t
ul_bwp_id
=
mac
->
UL_BWP_Id
;
int
default_abc
=
1
;
uint16_t
n_RB_DLBWP
;
...
...
@@ -912,14 +912,14 @@ int8_t nr_ue_process_dci(module_id_t module_id, int cc_id, uint8_t gNB_index, fr
if
(
dci
->
tpc
==
3
)
dlsch_config_pdu_1_0
->
accumulated_delta_PUCCH
=
3
;
// Sanity check for pucch_resource_indicator value received to check for false DCI.
valid
=
0
;
if
(
mac
->
ULbwp
[
d
l_bwp_id
-
1
]
&&
mac
->
ULbwp
[
d
l_bwp_id
-
1
]
->
bwp_Dedicated
&&
mac
->
ULbwp
[
d
l_bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
&&
mac
->
ULbwp
[
d
l_bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
&&
mac
->
ULbwp
[
d
l_bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
)
{
pucch_res_set_cnt
=
mac
->
ULbwp
[
d
l_bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
count
;
if
(
mac
->
ULbwp
[
u
l_bwp_id
-
1
]
&&
mac
->
ULbwp
[
u
l_bwp_id
-
1
]
->
bwp_Dedicated
&&
mac
->
ULbwp
[
u
l_bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
&&
mac
->
ULbwp
[
u
l_bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
&&
mac
->
ULbwp
[
u
l_bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
)
{
pucch_res_set_cnt
=
mac
->
ULbwp
[
u
l_bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
count
;
for
(
int
id
=
0
;
id
<
pucch_res_set_cnt
;
id
++
)
{
if
(
dci
->
pucch_resource_indicator
<
mac
->
ULbwp
[
d
l_bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
array
[
id
]
->
resourceList
.
list
.
count
)
{
if
(
dci
->
pucch_resource_indicator
<
mac
->
ULbwp
[
u
l_bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
array
[
id
]
->
resourceList
.
list
.
count
)
{
valid
=
1
;
break
;
}
...
...
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