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
10940010
Commit
10940010
authored
May 22, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/nr-ue-config-pointer-check' into integration_2024_w21
parents
0ad85cb1
cf22a331
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
openair2/LAYER2/NR_MAC_UE/config_ue.c
openair2/LAYER2/NR_MAC_UE/config_ue.c
+6
-4
No files found.
openair2/LAYER2/NR_MAC_UE/config_ue.c
View file @
10940010
...
@@ -2072,13 +2072,15 @@ void release_PUCCH_SRS(NR_UE_MAC_INST_t *mac)
...
@@ -2072,13 +2072,15 @@ void release_PUCCH_SRS(NR_UE_MAC_INST_t *mac)
for
(
int
bwp
=
0
;
bwp
<
mac
->
ul_BWPs
.
count
;
bwp
++
)
{
for
(
int
bwp
=
0
;
bwp
<
mac
->
ul_BWPs
.
count
;
bwp
++
)
{
// release SchedulingRequestResourceConfig instances configured in PUCCH-Config
// release SchedulingRequestResourceConfig instances configured in PUCCH-Config
NR_PUCCH_Config_t
*
pucch_Config
=
mac
->
ul_BWPs
.
array
[
bwp
]
->
pucch_Config
;
NR_PUCCH_Config_t
*
pucch_Config
=
mac
->
ul_BWPs
.
array
[
bwp
]
->
pucch_Config
;
for
(
int
j
=
pucch_Config
->
schedulingRequestResourceToAddModList
->
list
.
count
;
j
>
0
;
j
--
)
if
(
pucch_Config
)
asn_sequence_del
(
&
pucch_Config
->
schedulingRequestResourceToAddModList
->
list
,
j
-
1
,
1
);
for
(
int
j
=
pucch_Config
->
schedulingRequestResourceToAddModList
->
list
.
count
;
j
>
0
;
j
--
)
asn_sequence_del
(
&
pucch_Config
->
schedulingRequestResourceToAddModList
->
list
,
j
-
1
,
1
);
// release SRS-Resource instances configured in SRS-Config
// release SRS-Resource instances configured in SRS-Config
// TODO not clear if only SRS-Resources or also the ResourceSet should be released
// TODO not clear if only SRS-Resources or also the ResourceSet should be released
NR_SRS_Config_t
*
srs_Config
=
mac
->
ul_BWPs
.
array
[
bwp
]
->
srs_Config
;
NR_SRS_Config_t
*
srs_Config
=
mac
->
ul_BWPs
.
array
[
bwp
]
->
srs_Config
;
for
(
int
j
=
srs_Config
->
srs_ResourceToAddModList
->
list
.
count
;
j
>
0
;
j
--
)
if
(
srs_Config
)
asn_sequence_del
(
&
srs_Config
->
srs_ResourceToAddModList
->
list
,
j
-
1
,
1
);
for
(
int
j
=
srs_Config
->
srs_ResourceToAddModList
->
list
.
count
;
j
>
0
;
j
--
)
asn_sequence_del
(
&
srs_Config
->
srs_ResourceToAddModList
->
list
,
j
-
1
,
1
);
}
}
}
}
...
...
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