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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
afb770d1
Commit
afb770d1
authored
Oct 13, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/NR-UE-fix-seg-fault-add-bwp' into integration_2023_w41
parents
d6fe889a
f7551997
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
+4
-1
No files found.
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
View file @
afb770d1
...
...
@@ -2507,7 +2507,10 @@ int nr_get_csi_measurements(NR_UE_MAC_INST_t *mac, frame_t frame, int slot, PUCC
break
;
}
}
AssertFatal
(
csi_res_id
>
-
1
,
"Couldn't find PUCCH resource ID associated with current BWP
\n
"
);
if
(
csi_res_id
<
0
)
{
// This CSI Report ID is not associated with current active BWP
continue
;
}
NR_PUCCH_Resource_t
*
csi_pucch
=
find_pucch_resource_from_list
(
pucch_Config
->
resourceToAddModList
,
csi_res_id
);
AssertFatal
(
csi_pucch
!=
NULL
,
"Couldn't find PUCCH Resource ID for SR in PUCCH resource list
\n
"
);
LOG_D
(
NR_MAC
,
"Preparing CSI report in frame %d slot %d CSI report ID %d
\n
"
,
frame
,
slot
,
csi_report_id
);
...
...
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