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
0f429982
Commit
0f429982
authored
Oct 31, 2022
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix
parent
0dc49597
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
openair2/RRC/NR/nr_rrc_config.c
openair2/RRC/NR/nr_rrc_config.c
+6
-3
openair2/RRC/NR/nr_rrc_proto.h
openair2/RRC/NR/nr_rrc_proto.h
+5
-0
No files found.
openair2/RRC/NR/nr_rrc_config.c
View file @
0f429982
...
...
@@ -1412,8 +1412,9 @@ void config_csi_meas_report(NR_CSI_MeasConfig_t *csi_MeasConfig,
}
}
}
AssertFatal
(
resource_id
>-
1
,
"No resource for CSI measurements found
\n
"
);
AssertFatal
(
im_id
>-
1
,
"No resource for IM measurements found
\n
"
);
// if there are no associated resources, do not configure
if
(
resource_id
<
0
||
im_id
<
0
)
return
;
csirep
->
resourcesForChannelMeasurement
=
resource_id
;
csirep
->
csi_IM_ResourcesForInterference
=
calloc
(
1
,
sizeof
(
*
csirep
->
csi_IM_ResourcesForInterference
));
*
csirep
->
csi_IM_ResourcesForInterference
=
im_id
;
...
...
@@ -1474,7 +1475,9 @@ void conig_rsrp_meas_report(NR_CSI_MeasConfig_t *csi_MeasConfig,
}
}
}
AssertFatal
(
resource_id
>-
1
,
"No resource for RSRP found
\n
"
);
// if there are no associated resources, do not configure
if
(
resource_id
<
0
)
return
;
csirep
->
resourcesForChannelMeasurement
=
resource_id
;
csirep
->
csi_IM_ResourcesForInterference
=
NULL
;
csirep
->
nzp_CSI_RS_ResourcesForInterference
=
NULL
;
...
...
openair2/RRC/NR/nr_rrc_proto.h
View file @
0f429982
...
...
@@ -31,6 +31,9 @@
* @{
*/
#ifndef __NR_RRC_PROTO_H__
#define __NR_RRC_PROTO_H__
#include "RRC/NR/nr_rrc_defs.h"
#include "flexran_agent_extern.h"
#include "NR_RRCReconfiguration.h"
...
...
@@ -220,3 +223,5 @@ bool nr_rrc_pdcp_config_asn1_req(const protocol_ctxt_t *const ctxt_pP,
LTE_PMCH_InfoList_r9_t
*
pmch_InfoList_r9
,
rb_id_t
*
const
defaultDRB
,
struct
NR_CellGroupConfig__rlc_BearerToAddModList
*
rlc_bearer2add_list
);
#endif
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