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
4bd63ff8
Commit
4bd63ff8
authored
Jun 05, 2024
by
Florian Kaltenberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing compiler warnings
parent
4b7f0a26
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
openair3/NRPPA/nrppa_gNB_measurement_information_transfer_procedures.c
...A/nrppa_gNB_measurement_information_transfer_procedures.c
+2
-2
No files found.
openair3/NRPPA/nrppa_gNB_measurement_information_transfer_procedures.c
View file @
4bd63ff8
...
...
@@ -152,7 +152,7 @@ int nrppa_gNB_handle_Measurement(nrppa_gnb_ue_info_t *nrppa_msg_info, NRPPA_NRPP
for
(
int
i
=
0
;
i
<
maxnoSRScarrier
;
i
++
)
{
NRPPA_SRSCarrier_List_Item_t
*
CarrItem
=
srs_config
.
sRSCarrier_List
.
list
.
array
[
i
];
srs_carrier_list_item
->
pointA
=
CarrItem
->
pointA
;
// (M)
srs_carrier_list_item
->
pci
=
CarrItem
->
pCI
;
// Optional Physical cell ID of the cell that contians the SRS carrier
srs_carrier_list_item
->
pci
=
CarrItem
->
pCI
?
*
CarrItem
->
pCI
:
0
;
// Optional Physical cell ID of the cell that contians the SRS carrier
// Preparing Active UL BWP information IE of SRSCarrier_List f1ap_active_ul_bwp_ active_ul_bwp; //(M)
f1ap_active_ul_bwp_t
*
f1_ul_bwp
=
&
srs_carrier_list_item
->
active_ul_bwp
;
NRPPA_ActiveULBWP_t
*
Nrppa_ULBWP
=&
CarrItem
->
activeULBWP
;
...
...
@@ -160,7 +160,7 @@ int nrppa_gNB_handle_Measurement(nrppa_gnb_ue_info_t *nrppa_msg_info, NRPPA_NRPP
f1_ul_bwp
->
subcarrierSpacing
=
Nrppa_ULBWP
->
subcarrierSpacing
;
f1_ul_bwp
->
cyclicPrefix
=
Nrppa_ULBWP
->
cyclicPrefix
;
f1_ul_bwp
->
txDirectCurrentLocation
=
Nrppa_ULBWP
->
txDirectCurrentLocation
;
f1_ul_bwp
->
shift7dot5kHz
=
Nrppa_ULBWP
->
shift7dot5kHz
;
f1_ul_bwp
->
shift7dot5kHz
=
Nrppa_ULBWP
->
shift7dot5kHz
?
*
Nrppa_ULBWP
->
shift7dot5kHz
:
0
;
f1ap_srs_config_t
*
f1_srsConf
=
&
f1_ul_bwp
->
sRSConfig
;
// Preparing sRSResource_List IE of SRSConfig (IE of activeULBWP)
...
...
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